按隶属关系顺序列出作者,不使用“and”运算符

按隶属关系顺序列出作者,不使用“and”运算符

我在列出作者时遇到了问题,无法让奇怪的“and”运算符出现在姓名之间,也无法让姓名出现在完全不同的行上。有时它会消失,有时它会出现,有时出现在作者 1 和 2 之间,有时出现在作者 1 和 3 之间,这取决于我在文档正文中插入了多少文本。以下是一个例子(作者 2 和 3 之间的“and”运算符):

在此处输入图片描述

我想将作者列表格式化为按顺序列出:姓名 1、姓名 2、姓名 3,并在作者姓名的一行下方直接包含相应的大学名称、部门名称和地址。非常经典的东西。

由于我正在使用twocolumn,我能找到的最接近的相关问题是:https://stackoverflow.com/questions/3041809/latex-multiple-authors-in-a-two-column-article

我无法通过该 SO 链接解决我的问题。有人可以提供帮助,以纠正用于生成上述输出的代码中的错误吗:

\documentclass[twocolumn, prl]{revtex4}

\makeindex

%--------------------------------------------------------
\begin{document}

\title{My title}

\author{Name1}
\email{[email protected]}
\affiliation{University name \\ Department name\\ Address}

\author{Name2}
\email{[email protected]}
\affiliation{University name\\ Department name \\ Address}

\author{Name3}
\email{[email protected]}
\affiliation{University name\\ Department name \\ Address}


\begin{abstract}
  The abstract starts here.  Filling space now: etc etc etc...
\end{abstract}


\maketitle

\section{Introduction}

My introduction starts here...

\end{document}

答案1

\documentclass[twocolumn, prl]{revtex4}

%\makeindex

%--------------------------------------------------------
\begin{document}

\title{My title}

\author
{Name 1,$^{1}$ Name 2,$^{2}$ Name 3$^{1\ast}$\\
\normalsize{$^{1}$Department Name, University Name,}\\
\normalsize{..................................................... Some potentially very long address .....................................................}\\
\normalsize{$^{2}$Department Name, University Name, Some short address}\\
\normalsize{$^\ast$To whom correspondence should be addressed: [email protected].}
}


\begin{abstract}
  The abstract starts here.  Filling space now: etc etc etc...
\end{abstract}

\maketitle


\section{Introduction}

My introduction starts here...

\end{document}

在此处输入图片描述

相关内容