![使用 IEEEtran 文档类时如何对齐作者块](https://linux22.com/image/377082/%E4%BD%BF%E7%94%A8%20IEEEtran%20%E6%96%87%E6%A1%A3%E7%B1%BB%E6%97%B6%E5%A6%82%E4%BD%95%E5%AF%B9%E9%BD%90%E4%BD%9C%E8%80%85%E5%9D%97.png)
当我使用以下脚本时,第二行没有正确对齐:
\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
按照上面所示的方式重写您的字段。