在 Latex 中引用论文和引理

在 Latex 中引用论文和引理

我在用参考书目环境来列出参考文献。目前我引用了一篇这样的论文 [1](方括号内为论文编号)。我想要的是 [1,引理 1](方括号内为论文编号和引理编号)。我搜索了解决方案,所有解决方案都涉及 biblatex 或 bibtex。使用参考书目环境?我更喜欢参考书目环境,因为我想上传单个文件。提前致谢。

参考文献如下。

\begin{thebibliography}{10}
\bibitem{ref1} Name of Paper 1 
\bibitem{ref2} Name of Paper 2
\end{thebibliography}

答案1

不起作用吗\cite[]{}

\documentclass{report}

\begin{document}

See \cite[lemma 1]{foo}

\begin{thebibliography}{1}

\bibitem{foo}
  Foo \& Bar,
  {\em Treaty of mathematics},
  2021

\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容