乳胶:我可以在参考书目后引用参考文献吗?

在参考书目(在我的附录中)使用Bibtex / pdflatex之后,我遇到了引用问题。 我正在使用'puthesis'类 - 普渡大学的课程是为我们的论文提供的 - 它建立在“报告”课程之上。 我使用包含'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}

一些明显的事情:

  • 引用确实存在于.bib文件中。
  • 我正在运行pdflatex; bibtex; pdflatex; pdflatex pdflatex; bibtex; pdflatex; pdflatex
  • appendices行中出现同样的错误。
  • 参考书目有没有方法可以引用乳胶中的参考文献?


    这个问题是由我的.bib文件中的非UTF8 / Latin9编码字符引起的。 在确保正确的编码后

    recode utf8..l9 dissertation.bib
    

    该文件按预期编译。

    链接地址: http://www.djcxy.com/p/33463.html

    上一篇: Latex: Can I cite a reference after the bibliography

    下一篇: Latex: PDF does not print the bibliography from the .bib file