我在用简历.cls用于制作简历,我想使用 BibTeX 制作出版物列表。我已经使用了建议这里(@jak123 的回答)和这里(@egreg 的回答)关于如何使用 BibTex 生成出版物列表,它似乎有效并生成一个包含完整出版物列表的文件。代码是
\documentclass{resume}
\usepackage{bibentry}
\makeatletter
\def\endthebibliography{%
\def\@noitemerr{\@latex@warning{Empty `thebibliography' environment}}%
\endlist}
\makeatother
\begin{document}
\nobibliography{cv}
\bibliographystyle{JHEP}
%----------------------------------------------------------------------------------------
% Publication
%----------------------------------------------------------------------------------------
\begin{rSection}{Publications}
\begin{enumerate}
\item \bibentry{A1}
\item \bibentry{A2}
\item \bibentry{A3}
\end{enumerate}
\end{rSection}
\end{document}
但是,出现以下错误
Lonely \item--perhaps a missing list environment. \bibitem{A1}
Lonely \item--perhaps a missing list environment. \bibitem{A2}
Lonely \item--perhaps a missing list environment. \bibitem{A3}
由于这个错误非常烦人,有没有办法摆脱它?