使用 IEEEtran 文档类时如何对齐作者块

使用 IEEEtran 文档类时如何对齐作者块

当我使用以下脚本时,第二行没有正确对齐:

\documentclass[conference]{IEEEtran}
\begin{document}
\title{TITLE}
\author{
\IEEEauthorblockN{author 1}
\IEEEauthorblockA{\textit{Dept. of Computer Engineering} \\
\textit{A University}\\
City, Country \\
e-mail}
\and
\IEEEauthorblockN{author 2}
\IEEEauthorblockA{\textit{Dept. of Electrical and Electronics Engineering} \\
\textit{A University}\\
City, Country \\
e-mail}
\and
\IEEEauthorblockN{author 3}
\IEEEauthorblockA{\textit{Dept. of Computer Engineering} \\
\textit{A University}\\
City, Country \\
e-mail}
\and
\IEEEauthorblockN{author 4}
\IEEEauthorblockA{\textit{Dept. of Computer Engineering} \\
\textit{A University}\\
City, Country \\
e-mail}
\and
\IEEEauthorblockN{author 5}
\IEEEauthorblockA{\textit{Dept. of Computer Engineering} \\
\textit{A University}\\
City, Country \\
e-mail}
\and
}
\maketitle
\end{document}

对齐方式如下:

在此处输入图片描述

我怎样才能解决这个问题?

答案1

在软件包的文档中 IEEEtran您可以在第 5 页找到:

如果作者超过三位且/或文本太宽,无法在整个页面上显示,请使用备用长格式:

\author{
\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1},
Homer Simpson\IEEEauthorrefmark{2},
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 Aca
demy, 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}}

这使:

在此处输入图片描述

这意味着您应该author按照上面所示的方式重写您的字段。

相关内容