我需要标记两位作者的贡献相同,并希望使用脚注来做到这一点。我的文档类别如下 - 我必须使用此模板。
\documentclass[conference,a4paper]{IEEEtran}
\begin{document}
\title{My title}
\author{\IEEEauthorblockN{Author One\IEEEauthorrefmark{1}, Author 2\IEEEauthorrefmark{2}, Author 3\IEEEauthorrefmark{3} and Author 4\IEEEauthorrefmark{1}}
\IEEEauthorblockA{\IEEEauthorrefmark{1} Affiliation 1}
\IEEEauthorblockA{\IEEEauthorrefmark{2} Affiliation 2}
\IEEEauthorblockA{\IEEEauthorrefmark{3} Affiliation 3}
}
\end{document}
我怎样才能在作者一和作者二旁边添加另一个符号,并在第一页上添加脚注“这些作者的贡献相同”?
答案1
我使用了下一个脚注符号(该系列中的第四个是\textsection
):
\documentclass[conference,a4paper]{IEEEtran}
\textheight=8cm % just to make a smaller picture, remove it
\begin{document}
\title{My title}
\author{%
\IEEEauthorblockN{%
Author One\IEEEauthorrefmark{1}\textsuperscript{\textsection},
Author 2\IEEEauthorrefmark{2}\textsuperscript{\textsection},
Author 3\IEEEauthorrefmark{3} and
Author 4\IEEEauthorrefmark{1}%
}%
\IEEEauthorblockA{\IEEEauthorrefmark{1} Affiliation 1}%
\IEEEauthorblockA{\IEEEauthorrefmark{2} Affiliation 2}%
\IEEEauthorblockA{\IEEEauthorrefmark{3} Affiliation 3}%
}
\maketitle
\begingroup\renewcommand\thefootnote{\textsection}
\footnotetext{Equal contribution}
\endgroup
\end{document}