Revtex 无隶属关系的多位作者 - 如何将同等贡献作为脚注?

Revtex 无隶属关系的多位作者 - 如何将同等贡献作为脚注?

我有一份有多位作者的文档。我通常会添加\affiliation{University Name}\altaffiliation{These authors contributed equally to this work}。但是,我现在不想显示任何隶属关系,但在第一页的脚注中仍显示相同的贡献。如果我只使用,\altaffiliation我会得到一个空格、一个逗号,然后是 altaffiliation 标记。

我的 MWE 如下

\documentclass[aps,preprintnumbers,nofootinbib,superscriptaddress,11pt]{revtex4}
\begin{document}
\title{Blah Blah}
\author{Author 1}
\altaffiliation{These authors contributed equally to this work}
\author{Author 2}
\altaffiliation{These authors contributed equally to this work}
\author{Author 3}
\maketitle
text text text
\end{document}

如您所见,它无法正常工作。如果我使用\affiliation而不是,\altaffiliation它会将其显示在作者列表下方,而我希望将其显示为脚注。

答案1

您可以手动将符号放在作者姓名中,并使用 来使用文本中没有相应符号的脚注\footnotetext。要获得相同的符号,您可以在命令前临时更改脚注符号\footnotetext,然后在命令之后将其改回。

梅威瑟:

\documentclass[aps,preprintnumbers,nofootinbib,superscriptaddress,11pt]{revtex4}
% geometry just for the screenshot
\usepackage[paperheight=100mm,paperwidth=210mm]{geometry}

\begin{document}
\title{Blah Blah}
\author{Author 1$^*$}
\author{Author 2$^*$}
\author{Author 3}
\maketitle
\def\thefootnote{*}\footnotetext{These authors contributed equally to this work}\def\thefootnote{\arabic{footnote}}
text text text\footnote{normal footnote}
\end{document}

结果:

在此处输入图片描述

相关内容