在 LaTeX 中,我想在命令内部将脚注编号定义为 a)、b)、c)、...,位于作者的上标\author{}
。如果我使用\thanks
inside \author{}
,脚注编号将不同于 a)、b)、c)、...,并且我无法修改\thanks
命令的编号样式。
请查看下面的代码并提出修改建议。谢谢。
\documentclass{article}
\begin{document}
\title{Numbering footnote in author sample code}
\author{AA \thanks{[email protected]} \\
BB \thanks{[email protected]}}
\maketitle
\end{document}
答案1
脚注编号\thanks
设置为\@fnsymbol
,因此您可以将其替换为以\@alph
将其更改为按字母顺序排列的“编号”。
\documentclass{article}
\makeatletter
\renewcommand*{\@fnsymbol}[1]{\@alph{#1})}
\makeatother
\begin{document}
\title{Numbering footnote in author sample code}
\author{AA \thanks{[email protected]} \\
BB \thanks{[email protected]}}
\maketitle
\end{document}