答案1
你可以嘗試類似的事情。但請注意,這revtex
是一個相當複雜的類,更改可能會影響其他地方。通常,您最好不要理會這些類,或向維護人員發送功能請求,而不是弄亂它們的內部結構。
\documentclass[superscriptaddress]{revtex4-2}
\ExplSyntaxOn\makeatletter
\def\@affil@present@script{%
\let\@tempa\@empty
\@affil@present@script@{\@affilID@temp}\relax
}%
\def\@affil@present@script@#1{%
\tl_set:Nx\l_tmpa_tl{\tl_item:Nn#1{1}}
\tl_set:Nx\l_tmpb_tl{\tl_item:Nn#1{-1}}
\tl_if_eq:NNTF\l_tmpa_tl\l_tmpb_tl
{\textsuperscript{\l_tmpa_tl}}
{\textsuperscript{\l_tmpa_tl--\l_tmpb_tl}}
}
\ExplSyntaxOff\makeatother
\begin{document}
\title{Title}
\author{Author}
\affiliation{Affiliation A}
\affiliation{Affiliation B}
\affiliation{Affiliation C}
\author{AuthorB}
\affiliation{Affiliation D}
\affiliation{Affiliation E}
\affiliation{Affiliation F}
\author{AuthorC}
\affiliation{Affiliation G}
\maketitle
\end{document}