在 overleaf 中以 ieee 格式书写作者的格式

在 overleaf 中以 ieee 格式书写作者的格式

我的论文中有四位作者,我希望作者的格式为第一行中有三位作者,第二行中有第四位作者,位于第二位作者正下方:

First Last 1              First Last 2              First Last 3
Affiliation 1             Affiliation 2             Affiliation 3
[email protected]    [email protected]    [email protected]

                          First Last 4
                          Affiliation 4
                          [email protected]

在 overleaf 中如何实现这一点?我可以在两行中获取 2 个作者,但不能采用这种格式。任何帮助都非常感谢。

答案1

这可以通过以下环境完成tabular

\documentclass{article}

\begin{document}
    \begin{tabular}{l@{\hskip 1cm} l@{\hskip 1cm} l}
        First Last 1 &  First Last 2 & First Last 3\\
        Affiliation 1 & Affiliation 2 & Affiliation 3\\
        [email protected] & [email protected] & [email protected]\\
        \\
        & First Last 4 \\
        & Affiliation 4\\
        & [email protected]\\
    \end{tabular}
\end{document}

请注意,可以使用 参数调整列之间的间距hskip,并且可以通过添加另一个空白行或(如果需要)类似 的内容来更改两行之间的间距vspace
此处的输出将如下所示:

在此处输入图片描述

相关内容