Hello!
I was wondering if it was possible to render a single chapter (a single .qmd
file) of my quarto book as a standalone word doc (.docx). I have tried adding to the YAML of the individual quarto doc to read:
format:
html:
theme: cosmo
embed-resources: true
pdf:
documentclass: scrreprt
docx:
reference-doc: custom-ref-doc.docx
but when rendering that document (whether rendering with the render button in Rstudio or in the CLI using quarto render proposal.qmd
). I also tried specifying the rendering of just the docx with quarto render proposal.qmd --to docx
and all it does is render out the entire book in the output directory rather than just that one chapter.
Thank you!