在使用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行时,我会得到相同的错误。是否有一种方法在书目之后引用中的参考文献?
发布于 2018-02-02 19:09:04
这个问题是由我的.bib文件中的一个非UTF8 8/Latin9 9编码字符引起的。在确保正确的编码之后
recode utf8..l9 dissertation.bib按预期编译的文件。
https://stackoverflow.com/questions/48587182
复制相似问题