-
Hi, I would like to make some changes to the pdf output of my book project. In the respective quarto documention, it's recommended to do so by customizing the LaTeX output. However, following the instructions given there, the
Did I get something wrong? Is there any alternative way to render LaTeX output from my book project? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @annameiermueller, What version of quarto are you using? Things works as expected for me with Quarto 1.3.296.
Note that
Environment
|
Beta Was this translation helpful? Give feedback.
Hi @annameiermueller,
What version of quarto are you using? Things works as expected for me with Quarto 1.3.296.
quarto create-project --type book
produces files to start with.quarto render --to latex
render the project to LaTeX. The.tex
file is available as_book/book-latex/5049.tex
.pdflatex _book/book-latex/5049.tex
compiles without error.Note that
quarto render --to html
will wipe clean the_book
folder. This is default Quarto behaviour. The documentation has the following instruction to avoid the wipe clean.