Multiple pdf files
#1473
-
Is it somehow possible to render two different pdf files from the same document? I use the LaTeX exam document class to create exercice documents and their solutions at the same time. In rmarkdown I had my own knit function that would iterate over the Rmd, creating the "key" file on the second render. I tried the following in Quarto, but it only renders the second pdf definition:
Is there any way this could be done? |
Beta Was this translation helpful? Give feedback.
Answered by
cscheid
Jul 20, 2022
Replies: 1 comment 10 replies
-
This should work: format:
pdf:
output-file: test-no-answers.pdf
documentclass: exam
pdf+answers:
output-file: test-answers.pdf
documentclass: exam
classoption: answers |
Beta Was this translation helpful? Give feedback.
10 replies
Answer selected by
Nenuial
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should work: