我正在使用Miktex
撰写WinEdt editor
IEEE 会议文章。我将文件复制IEEEabrv
到IEEEtran
我的文章LaTeX
文件夹并使用了此代码。(Bib_ref
这是我的参考书目文件)
\begin{thebibliography}{1}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,Bib_ref}
\end{thebibliography}
当我运行我的LaTeX
文件时,控制台停止在\end{thebibliography}
并且出现此错误:
LateX Error: Something's wrong-perhaps a missing \item.
我将来自谷歌学术的一份参考书目插入到我的 bib 文件中。
答案1
要插入参考文献,您可以使用任何一个 thebibliography
环境(手动列出条目)或\bibliography
(包含外部 BibTeX 文件)。由于您使用的是后一种方式,因此无需\bibliography
在thebibliography
环境中包装。这应该有效:
\documentclass{IEEEtran}
\begin{document}
% main body ...
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,Bib_ref}
\end{document}