在 IEEEtran 中将多位作者对齐到同一行

在 IEEEtran 中将多位作者对齐到同一行

IEEE PDF

论文中有两个作者区块,但它们跨越多行。相反,我希望它们两个处于同一水平线上。

代码如下:

\begin{document}
\title{\huge Preparation of Papers in Two-Column Format\\
for icma2015 Proceedings Published by IEEE$^{*}$\footnoterule\thanks{$^{*}$This work is partially
supported by NSF Grant \#2003168 to H. Simpson and CNSF Grant \#9972988 to M. King}}

% author names and affiliations
\author{\authorblockN{Karen Garfield and Mickey Mouse}
\authorblockA{\textit{Department of Nuclear Power Engineering}\\
\textit{University of Northland}\\
\textit{Iqaluit, Nunavut, M2M 6H6, Canada}\\
\textit{\{kgarfield, mmouse\}@unorthland.ca}\\}%
\and
\authorblockN{Monkey King, Bajie Zhu, and Seng Tang}
\authorblockA{\textit{Department of Intelligent Robotics}\\
\textit{University of Huaguoshan}\\
\textit{Huaguoshan, Jileshijie Province, China}\\
\textit{[email protected]}\\}
}

有什么方法可以减少这两个作者块的宽度并使它们处于同一水平。

答案1

是的,你只需要使用 IEEE 定义的命令:

\documentclass[conference,compsoc]{IEEEtran}

\title{Some meaningless title which only serves to illustrate my point}

\author{
\IEEEauthorblockN{Karen Garfield and Mickey Mouse}
\IEEEauthorblockA{Department of Nuclear Power Engineering\\
    University of Northland\\
    Iqaluit, Nunavut, M2M 6H6, Canada\\
    \{kgarfield, mmouse\}@unorthland.ca}\\%
\and
\IEEEauthorblockN{Monkey King, Bajie Zhu, and Seng Tang}
\IEEEauthorblockA{Department of Intelligent Robotics\\
    University of Huaguoshan\\
    Huaguoshan, Jileshijie Province, China\\
    [email protected]\\}
}

\begin{document}
\maketitle

\end{document}

在此处输入图片描述

相关内容