采用上标格式对脚注和引文进行分组

采用上标格式对脚注和引文进行分组

使用上标格式引用时,上标中引用会用逗号(如果有两个)或短划线(如果有两个以上)分组。但是,如果我的脚注和引用是连续的,那么上标中就没有逗号,只有并排的两个数字。

示例.tex:

\documentclass[aip]{revtex4-2}

\begin{document}

Text\cite{Ref1,Ref2}

Text\footnote{Blah}\cite{Ref1}

\bibliography{test}

\end{document}

和测试.bib:

@article{Ref1,
title = {Tit1},
author = {Aut1}
}

@article{Ref2,
title = {Tit2},
author = {Aut2}
}

生产

在此处输入图片描述

有没有办法将混合的脚注和引用参考组合在一起,就像这两个引用一样?

答案1

使用解决方案fnpct也适用于这里:

在此处输入图片描述

\documentclass[aip]{revtex4-2}
\usepackage{fnpct}

\AdaptNote\cite{oom}{%
  \IfNoValueTF{#1}
    {#NOTE{#3}}
    {\IfNoValueTF{#2}{#NOTE[#1]{#3}}{#NOTE[#1][#2]{#3}}}%
}

\begin{document}

Text\cite{Ref1,Ref2}

Text\footnote{Blah}\cite{Ref1}

\bibliography{test}

\end{document}

相关内容