2 模板(有两列),我想让论文作者在同一行,而所属机构则全部放在作者下方。我使用以下代码:
\documentclass[reprint,amsmath,amssymb,aps,]{revtex4-2}
\usepackage{graphicx}
\graphicspath{{C:..}}
\usepackage{dcolumn}
\usepackage{bm}
\begin{document}
\title{Title}
\author{Author1}
\affiliation{Affiliation1}
\author{Author2}
\affiliation{Affiliation2}
\collaboration{Z}
\date{\today}
\begin{abstract}
Article abstract
\end{abstract}
\maketitle
\end{document}
这样,我得到了第一作者及其下的所属单位,甚至得到了第二作者及其下的所属单位。就像这样:
我怎样才能让作者位于同一行并位于所属机构之下?
答案1
首先列出所有\author
s,然后列出所有\affiliation
s。默认情况下,多个作者/所属机构以 分隔and
,但可以更改为,
使用
\def\andname{\unskip,}
\documentclass[reprint,amsmath,amssymb,aps,]{revtex4-2}
\usepackage{graphicx}
\graphicspath{{C:..}}
\usepackage{dcolumn}
\usepackage{bm}
\def\andname{\unskip,}
\begin{document}
\title{Title}
\author{Author1}
\author{Author2}
\affiliation{Affiliation1}
\affiliation{Affiliation2}
\collaboration{Z}
\date{\today}
\begin{abstract}
Article abstract
\end{abstract}
\maketitle
\end{document}
答案2
我认为上标地址documentclass 中的选项是实现相同结果的官方方法。