我有一个大学论文类文件 https://github.com/uclathes/uclathes
当我尝试使用 natbib 包时,pdflatex 编译错误显示
LaTeX Error: Environment thebibliography undefined.
l.1063 \renewenvironment{thebibliography}[1]{%
最小代码:
\documentclass[PhD]{uclathes}
\usepackage{natbib}
\begin{document}
Test 1-2-3 \citet{austin2002simplescalar}
\bibliography{bib_references}
\bibliographystyle {plainnat}
\end{document}
bib_references.bib 文件
@article{austin2002simplescalar,
title={SimpleScalar: An infrastructure for computer system modeling},
author={Austin, Todd and Larson, Eric and Ernst, Dan},
journal={Computer},
volume={35},
number={2},
pages={59--67},
year={2002},
publisher={IEEE}
}
我在这里发现了类似的问题 TikZ 与大学论文类文件之间的冲突
我尝试将论文类文件中定义的变量名 thebibliography 更改为其他名称,但仍然显示错误。