我试图将补充信息附加到手稿末尾以形成一个 latex 文件。生成的文件当然会有两个参考书目,分别对应于手稿中的参考书目和 SI 中的参考书目。
因此,手稿如下所示:
\begin{document}
Text_1 (some text with citations)
Bibliography_1
\end{document}
补充信息如下
\begin{document}
Text_2 (some other text with citations)
Bibliography_2
\end{document}
现在,我想将两者合并为一个 Latex 文件,该文件将输出以下内容:
文本1
参考书目_1
文本_2
参考书目_2
有人能告诉我怎么写这个吗?
谢谢!
答案1
我找到了解决方案。
人们可以简单地使用该chapterbib
包。
\documentclass{article}
\usepackage{chapterbib}
\begin{document}
\input{file1}
\input{file2}
\end{document}
重要的是,首先在主文件上运行 pdflatex,然后在 file1.tex 上运行 bibtex,然后在主文件上运行 file2.tex,然后在主文件上运行 pdflatex 两次。