帮助解决消失的书目问题

帮助解决消失的书目问题

我对 latex 的参考书目 (我使用 bibtex) 有一个奇怪的问题 (进行编译时我使用 TexniCcenter 2.0 beta,但即使我使用 Texworks 或 winedt 进行编译,问题仍然存在)。

我正在写一篇论文,并编写两三章(通过 \input 命令),参考书目运行良好,没有任何警告。

一旦我添加了其他章节(这样加上附录,章节总数为 4 或 5),它就无法再编译哪怕一个参考文献,整个参考书目都会消失。(我甚至尝试将参考书目限制从 99 改为 200 或 300,但没有成功)。这是我的代码:

\documentclass[a4paper,12pt]{book}

\usepackage{indentfirst}
\usepackage{fancyhdr}
\usepackage{showkeys}%togliere nella versione definitiva
\usepackage[output-decimal-marker={.}]{siunitx}
\usepackage[english]{babel}
\usepackage[]{natbib} 
\usepackage[dvips]{graphicx}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{eucal}

\begin{document}

\frontmatter
\tableofcontents
\mainmatter
\addcontentsline{toc}{chapter}{Introduction}
\input{Introduction.tex}
\input{Chap1.tex}
\input{Chap2.tex}

\appendix
\input{Appendix1.tex}
\input{Appendix2.tex}

\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{biblio}{}
\bibliographystyle{apalike}

\end{document}

相关内容