每章都有单独的参考书目

每章都有单独的参考书目

我正在编写一个包含多个章节的文档。因此我有一个主文件夹,其中有 main.tex,然后我分别有子文件夹/Chapter1和。/Chapter2Chapter1.tex chap1.bibChapter2.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

=========================================================================

您能告诉我如何实现我的目标吗?我将不胜感激。

谢谢

相关内容