如何在 Latex 文件中写入“作者同样贡献”?

如何在 Latex 文件中写入“作者同样贡献”?

IEEEtrans我正在使用会议模式撰写论文(http://www.ieee.org/conferences_events/conferences/publishing/templates.html

我注意到在一些论文中人们会注意到“作者做出了同等贡献”,就像这样: 在此处输入图片描述

那么如何为几个特定的​​作者编写这个?你能给我一个代码示例吗?我在谷歌上搜索过,但没有找到合适的答案。

非常感谢,

答案1

由于您没有 MWE,我假设您正在使用IEEEtran会议模式。在这种情况下,您无法使用,\thanks因为它被故意禁用了。

不过,您也可以简单地添加另一条IEEEauthorblockA评论。

梅威瑟:

\documentclass[conference]{IEEEtran}
\usepackage{lipsum}

\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1}\IEEEauthorrefmark{5}, Homer Simpson\IEEEauthorrefmark{2}\IEEEauthorrefmark{5}, James Kirk\IEEEauthorrefmark{3}, Montgomery Scott\IEEEauthorrefmark{3} and Eldon Tyrell\IEEEauthorrefmark{4}}
\IEEEauthorblockA{\IEEEauthorrefmark{1}School of Electrical and Computer Engineering\\
Georgia Institute of Technology, Atlanta, Georgia 30
332--0250\\
Email: [email protected]}
\IEEEauthorblockA{\IEEEauthorrefmark{2}Twentieth Century Fox, Springfield, USA\\
Email: [email protected]}
\IEEEauthorblockA{\IEEEauthorrefmark{3}Starfleet Academy, San Francisco, California 96678-2391\\
Telephone: (800) 555--1212, Fax: (888) 555--1212}
\IEEEauthorblockA{\IEEEauthorrefmark{4}Tyrell Inc.,123 Replicant Street, Los Angeles, California 90210--4321}
\IEEEauthorblockA{\IEEEauthorrefmark{5} All THESE authors contributed something}}


\title{Test Title\footnote{All authors are test}}

\begin{document}
\maketitle
\lipsum
\end{document}

在此处输入图片描述

相关内容