文档中多个参考书目之间的冲突

文档中多个参考书目之间的冲突

我有一份博士论文手稿,其中必须在结论部分后添加主要参考书目,并在每章中添加参考书目。我使用 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

参考书目显示正确 在此处输入图片描述

我无法解决书目之间的冲突

相关内容