Revtex:在附属列表后打印电子邮件

Revtex:在附属列表后打印电子邮件

使用 revtex 4.1,我尝试将通讯作者的电子邮件地址直接打印在隶属关系列表中(隶属关系之后),并以星号作为标准。无论期刊样式如何,我都可以使用选项将其作为第一页的脚注nobibnotes,或者使用选项将其作为参考书目bibnotes,但不能像希望的那样直接位于隶属关系列表之后。

我想使用notitlepagesuperscriptaddress格式。

梅威瑟:

\documentclass[notitlepage,superscriptaddress]{revtex4-1}
\usepackage{blindtext}

\begin{document}
\author{Annoyed Physisict}
\email{[email protected]}
\affiliation{Some University}

\author{Annoyed Chemist}
\affiliation{Some other University}


\title{Example for the revtex problem}
\date{\today}

\maketitle

\blindtext

\bibliography{}
\end{document}

我使用标准类发现了多个类似的问题article,例如这个,但使用 revtex 却没有。我在 revtex 文档中没有找到所需的选项。

是否有任何秘密的 revtex 选项可以做到这一点?

答案1

这是一种可能性:打印数字而不是 *、**、...

埃

\documentclass[notitlepage,superscriptaddress]{revtex4-1}

\usepackage{blindtext}

\makeatletter
\newcommand\emailx[1]{%
\move@AF%
\def\@affil{{\normalfont\,#1\strut}{}}%
}%


\makeatother
\begin{document}
    \author{Less Annoyed Physisict}
    
    \affiliation{Some University}
    \emailx{[email protected]}
    
    \author{Less Annoyed Chemist}
    \affiliation{Some other University}
    \emailx{[email protected]}
    
    \title{Example for the revtex problem}
    \date{\today}
    
    \maketitle
    
    \blindtext

\end{document}

相关内容