We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
header-includes:
When building a beamer_presentation it seems that putting
beamer_presentation
header-includes: - \setmathfont(Digits){Avenir}
in the header field generates inappropriately escaped latex source like
\setmathfont(Digits)\{Avenir\}
which then doesn't compile.
It seems to be the parentheses that trigger the problem because, e.g.
\setmathfont{Avenir} \setmonofont[Scale = MatchLowercase]{Inconsolata}
come out fine.
The text was updated successfully, but these errors were encountered:
All metadata fields are interpreted as pandoc markdown.
Pandoc tries to recognize latex commands, but it doesn't recognize options in parentheses (as in your case), as this is a very unusual thing.
You can work around problems like this by defining a macro
\newcommand{\dummy}[1]{#1}
and then doing
\dummy{\setmathfont(Digits){Avenir}}
Sorry, something went wrong.
OK. Thanks!
No branches or pull requests
When building a
beamer_presentation
it seems that puttingin the header field generates inappropriately escaped latex source like
which then doesn't compile.
It seems to be the parentheses that trigger the problem because, e.g.
come out fine.
The text was updated successfully, but these errors were encountered: