尝试将参考书目添加到报告中时出错

尝试将参考书目添加到报告中时出错

我正在写一篇论文,必须使用我大学提供的特定模板。我已经能够将其格式改为更接近我习惯的格式,但我遇到了无法添加参考书目和出现大量错误的问题。我一直在网上搜索如何修复它,但还没有找到方法,所以我希望有人能在这里解释一下这个问题。

我在下面添加了一个精简版的 tex 文件来展示我正在做的事情。我尝试过像图中所示那样正常添加参考书目,也尝试过以 (\begin{thebibliography}) 和 (\end{thebibliography}) 格式开始和结束,但都出现了错误。对于下面显示的仅添加 .bib 文件的正常实现,我得到了各种错误,例如:

+Package inputenc Error: Invalid UTF-8 byte "8E. \begin{thebibliography}{}
+Undefined control sequence. \bibitem{lee2019}
+Missing \endcsname inserted.

有人能帮忙解决这个问题并添加参考书目吗?提前致谢

\documentclass[12pt]{report}
\usepackage{jgraduate2012}

\usepackage{graphicx}
.
.
.
\usepackage{natbib}

\begin{document}
\maketitle

\begin{abstract}
abstract
\end{abstract}

\tableofcontents
\listoffigures
\listoftables

\include{section1}

\bibliographystyle{plain}
\bibliography{reference.bib}

\end{document}

相关内容