IEEEtran 会议模板中具有共同隶属关系的多位作者简单作者姓名

IEEEtran 会议模板中具有共同隶属关系的多位作者简单作者姓名

我有一篇论文,其中有 4 位作者,他们有共同的隶属关系。我想提及他们的姓名,然后是单个隶属关系,后面是个人邮件地址。我已经包含了我拥有的代码。我正在使用 TexStudio,并且是 LaTeX 新手。请帮助我,告诉我 \author 的正确用法。
我不希望每个作者都标有上部索引。(只是一个简单的名字)

\documentclass[conference]{IEEEtran}

\begin{document}
\title{An Important Conference Contribution}

\author{\IEEEauthorblockN{Author One\IEEEauthorrefmark{1},
Author Two\IEEEauthorrefmark{2}, Author Three\IEEEauthorrefmark{3} and
Author Four\IEEEauthorrefmark{4}}
\IEEEauthorblockA{Department of Whatever,
Whichever University\\
Wherever\\
Email: \IEEEauthorrefmark{1}[email protected],
\IEEEauthorrefmark{2}[email protected],
\IEEEauthorrefmark{3}[email protected],
\IEEEauthorrefmark{4}[email protected]}}
\maketitle

\end{document}

答案1

您可以删除\IEEEauthorrefmark{X}。这将创建上方的符号/索引:

\documentclass[conference]{IEEEtran}

\begin{document}
\title{An Important Conference Contribution}

\author{\IEEEauthorblockN{Author One,
Author Two, Author Three and
Author Four}
\IEEEauthorblockA{Department of Whatever,
Whichever University\\
Wherever\\
Email: [email protected],
[email protected],
[email protected],
[email protected]}}
\maketitle

\end{document}

输出:

在此处输入图片描述

相关内容