我正在编写一个包含多个章节的文档。因此我有一个主文件夹,其中有 main.tex,然后我分别有子文件夹/Chapter1
和。/Chapter2
Chapter1.tex
chap1.bib
Chapter2.tex
chap2.tex
我的样本main.tex
看起来像这样
\usepackage[longnamesfirst]{natbib}
\begin{document}
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\end{document}
Chapter1.tex
如下Chapter2.tex
所示 ===============================================================================
\chapter{Title of the First Chapter} %
\graphicspath{{Chapter1/Figs/}}
textafsdsafadfadfadfadfadfa (body)
\bibliography{chap1}
\pagebreak
========================================================================
\chapter{Title of the Second Chapter} %
\graphicspath{{Chapter2/Figs/}}
textafsdsafadfadfadfadfadfa (body)
\bibliography{chap2}
\pagebreak
=========================================================================
您能告诉我如何实现我的目标吗?我将不胜感激。
谢谢
查