使用 IEEEtran 我想要一个拥有两个附属机构的作者。
这是代码:
\author{
\IEEEauthorblockN{Name Surname}
\IEEEauthorblockA{Faculty of Something\\
University of Somewhere\\
Email: [email protected]}
\and
\IEEEauthorblockA{Faculty of Something and\\Something Else\\
University of Some Other Place\\
Email: [email protected]}
}
这是输出:
我希望名称位于顶部中央,两个附属机构位于下方,并在同一行左右两侧均匀居中。
你能帮我吗?
答案1
作者部分以表格形式实现,尽管格式特殊。您可以将一个表格放在另一个表格中。
您甚至可以添加第三列以专门用于“and”。
\documentclass[conference]{IEEEtran}
\title{Much Ado about Nothing}
\author{
\IEEEauthorblockN{Name Surname}
\IEEEauthorblockA{\begin{tabular}{cc}
Faculty of Something & and Something Else\\
University of Somewhere & University of Some Other Place\\
Email: [email protected] & Email: [email protected]
\end{tabular}}
}
\begin{document}
\maketitle
\end{document}