Is there a way to input a script (processing layer) that runs on the LaTeX code before it is rendered to PDF? #7481
Answered
by
mcanouil
danielvartan
asked this question in
Q&A
-
DescriptionSome limitations regarding rendering from Quarto to PDF could be addressed with an intermediary processing layer. Example of application: The inclusion of |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Nov 5, 2023
Replies: 1 comment 2 replies
-
I don't know what exactly you want to achieve, but Quarto converts your document to markdown / Pandoc AST which is then handled by Pandoc itself. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
danielvartan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't know what exactly you want to achieve, but Quarto converts your document to markdown / Pandoc AST which is then handled by Pandoc itself.
You could use
format: latex
to have the latex code, then do whatever you want to compile the document yourself.