我如何修改指代电子邮件的上标(作者姓名附近)的颜色?我想使用 \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}