章节参考书目

章节参考书目

我正在为我的博士论文创建一个模板,并尝试chapterbib为每个章节使用两个不同的参考书目。我从主文件运行编译,然后运行两个 .aux 文件中的参考书目,然后再次从主文件编译。.bib 文件与我存放单个章节的子文件夹位于同一子文件夹中。但是,我似乎无法让它工作。您能发现我错在哪里吗?

多谢。

主要文件为:

\documentclass[12pt, twoside]{report}
\usepackage[utf8]{inputenc}

\usepackage[sectionbib]{natbib}
\usepackage{chapterbib}
\usepackage[nottoc]{tocbibind}

\usepackage{newclude}

\begin{document}

\begin{titlepage}
...
\end{titlepage}

\tableofcontents
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}

\chapter*{}
\addcontentsline{toc}{chapter}{Abstract}
\include*{chapters/abstract}

\chapter{Introduction}
\include*{chapters/introduction}

\chapter{First paper}
\include*{chapters/chapter02}

\chapter{Second paper}
\include*{chapters/chapter03}

\chapter{Conclusion}
\include*{chapters/conclusion}

\end{document}

chapter02.tex 和 chapter03.tex 分别为:

\section{Introduction}
Here the introduction of the first paper. Example of reference is \cite{blanchard_labor_2010}. 

\bibliography{BiblioC1} 
\bibliographystyle{apalike}
\section{Introduction}
Here the introduction of the second paper. Example of reference is \cite{calvo_staggered_1983}. 

\bibliography{BiblioC1} 
\bibliographystyle{apalike}

包含 chapter02.tex 和 chapter03.tex 的文件夹中的 .bib 文件包含这两个引用。

相关内容