用逗号分隔参考文献和脚注编号

用逗号分隔参考文献和脚注编号

我正在使用revtex4-1文档类,并想在引用后添加脚注,

\cite{...}\footnote{}

但是,生成的 PDF 中连续的上标数字没有用逗号分隔。如何解决这个问题而不$^,$在中间放置一个?

最小工作示例:

\documentclass[prb,showpacs,superscriptaddress,groupedaddress,twocolumn]{revtex4-1}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{verbatim}
\usepackage[verbose,hypertexnames=false,bookmarksopenlevel=1,filecolor=blue,
linkcolor=blue,citecolor=blue,pdfstartview=FitH,bookmarksopen,bookmarksnumbered,
colorlinks,plainpages=false,linktocpage]{hyperref}

\begin{document}
\title{test}
Hello world\cite{test}\footnote{hello}

\begin{thebibliography}{6}
\bibitem{test} James D. Murray, William vanRyper: {\sl Graphics File
    Formats}. O'Reilly\&Associates, Inc., Sebastopol, CA, 1994.
\end{thebibliography}
\end{document}

相关内容