-
DescriptionHi! I have a custom metadata in _quarto.yml: ...
mycustom: value
... I can render it in .qmd files with: But I also need to overwrite the Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
cderv
Nov 29, 2023
Replies: 1 comment 8 replies
-
Did you look at the documentation on the matter? |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This can be found in the
format
value.format: latex
which leads to--to latex
at command line.--to tex
is not valid.I don't understand exactly what you want to do. You may need to learn more Pandoc's Template, and how Partials works (https://pandoc.org/MANUAL.html#partials)
common/title.tex
? If this is not a Pandoc's template, no templating expansion will happens. And I see\input{common/title}
which is not a template call, but a LaTeX in…