我正在使用Rstudio,从Rmd文件创建pdf / html文档。标题看起来像这样:
title: "Title"
author: "Me"
date: "`r format(Sys.time(), '%B %d, %Y')`"
bibliography: bibliography.bib
output:
html_document:
toc: true
number_sections: true
现在,我有一些部分,然后包含引用。之后,应该遵循一个附录,但我遇到了与此处描述的完全相同的问题:Pandoc insert appendix after bibliography
这个帖子中有一个固定的解决方案,但我不知道如何在RStudio中直接做到这一点。要获取文档,我只需按下&#34; Knit html&#34;按钮,不要自己运行任何pandoc命令。 <那我应该把
放在哪里--include-after-body
部分,附录rmd文件应该如何?
答案 0 :(得分:6)
如rmarkdown manual所述,您可以使用以下语法:
---
output:
html_document:
includes:
after_body: appendix.md
---
这相当于将任意pandoc参数添加到Rmd文件的一般方法:
---
output:
html_document:
pandoc_args: ["--include-after-body=appendix.md"]
---