修改作者 \email 中的上标颜色

修改作者 \email 中的上标颜色

我如何修改指代电子邮件的上标(作者姓名附近)的颜色?我想使用 \email。在下面的例子中,我希望“*”符号有颜色(页面顶部和底部都有颜色)。

\documentclass[pre,aps,twocolumn,nofootinbib]{revtex4-1}


\begin{document}

\title{My title}

\author{name surname}
\email{[email protected]}

\maketitle 

\end{document}

在此处输入图片描述

答案1

您可以将其添加\color{<color>}到 前面\frontmatter@thefootnote

\documentclass[pre,aps,twocolumn,nofootinbib]{revtex4-1}
\usepackage{etoolbox,xcolor}

\makeatletter
\pretocmd\frontmatter@thefootnote{\color{red}}{}{}
\makeatother

\begin{document}

\title{My title}

\author{name surname}
\email{[email protected]}

\maketitle

\end{document}

相关内容