我在使用Bibtex / pdflatex的参考书目(在我的附录中)引用时遇到了问题。我正在使用'假设'课程 - 我们论文的普渡大学课程 - 建立在报告的基础之上'类。我正在使用包' natbib'使用选项'数字'。 MWE并不可行,但下面显示了一个例子
\documentclass[english, ne, thesis]{puthesis}
\usepackage[numbers]{natbib}
...
\begin{document}
\chapter{Body Chapter}
Citations work fine here \cite{abc123}
\bibliographystyle{unsrt}
\bibliography{dissertation.bib}
\appendices
\chapter{Appendix Chapter}
Citations don't work here, I get an error that the
"Package natbib Warning: Citation `Crane1991' on page 145 undefined
on input line 4940." \cite{abc1234}
\end{document}
一些显而易见的事情:
pdflatex; bibtex; pdflatex; pdflatex
\appendices
行时,我收到相同的错误。在参考书目之后有没有办法引用乳胶中的参考文献?
答案 0 :(得分:0)
此问题是由我的.bib文件中的非UTF8 / Latin9编码字符引起的。确保使用
进行正确编码后recode utf8..l9 dissertation.bib
按预期编译的文件。