我正在用R Markdown撰写论文,并希望更改PDF文档中脚注的格式。我该怎么办
答案 0 :(得分:2)
您可以包括LaTeX命令来覆盖模板中文本的大小。对于脚注,您可以使用任何LaTeX commands来替换字体大小,如果需要较大的文本,请替换\normalsize
。
已使用来自\justify
的LaTeX软件包的ragged2e
命令对文本进行了充分的解释。
---
output:
pdf_document
header-includes:
- \usepackage{ragged2e}
- \renewcommand{\footnotesize}{\normalsize \justify}
---
This is some text^[This is a footnote which is fully justified. Some filler text, more filler text more filler text more filler text more filler text more filler text more filler text more filler text more filler text more filler text more filler text]
作为警告,如果您打算在R Markdown中写论文,请确保您熟悉LaTeX!将需要实现一些所需的自定义格式。