我想使用该函数\cite{[{prepended text}][{appended text}]item}
在引文前面添加/附加文本以引用先前的参考书目条目。当论文被重印在书中时,这非常有用。
以下是该问题的一个最小示例,采用以下代码:
\documentclass[aps,10pt,notitlepage]{revtex4-1}
\usepackage[utf8]{inputenc}
\begin{document}
\title{Bibliography fail}
\maketitle
\cite{book}
\cite{[][{. Reprintend in~\cite{book}}]paper}
\cite{paper2}
\cite{paper3}
\bibliography{error}
\end{document}
这是我得到的: 本书在附加文本中被正确引用,但不知何故,下一个引用的编号与刚刚引用的编号相同。在此之后,编号照常进行。
您有什么建议或解决方法吗?