我有一个Rmd(请参见下面的文件)文件,当我在没有toc和pandoc的情况下执行文件时,我可以获取标题和作者,但是使用它们我却看不到它们。如何获得我的标题和作者名称以及带有编号的部分和目录的出现?
---
title: "Design"
author: "Jen"
output:
html_document:
toc: true
pandoc_args: [
"--number-sections"
]
---
# plots
答案 0 :(得分:1)
您应该让rmarkdown
完全控制pandoc参数:
---
title: "Design"
author: "Jen"
output:
html_document:
toc: true
number_sections: true
---
# plots
来源:https://bookdown.org/yihui/rmarkdown/html-document.html#section-numbering