我想将作者区块对齐到行和列。我想要的输出如下所示:
Author 1 Author 2
Affiliation 1 Affiliation 2
Author 3 Author4
Affiliation 3 Affiliation 4
使用 实现此目的的最佳方法是什么IEEEtran
?我试过\author \and
,但它也无法对齐列。我们可以不使用 来实现此目的吗minipage
?
答案1
您可以使用选项conference
或。但是,如果您的作者姓名和所属组太小,则四个组将水平放置:peerreviewca
\and
\documentclass[conference]{IEEEtran}
\begin{document}
\title{Title}
\author{%
Author 1\\Affilation 1
\and Author 2\\Affiliation 2
\and Author 3\\Affiliation 3
\and Author 4\\Affiliation 4
}
\maketitle
\end{document}
但是你可能只是假装需要每个组有更多的水平宽度:
\documentclass[conference]{IEEEtran}
\begin{document}
\title{Title}
\author{%
\makebox[.5\linewidth]{Author 1}\\Affilation 1\\
\and \makebox[.5\linewidth]{Author 2}\\Affiliation 2\\
\and \makebox[.5\linewidth]{Author 3}\\Affiliation 3\\
\and \makebox[.5\linewidth]{Author 4}\\Affiliation 4\\
}
\maketitle
\end{document}