问题在于,第一列作者未位于第一列文本的中央。第二列作者的对齐方式正确。参见下图。
我一直在使用的代码你可以在下面看到
\documentclass[conference]{IEEEtran}
\usepackage{lipsum}
\title{Some IEEE paper}
\author{
\IEEEauthorblockN{student Studentson, student Studentson, student Studentson}
\IEEEauthorblockA{School of Engineering\\
England Institute of Technology\\
London, England\\
(student1, student2, student3) @email.com}\\
\and
\IEEEauthorblockN{Sir. John Doe}
\IEEEauthorblockA{School of Engineering\\
England Institute of Technology\\
London, England\\
[email protected] }\\
}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\lipsum[2-6]
\end{document}
谢谢!