bibtex 中同一条目中有两篇或多篇文章

bibtex 中同一条目中有两篇或多篇文章

我想使用 bibtex 在参考文献的同一条目中引用两篇处理同一问题的论文。在我的领域中,将关于某个主题的许多评论放在参考书目的一个条目中是很常见的。以下是一个例子,有两篇文章:

在此处输入图片描述

如果将所有参考文献放在论文文本的同一个 tex 文件中,这确实很容易做到,但使用 bibtex 时我从未找到任何选项可以做到这一点!有什么建议吗?注意:我通常使用 revtex4-1 类。

提前致谢。

答案1

欢迎来到 TeX.SE!

该包mcite允许你编写

\cite{ref1,ref2*}

将这两个参考文献合并为一个条目。RevTeX 也实现了类似的标记,可以以相同的方式使用。阅读作者指南REVTEX 4.1 的 AIP 子样式

平均能量损失

\documentclass[aip]{revtex4-1}
\usepackage{filecontents}
\begin{filecontents*}{references.bib}
@article{einstein,
  author =       "Albert Einstein and Second Author",
  title =        "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
                 [{On} the electrodynamics of moving bodies]",
  journal =      "Annalen der Physik",
  volume =       "322",
  number =       "10",
  pages =        "891--921",
  year =         "1905"
}
@book{dirac,
  title={The Principles of Quantum Mechanics},
  author={Paul Adrien Maurice Dirac},
  series={International series of monographs on physics},
  year={1981},
  publisher={Clarendon Press},
}
\end{filecontents*}

\begin{document}
Like this. \cite{dirac,*einstein}
\bibliographystyle{plain}
\bibliography{references}
\end{document}

在此处输入图片描述

相关内容