删除 RevTeX 4.1 中两个从属关系之间的“and”

删除 RevTeX 4.1 中两个从属关系之间的“and”

在此 MWE 中:

\documentclass[reprint,aps,prl,twocolumn, showpacs ,groupedaddress,nobibnotes]{revtex4-1}

\begin{document}
\title{title}
\author{author1$^1$, author2$^2$}
\affiliation{$^1$Department A}
\affiliation{$^2$Department B}

\maketitle
hello....
\end{document}

部门A后面有一个and,我不想要,怎么去掉?

答案1

该类使用\andname\space,因此你可以重新定义\andname(通常扩展为“and”以占用空间

\documentclass[reprint,aps,prl,twocolumn, showpacs ,groupedaddress,nobibnotes]{revtex4-1}

\renewcommand{\andname}{\ignorespaces}

\begin{document}
\title{title}
\author{author1$^1$, author2$^2$}
\affiliation{$^1$Department A}
\affiliation{$^2$Department B}

\maketitle
hello....
\end{document}

在此处输入图片描述

相关内容