【发布时间】:2020-01-30 21:45:29
【问题描述】:
我正在使用 R Markdown 编写一份报告,其中包含参考资料。问题是 R markdown 会自动将引用放在报告的末尾。我想在参考文献后面加一个附录,有什么办法吗?我看到a child document 可以实现,但我希望将所有内容都放在一个独特的.Rmd 文件中。
下面是一个可重现的例子:
---
title:
author:
date:
abstract:
output:
pdf_document:
template: NULL
number_sections: true
citation_package: biblatex
bibliography: references.bib
biblio-style: bwl-FU
---
# Partie 1
\cite{greenwood_financial_1989}
<!-- where I would like the references to be -->
# Appendix
bla bla
这是references.bib文件的内容:
@article{greenwood_financial_1989,
title = {Financial Development, Growth and the Distribution of Income},
url = {https://www.nber.org/papers/w3189},
number = {3189},
journaltitle = {NBER Working Paper Series},
date = {1989},
author = {Greenwood, Jeremy and Jovanovic, Boyan}
}
有什么想法吗?
【问题讨论】:
标签: r r-markdown