在 revtex 中,多个作者具有唯一标签,共享隶属关系

在 revtex 中,多个作者具有唯一标签,共享隶属关系

我想在 revtex 中为每位作者和所属机构赋予唯一的标签,以便我可以随意使用它们而不会重复。

文章类在 authblk 包中提供了 \affil 命令:

\documentclass{article}
\usepackage{authblk}

\title{Article Title}

\author[1,2]{D. Duck}
\author[2,3]{M. Mouse}
\author[1,4]{H. Simpson}

\affil[1]{Duckburg} 
\affil[2]{Mouseton} 
\affil[3]{Disneyland} 
\affil[4]{Springfield}

\begin{document}
\maketitle

This is an article.
\end{document}

但是当切换到 revtex 时出现此错误:

! LaTeX Error: Command \c@affil already defined.

非常感谢

答案1

尝试

\documentclass{revtex4}
\makeatletter
\let\c@affil\relax
\makeatother
\usepackage{authblk}

\title{Article Title}
[...]

相关内容