我不希望在我的 pdf 输出中有空格,这肯定代表在编织 pdf 时 R markdown 中没有标题方法。
我不希望从页面开始就没有标题和文本。谁能告诉我怎么做?
到目前为止,我的代码如下所示:
---
output:
pdf_document:
highlight: pygments
toc: false
number_sections: true
---
text
感谢您的任何建议!
最佳答案
对于这种级别的自定义,您需要更改 Pandoc 使用的 TeX 模板:
system.file("rmd/latex/default.tex", package="rmarkdown")
找到路径) notitle.tex
template: notitle.tex
添加到 pdf_document
的设置中。 关于r - 如何避免 R markdown v2 中标题的空格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25513671/