使用 bibnote 合并 achemso 中参考书目项目和脚注的引用

使用 bibnote 合并 achemso 中参考书目项目和脚注的引用

我的问题与这个:基本上,我想在参考书目中添加脚注,并且希望它们与任何其他参考书目项目完全一样对待。

但是我有不同的限制,所以链接问题所接受的答案并不能解决我的问题。

我必须使用achemso样式,对于脚注,我必须使用bibnote(不是footnotetext)。此外,对于参考书目,我必须使用bibtex

这是一个最小的工作示例:

\begin{filecontents*}{biblio.bib}
@article{bib1,
author = {Guy, A.},
journal = {American Journal of Journals},
number = {42},
pages = {42},
title = {Answer to the Ultimate Question of Life, the Universe, and Everything},
volume = {42},
year = {1942}
}
@article{bib2,
title={Can quantum-mechanical description of physical reality be considered complete?},
author={Einstein, Albert and Podolsky, Boris and Rosen, Nathan},
journal={Physical review},
volume={47},
year={1935},
}
\end{filecontents*}

\documentclass[journal=mamobx,manuscript=article,layout=traditional]{achemso}
\setkeys{acs}{articletitle = true}

\title{Title}
\begin{document}
I would like \cite{bib1}\bibnote{Footnote text} to look as \cite{bib1,bib2}.
\bibliography{biblio.bib}
\end{document}

以下是输出的截图:

在此处输入图片描述

答案1

如果你想要一个带有\cite“真实”引文和注释的单行本,那么除了“手动”创建注释条目之外别无选择

@misc{Note1,
  howpublished = {Some interesting note}
}

...

\cite{bib1,Note1}

相关内容