我正在尝试编译一篇论文,其中有一个包含不同章节的 main.tex 文件。我需要在每一章后添加参考文献。所有参考文献都在一个 .bib 文件中。但是当我编译时,我没有得到参考文献列表,而是得到了 [?],而不是参考文献编号。
\documentclass[phd,tocprelim]{CU}
\usepackage[sectionbib]{chapterbib}
%\bibliographystyle{plain}
%\bibliographystyle{IEEEbib}
\begin{document}
\include{chapter1/thesis-chapter1}
\include{chapter2/thesis-chapter2}
\include{chapter3/thesis-chapter3}
\end{document}
各个章节存储在单独的子文件夹中。第 1 章的示例如下(All_citations 是参考书目文件):
\chapter{abc}{\label{1}}
\section{Introduction}
...
...
\bibliographystyle{ieeetr}
\bibliography{All_citations}
谢谢