IEEEtran 七位作者

IEEEtran 七位作者

我看见这个问题展示了如何向一篇 Ieee 论文添加 6 位作者。

我该如何添加七位作者?我希望第一行有 4 位作者,第二行有 3 位作者。以下是我目前所得到的:

\documentclass[conference]{IEEEtran}
\usepackage{lipsum} %<---- For dummy text
\title{Some IEEE paper}


\author{
\IEEEauthorblockN{Author One}
\IEEEauthorblockA{
Some University\\
[email protected]}\\  
\IEEEauthorblockN{Author Five}
\IEEEauthorblockA{
Some University\\
[email protected]}
\and
\IEEEauthorblockN{Author Two}
\IEEEauthorblockA{Some University\\
[email protected]}\\
\IEEEauthorblockN{Author Six}
\IEEEauthorblockA{Some University\\
[email protected]}
\and
\IEEEauthorblockN{Author Three}
\IEEEauthorblockA{Some University\\
[email protected]}\\              
\IEEEauthorblockN{Author Seven}
\IEEEauthorblockA{Some University\\
[email protected]}
\and
\IEEEauthorblockN{Author Four}
\IEEEauthorblockA{Some University\\
[email protected]}
}


\begin{document}
\maketitle


\begin{abstract}
\lipsum[1]
\end{abstract}

\lipsum[2-6]
\end{document}

在此处输入图片描述

我怎样才能使第一行的作者居中,第二行的作者也居中?换句话说,我不希望两行的作者垂直对齐,而是希望它们在各自的行中居中?

此外,这是以会议风格添加七位作者的正确方法吗?

答案1

我还没有深入研究他们是如何做到的——但是RLDM 模板似乎做了你想做的事(也是 Jacopo 对 5 位作者的想法)。

请注意,他们似乎使用 /And 来表示下一位作者,并使用 \AND 来强制换行。

屏幕截图显示 7 位作者

相关内容