如何给多个作者相同的脚注?

如何给多个作者相同的脚注?

我试图给予两位作者同等的荣誉,但我无法将其放入乳胶中。我做得有点不合常规,我的乳胶代码如下:

\documentclass[sigconf]{acmart}
\fancyhead{}
\pagenumbering{gobble}
\settopmatter{printfolios=false}
\settopmatter{printacmref=false} % Removes citation information below abstract
\renewcommand\footnotetextcopyrightpermission[1]{}
\usepackage{booktabs} % For formal tables
\author{A*, B*, and C}
\thanks{*these authors contributed equally}
\affiliation{%
  \institution{D}
  \city{E} 
  \state{F} 
%  \postcode{0}
}
\email{{a,b,c}@gmail.com}
\begin{document}
\title{TITLE}
\maketitle
\end{document}

截屏

在我看来,它看起来并不原始。因此,如果有其他解决方案,请分享。

答案1

acmart(现在)直接支持这一点。从文档

有时可能需要将同一个脚注与多个作者关联。该命令\authornotemark[⟨number⟩]仅添加脚注标记,例如,

\author{A. U. Thor}
\authornote{Both authors contributed equally to the paper}
...
\author{A. N. Other}
\authornotemark[1]

对于其他文档类别,通用footnotemark方法(链接在上面) 可能是正确的。例如,有时您可能必须\thanks在一个作者上使用,\footnotemark在另一个作者上使用,但这取决于样式文件如何处理作者姓名。

相关内容