更改作者电子邮件附近的标志

更改作者电子邮件附近的标志

我使用以下内容:

\documentclass{article}
\usepackage{authblk}
\date{\today}
\title{Some Title}
\author[1]{Prof. First Person\thanks{[email protected]}}
\author[2]{Dr. Second Man \thanks{[email protected]}}
\affil[1,2]{Department of Important People, Latex University}

我想将第二作者附近的小十字符号替换为其他符号,或者只使用电子邮件附近的数字。我该怎么做?

答案1

实际上是symbols脚注标记,因此fnsymbol开始起作用。改变这种情况的一个简单方法是使用footmisc并定义另一fnsymbols\DefineFNsymbolsTM{somename}

请注意,此命令的语法是宏名称对的列表,即文本符号和数学模式下的“相应”命令。

我只是添加了一些符号并打乱了一些符号的顺序otherfnsymbols

定义后,符号必须用\setfnsymbol{otherfnsymbols}

\documentclass{article}
\usepackage{authblk}
\usepackage[symbol*]{footmisc}

\DefineFNsymbolsTM{otherfnsymbols}{%
  \textbullet \circ
  \textsection   \mathsection
  \textdagger    \dagger
  \textdaggerdbl \ddagger
  \textasteriskcentered *
  \textbardbl    \|%
  \textparagraph \mathparagraph
}%

\setfnsymbol{otherfnsymbols}


\date{\today}
\title{Some Title}
\author[1]{Prof. First Person\thanks{[email protected]}}
\author[2]{Dr. Second Man\thanks{[email protected]}}
\affil[1,2]{Department of Important People, Latex University}


\begin{document}

\maketitle
\end{document}

在此处输入图片描述

相关内容