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}