我正在尝试根据作者的角色为其姓名添加脚注。有两个人是共同第一作者,我想使用上标 $1$ 来表示这一点。我还想使用星号来标记我的导师为通讯作者。
现在,我尝试使用\author{Author 1} \thanks{Something}
但thanks
一直返回一个星号,所以我尝试使用\footnote
但奇怪的是它也返回一个星号(与我在大多数其他资源中观察到的假定的默认编号相反)。
我的代码看起来像这样:
\title{\titlefont{Title of the paper.}}
\author{
Author 1\thanks{Thanks 1} \and Author 2$^{\text{1}}$ \and Author 3 \and Author 4* \footnote{Corresponding author}\\
School name\\
\{author1, author2, author3, author4\}@school.edu}
这样一来,Author 1
他们的名字旁边就会出现一个小星号,而Author 4
他们的名字旁边则会有一个大星号和一把匕首,Thanks 1
底部的小星号旁边则会有一个脚注。
我所寻找的是1
旁边有Author 1
和Author 2
并且在旁边有一个大星号Author 4
,并以以下形式添加脚注:
1 Equally contributed.
* Corresponding author.
有人能给点建议吗?谢谢。