Latex: Can I cite a reference after the bibliography

I'm having trouble with citations after the bibliography (in my appendices) using Bibtex/pdflatex. I'm using the 'puthesis' class - Purdue's class for our theses - which is built on top of the 'report' class. I'm using package 'natbib' with the option 'numbers'. An MWE isn't really feasible, but an example is shown below

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}

Some obvious things:

  • The citation does exist in the .bib file.
  • I'm running pdflatex; bibtex; pdflatex; pdflatex pdflatex; bibtex; pdflatex; pdflatex
  • I get the same error with and without the appendices line.
  • Is there a way to cite references in latex after the bibliography?


    This problem was caused by a non-UTF8/Latin9 encoded character in my .bib file. After ensuring the correct encoding with

    recode utf8..l9 dissertation.bib
    

    the file compiled as expected.

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

    上一篇: 参考文献与natbib包

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