IEEE 附属机构

IEEE 附属机构

我正在使用 IEEE 格式撰写论文。我有来自两个机构的 4 位作者,因此我需要隶属关系块。这就是我想要的样子:

Author 1*, Author 2#, Author 3#, Author 4*
Affiliation 1, {1,4}@abc.com
Affiliation 2, {2,3}@def.com

请注意,第 1 和第 4 个来自一个机构,第 2 和第 3 个来自另一个机构。

当然,一切都居中。

这个怎么做?

答案1

我找到了解决方案。操作方法如下:

\documentclass[conference]{IEEEtran}
\author{
    \IEEEauthorblockN{Author1\IEEEauthorrefmark{1}, Author2\IEEEauthorrefmark{2}, Author3\IEEEauthorrefmark{2}, Author4\IEEEauthorrefmark{1}}
    \IEEEauthorblockA{\IEEEauthorrefmark{1}Institution1
    \\\{1, 4\}@abc.com}
    \IEEEauthorblockA{\IEEEauthorrefmark{2}Institution2
    \\\{2, 3\}@def.com}
}
\title{A title}
\begin{document}
\maketitle
\end{document}

代码输出

相关内容