我在 R 中使用 knitr 包和 pandoc 将 .Rmd 文件转换为 PDF。Pandoc 链接到 .bib 文件并自动在 PDF 末尾插入参考书目 我的 .bib 文件中的条目如下所示,取自http://johnmacfarlane.net/pandoc/demo/biblio.bib:
@Book{item1,
author="John Doe",
title="First Book",
year="2005",
address="Cambridge",
publisher="Cambridge University Press"
}
@Article{item2,
author="John Doe",
title="Article",
year="2006",
journal="Journal of Generic Studies",
volume="6",
pages="33-34"
}
为了构建我的参考书目,我使用了以下函数,取自:http: //quantifyingmemory.blogspot.co.il/2013/02/reproducible-research-with-r-knitr.html
knitsPDF <- function(name) {
library(knitr)
knit(paste0(name, ".Rmd"), encoding = "utf-8")
system(paste0("pandoc -o ", name, ".pdf ", name, ".md --bibliography /Users/.../Desktop/test.bib --csl /Users/.../Desktop/taylor-and-francis-harvard-x.csl"))
}
我的 .Rmd 文件的内容是:
This is some text [@item1]
This is more text [@item2]
# References
输出的 PDF 如下所示:
如果我尝试插入附录,参考文献仍会打印在文档末尾,如下所示:
如何在参考文献后插入附录?