我使用以下内容:
\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}