\author 中的带编号样式的脚注

\author 中的带编号样式的脚注

在 LaTeX 中,我想在命令内部将脚注编号定义为 a)、b)、c)、...,位于作者的上标\author{}。如果我使用\thanksinside \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}

第一的

页脚

相关内容