在 Latex 中以 3 位作者为中心?

在 Latex 中以 3 位作者为中心?

我的论文有 3 位具有共同隶属关系的不同作者。我尝试使用centering命令将第三作者位置居中,但不起作用。这是 IEEE 会议 latex 版本。我使用了以下脚本:

    \begin{document}

\title{Paper Title*\\
{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
should not be used}
\thanks{Identify applicable funding agency here. If none, delete this.}
}
\author{\IEEEauthorblockN{\textsuperscript{}Ali}
\IEEEauthorblockA{\textit{School of Engineering and Information Technology } \\
\textit{The University of New South Wales (UNSW) }\\
 Australia \\
}
\and
\IEEEauthorblockN{\textsuperscript{}Abbass}
\IEEEauthorblockA{\textit{School of Engineering and Information Technology} \\
\textit{The University of New South Wales (UNSW) }\\
 Australia \\
}
\and
\centering
\IEEEauthorblockN{\textsuperscript{} sayed}
\IEEEauthorblockA{\textit{School of Engineering and Information Technology} \\
\textit{The University of New South Wales }\\
 Australia \\
}

}
\maketitle
\end{document}

在此处输入图片描述

答案1

资料来源:IEEE 的 bare_conf.tex

对于超过三个附属机构,或者它们都不适合页面宽度,请使用以下替代格式:

\begin{document}

\title{Paper Title*\\
{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
should not be used}
\thanks{Identify applicable funding agency here. If none, delete this.}
}
\author{\IEEEauthorblockN{Ali\IEEEauthorrefmark{1},
Abbass\IEEEauthorrefmark{2},
sayed\IEEEauthorrefmark{3},
}
\IEEEauthorblockA{\IEEEauthorrefmark{1}\textit{School of Engineering and Information Technology } \\
\textit{The University of New South Wales (UNSW) }\\
 Australia \\}
\IEEEauthorblockA{\IEEEauthorrefmark{2}\textit{School of Engineering and Information Technology} \\
\textit{The University of New South Wales (UNSW) }\\
 Australia \\
}
\IEEEauthorblockA{\IEEEauthorrefmark{3}\textit{School of Engineering and Information Technology} \\
\textit{The University of New South Wales }\\
 Australia \\
}
}
\maketitle

\end{document}

在此处输入图片描述

相关内容