-
Hi there! I am using pandoc to produce pdf. I am wondering if there's a way to change font size for my footnotes. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
That depends on the PDF engine you are using. If you are using a LaTeX path, then you will need to edit the LaTeX template to do this: https://pandoc.org/MANUAL.html#templates ...and implement something like https://tex.stackexchange.com/questions/249415/set-font-size-for-footnotes You can use YAML by using the template syntax, so for example if you were using Typst for PDF generation: $if(footnotesize)$
#show footnote.entry: set text(size: $footnotesize$)
$endif$ Pandoc will insert the value if it finds the |
Beta Was this translation helpful? Give feedback.
Oh I think I've figured out! I just added the following in the YAML metadata
It works!