-
DescriptionI have a fully formatted Quarto doc with colors, logos etc. using typst-template.typ and typst-show.typ files. It Here is the YAML and sample text from the document:
and here is the R code:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
"pdf" means LaTeX. You would get the same result directly with Quarto CLI: quarto render document.qmd --to pdf If you want to use Typst, you need to ask for this format. quarto render document.qmd --to typst FYI, the "quarto" R package is not Quarto CLI, it's only R functions wrapped around Quarto CLI. |
Beta Was this translation helpful? Give feedback.
"pdf" means LaTeX.
You would get the same result directly with Quarto CLI:
If you want to use Typst, you need to ask for this format.
FYI, the "quarto" R package is not Quarto CLI, it's only R functions wrapped around Quarto CLI.