在 IEEEtran 中垂直对齐作者姓名

在 IEEEtran 中垂直对齐作者姓名

我正在撰写一篇有 6 位作者的 IEEE 论文,但 Latex 不能很好地垂直对齐姓名:

在此处输入图片描述

我如何才能确保作者姓名更好地垂直对齐?

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{amsmath,amssymb,amsfonts}

\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}

\begin{document}


\title{Title of the Paper}

\author{\IEEEauthorblockN{Emil Rijcken}
\IEEEauthorblockA{\textit{Jheronimus Academy of Data Science} \\
\textit{Eindhoven University of Technology}\\
Eindhoven, The Netherlands \\
[email protected]}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
}
    
    
    \maketitle
    
    \begin{abstract}

答案1

以下是根据您的代码改编的工作示例(我删除了不相关的内容):

\documentclass[conference]{IEEEtran}

\begin{document}

\title{Title of the Paper}

\author{\IEEEauthorblockN{Emil Rijcken}
\IEEEauthorblockA{\textit{Jheronimus Academy of Data Science} \\
\textit{Eindhoven University of Technology}\\
Eindhoven, The Netherlands \\
[email protected]}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Abcd Efghijk}
\IEEEauthorblockA{\textit{Jheronimus Academy of Data Science} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Eindhoven, The Netherlands\\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
\and
\IEEEauthorblockN{Author}
\IEEEauthorblockA{\textit{Department} \\
\textit{University}\\
Location \\
email address}
}

\maketitle
    
\begin{abstract}
Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum.
Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum.
Lorem ipsum lorem ipsum.
\end{abstract}

\section{title}
\end{document}

你会得到这个:

在此处输入图片描述

这不太美丽。

IEEEtran班级手册说了这样的话(参见第 IV B 2 节,第 5 页):

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

并给出了一个例子。这里我根据你的代码做了调整:

\documentclass[conference]{IEEEtran}

\begin{document}

\title{Title of the Paper}

\author{\IEEEauthorblockN{Michael Shell\IEEEauthorrefmark{1},
Homer Simpson\IEEEauthorrefmark{2}, James K irk\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 Academy, 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}}  
   
\maketitle
    
\begin{abstract}
Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum.
Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum. Lorem ipsum lorem ipsum.
Lorem ipsum lorem ipsum.
\end{abstract}

\section{title}
\end{document}

其布局风格如下:

在此处输入图片描述

因此,如果有三位以上的作者,请使用后一种布局。

相关内容