REVTeX 中的共享作者脚注

REVTeX 中的共享作者脚注

REVTeX 会自动将宏合并\email\thanks一个脚注,如果多个作者共享完全相同的宏集,则使用相同的脚注。

有什么方法可以强制\email\thanks宏有自己的脚注,以便两个作者可以共享注释\thanks

例如我希望作者列表如下所示:

A. 作者,a),b) B. 作者,b) C. 作者

a) 电子地址:[电子邮件保护]
b) 这两位作者的贡献是平等的

科学仪器评论样本稿确实如此,但是我不知道如何在 REVTeX 中获得这个结果。

答案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}

相关内容