以 IEEE 格式对齐所有六位作者的信息

以 IEEE 格式对齐所有六位作者的信息

我正在尝试写下所有六位作者及其各自的信息,但面临两个问题。

  1. 我无法将第一作者信息与第四作者信息、第二作者信息与第五作者信息等等对齐。
  2. 最后两个系,计算机与应用科学学院,距离太近了

这是图片

这是我的代码

\author{\IEEEauthorblockN{First Author Name}
\IEEEauthorblockA{\textit{Department of CSE} \\ 
\textit{Some University, Some Country}\\
City, Country \\
Email}
\and
\IEEEauthorblockN{Second Author Name}
\IEEEauthorblockA{\textit{Department of CSE} \\
\textit{Some University, Some Country}\\
City, Country \\
Email}
\and
\IEEEauthorblockN{Third Author Name}
\IEEEauthorblockA{\textit{Department of CSE} \\
\textit{Some University, Some Country}\\
City, Country \\
Email}
\linebreakand % <------------- \and with a line-break
\and
\IEEEauthorblockN{4th Author Name}
\IEEEauthorblockA{\textit{Department of CSE} \\
\textit{Some University, Some Country}\\
City, Country \\
Email}
\and
\IEEEauthorblockN{Fifth Author Name}
\IEEEauthorblockA{\textit{College of Computing \& Applied Sciences}\\ \vspace{0.01cm}
\textit{Universiti Malaysia Pahang}\\
Pekan, Malaysia \\
Email}
\and
\IEEEauthorblockN{Sixth Author Name}
\IEEEauthorblockA{\textit{College of Computing \& Applied Sciences}\\ \vspace{0.01
cm}
\textit{Universiti Malaysia Pahang}\\
Pekan, Malaysia \\
Emai}
} 

我该如何修复这些问题,让其看起来更美观?我尝试了几乎所有能找到的方法,但都无济于事,只会让情况变得更糟。

答案1

如图所示"C:\texlive\2023\texmf-dist\doc\latex\ieeetran\bare_conf.tex"

% author names and affiliations
% use a multiple column layout for up to three different
% affiliations
\author{\IEEEauthorblockN{Michael Shell}
\IEEEauthorblockA{School of Electrical and\\Computer Engineering\\
Georgia Institute of Technology\\
Atlanta, Georgia 30332--0250\\
Email: http://www.michaelshell.org/contact.html}
\and
\IEEEauthorblockN{Homer Simpson}
\IEEEauthorblockA{Twentieth Century Fox\\
Springfield, USA\\
Email: [email protected]}
\and
\IEEEauthorblockN{James Kirk\\ and Montgomery Scott}
\IEEEauthorblockA{Starfleet Academy\\
San Francisco, California 96678--2391\\
Telephone: (800) 555--1212\\
Fax: (888) 555--1212}}


% for over three affiliations, or if they all won't fit within the width
% of the page, use this alternative format:
% 
%\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 30332--0250\\ Email: see http://www.michaelshell.org/contact.html}
%\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}}

作者姓名和所属机构使用多列布局最多三个不同的隶属关系超过三附属机构,或者如果它们都不适合页面宽度,请使用此替代格式

在您的演示中,列数大于三。您应​​该使用其他格式。

\documentclass[conference]{IEEEtran}
\begin{document}
\title{title}
\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 30332--0250\\ Email: see http://www.michaelshell.org/contact.html}
\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
\end{document}

在此处输入图片描述

相关内容