在 RevTex (Latex) 中将数字更改为相应作者的符号

在 RevTex (Latex) 中将数字更改为相应作者的符号

我正在向 APL 期刊提交一份手稿。

编辑部要求在通讯作者的邮件后面加一个星号作为脚注。

默认情况下,revtex 文件采用 AIP 格式。它使用数字而不是星号。我不知道 AIP 格式是否错误,因为它使用数字,或者编辑团队最近改变了主意。

我怎样才能将数字改为星号,并用星号表示两个通讯作者,用匕首表示第二个通讯作者?

谢谢你的支持。

答案1

revtex对前言中的脚注使用单独的定义。这可以进行调整:

\documentclass[aip]{revtex4-2}

\usepackage{footmisc}

\begin{document}

{
\makeatletter
\def\frontmatter@thefootnote{%
 \altaffilletter@sw{\@fnsymbol}{\@fnsymbol}{\csname c@\@mpfn\endcsname}%
}%
\makeatother

\author{A. B. Name}
\email{[email protected]}
\affiliation{University}

\author{C. D. Test}
\email{[email protected]}
\affiliation{School}
\maketitle
}

normal text with footnote\footnote{text}

\end{document}

在此处输入图片描述

答案2

脚注符号可以轻松修改。它们由命令调用\thefootnote。还有另一个宏\fnsymbol将脚注编号转换为符号:1 为星号,2 为匕首,3 双匕首等

所以你可以

\renewcommand*{\thefootnote}{\fnsymbol{footnote}}

如果你想恢复(文章正文)

\renewcommand*{\thefootnote}{\arabic{footnote}}

\documentclass{article}
\usepackage[width=16cm, bottom=18cm]{geometry}

\renewcommand*{\thefootnote}{\fnsymbol{footnote}}

\begin{document}

\title{About footnotes}
\author{Author 1\footnote{institution 1}
\and Author 2\footnote{institution 2}}

\maketitle

\setcounter{footnote}{0} % not sure it is required
\renewcommand*{\thefootnote}{\arabic{footnote}}

The text with normal\footnote{ie numeric} footnotes\footnote{blah blah}.
\end{document}

在此处输入图片描述

相关内容