在R Markdown中调整脚注的大小和合理性

时间:2018-07-19 17:20:29

标签: pdf r-markdown knitr footnotes

我正在用R Markdown撰写论文,并希望更改PDF文档中脚注的格式。我该怎么办

  1. 将字体大小调整为10pt吗?
  2. 要更改文字的对齐方式吗?

1 个答案:

答案 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]

enter image description here

  

作为警告,如果您打算在R Markdown中写论文,请确保您熟悉LaTeX!将需要实现一些所需的自定义格式。