我在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
会产生:
如何让子文档包含主要参考书目中的参考文献?
答案 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}