答案1
实际上,如果您只\thanks{These two authors contributed equally}
在两个作者下使用,ReVTeX 应该会将它们映射到同一个脚注。确保文本相同。下面的代码对我有用,但必须删除电子邮件。
\documentclass[aip,rsi,reprint]{revtex4-1}
\usepackage{amsmath,amssymb}
\usepackage{lipsum}
\begin{document}
\title{Whatever}
\author{Roger Rabbit}
\thanks{These two authors contributed equally}
\author{Bugs Bunny}
\thanks{These two authors contributed equally}
%\email[E-mail me at:]{[email protected]}
\affiliation{Looney Tune Studios}
\begin{abstract}
\lipsum[2]
\end{abstract}
\maketitle
\section{Introduction}
\lipsum[1]
String theory\cite{GSW} attempts to provide a theory of everything.
\begin{thebibliography}{1}
\bibitem{GSW} M.~Greene, J.~Schwarz, and
E.~Witten, \textit{Superstring Theory:
Introduction}, (Cambridge University
Press, London, 1985).
\end{thebibliography}
\end{document}
答案2
这不是一个真正的答案,但渴望得到评论。
我不认为您想要的布局是 中的标准选项REVTeX
。请注意样本稿(您所指的)是使用 MS Word 创建的:-(
。
您当然可以绕过这些限制,但我担心这可能会给您提交稿件带来麻烦。有人告诉我(我不知道这是否正确),APS 和 AIP 期刊会将提交的稿件转换为某种非 TeX 格式。
下面给出了一个示例,可以部分回答您的问题(遗憾的是灵活性很差)。
\documentclass[aip,rsi,reprint]{revtex4-1}
\usepackage{amsmath,amssymb}
\usepackage{lipsum}
\begin{document}
\title{Whatever}
\author{Roger Rabbit}
\thanks{These two authors contributed equally}
\author{Bugs Bunny\normalfont\textsuperscript{a,}}
\email[E-mail me at:]{[email protected]}
\affiliation{Looney Tune Studios}
\begin{abstract}
\lipsum[2]
\end{abstract}
\maketitle
\section{Introduction}
\lipsum[1]
String theory\cite{GSW} attempts to provide a theory of everything.
\begin{thebibliography}{1}
\bibitem{GSW} M.~Greene, J.~Schwarz, and
E.~Witten, \textit{Superstring Theory:
Introduction}, (Cambridge University
Press, London, 1985).
\end{thebibliography}
\end{document}
评论:Bugs Bunny 的电子邮件地址直接取自手册REVTeX
,我不知道它是否是真正的电子邮件;-)
答案3
我能够用几个星号和额外的\affil
标签来做到这一点。
\documentclass{article}
\usepackage{authblk}
\begin{document}
\title{My title}
\author[1]{Bugs Bunny*} % asterisk
\author[1]{Donald Duck*} % asterisk
\affil[1]{Loony Tunes}
\affil[*]{Authors contributed equally} % extra affiliation
\maketitle
\end{document}