我有一份博士论文手稿,其中必须在结论部分后添加主要参考书目,并在每章中添加参考书目。我使用 natbib 包。每个参考书目都保存在单独的 .bib 文件中。主文档具有以下结构:
\documentclass[PhD,bibsection,english,french]{ulthese}
\usepackage{chapterbib}`
...
\include{introduction}
\include{chap1-articles}
\include{chap2-articles}
\include{chap3-articles}
\include{discussion}
\include{conclusion}
\renewcommand{\bibsection}{\chapter*{\bibname}}
\phantomsection\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{alpha}
\bibliography{bibliography}
\appendix
...
\end{document}
章节的参考书目插入得很好。为了在每一章中添加参考书目,我使用:
\bibliographystyle{alpha}
\bibliography{referenceChap1}
当我使用以下命令停用章节时:
\include{introduction}
%\include{chap1-articles}
%\include{chap2-articles}
%\include{chap3-articles}
\include{discussion}
\include{conclusion}
\renewcommand{\bibsection}{\chapter*{\bibname}}
\phantomsection\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{alpha}
\bibliography{bibliography}
\appendix
我无法解决书目之间的冲突