我有多个作者,都属于同一所属机构。有没有什么方法可以让 REVTeX 隐藏上标?
例如,所有这些人的名字旁边都会有“1),2)”:
\documentclass[aip,jap,reprint]{revtex4-1}
\usepackage{graphicx}
\usepackage{amsmath}
\begin{document}
\title{My Paper}
\author{First Person}
\email{[email protected]}
\author{Second Person}
\author{Third Person}
\author{Fourth Person}
\affiliation{Some Place}
\affiliation{Different Place}
\maketitle
\end{document}
答案1
使用groupedaddress
类选项revtex4-1
,在这种情况下,您可以隐藏隶属关系上标:
\documentclass[aip,jap,reprint,groupedaddress]{revtex4-1}
\begin{document}
\title{My Paper}
\author{First Person}
\email{[email protected]}
\author{Second Person}
\author{Third Person}
\author{Fourth Person}
\affiliation{Some Place}
\affiliation{Different Place}
\maketitle
\end{document}
还提供其他选项和作者/所属机构显示。请参阅IV.3 指定作者和所属机构(第 6 页)revtex4-1
文档。