编织儿童文件中的参考书目

时间:2015-06-25 23:07:00

标签: r knitr bibtex bibliography

我在knitr子文档中包含参考书目时遇到问题。我希望能够在子文档中引用我的主要参考书目中的文章,但是参考书目出现在主文档之后,而不是在孩子之后。如果我只在主文档中包含\bibliography命令,则不会正确解析子文档中的引用。示例:

main.Rnw:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\begin{document}
This is the main doc.

<<child-demo, child='child.Rnw'>>=
@
\bibliography{mylib}
\end{document}

child.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会产生:

out

如何让子文档包含主要参考书目中的参考文献?

1 个答案:

答案 0 :(得分:2)

首先,您错过了mylib.bib中的一些逗号:

@article{myref,
 title = {frobnosticating froo filters},
 volume = {21},
 journal = {Frobnification},
 author = {John Q. Smith},
 month = {jan},
 year = {2004}
}

然后你没有指定参考书目的风格:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\begin{document}
This is the main doc.

<<child-demo, child='child.Rnw'>>=
@
\bibliography{mylib}
\bibliographystyle{plain}
\end{document}