我在knitr
子文档中包含参考书目时遇到问题。我希望能够在子文档中引用我的主要参考书目中的文章,但参考书目出现在主要文档之后,而不是在子文档之后。如果我只\bibliography
在主文档中包含该命令,则无法正确解析子文档中的引用。例子:
主要.Rnw:
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\begin{document}
This is the main doc.
<<child-demo, child='child.Rnw'>>=
@
\bibliography{mylib}
\end{document}
孩子.Rnw:
This is the child \cite{myref}.
mylib.bib:
@article{myref,
title = {frobnosticating froo filters}
volume = {21},
journal = {Frobnification},
author = {John Q. Smith}
month = jan,
year = {2004}
}
我的compile
脚本包含:
#!/usr/bin/env Rscript
library(knitr)
knit('main.Rnw', tangle=TRUE)
knit('main.Rnw', tangle=FALSE)
for ( i in c(1,2,3)) {
system('pdflatex main')
system('bibtex main')
}
运行compile
产生:
如何使子文档包含主要参考书目中的参考文献?