将作者居中对齐

将作者居中对齐

我是 Latex 和 Overleaf 的新手,在作者部分的对齐方面遇到了问题。我的代码是:

\documentclass[10pt,conference]{IEEEtran} 
\usepackage{subfigure,times,graphics,mathptm,epsfig,amsmath,xspace,endnotes,pifont,multirow,rotating,listings,amssymb,algorithmic,color,caption,nicefrac,adjustbox,todonotes,tabularx,mathtools, algorithmic,algorithm, soul}
\begin{document}
\bibliographystyle{IEEEtran}
\title{MESON: Facilitating Cross-Slice Communications \\ for Enhanced Service Delivery at the Edge}
\author{
\IEEEauthorblockN{Konstantinos Katsaros, Vasileios Glykantzis}
\IEEEauthorblockA{Intracom Telecom, Greece\\
\{konkat, vasgl\}@intracom-telecom.com}
\and
\IEEEauthorblockN{Panagiotis Papadimitriou, Georgios
\IEEEauthorblockA{University of Macedonia, Greece\\
\{papadimitriou, papathanail\}@uom.edu.gr}
\and
\IEEEauthorblockN{Dimitrios Dechouniotis, Symeon Papavassiliou}
\IEEEauthorblockA{National Technical University of Athens, Greece\\
\{ddechou@netmode, papavas@mail\}.ntua.gr}
}
\maketitle
\end{document}

不幸的是输出是这样的作者部分

我该如何调整呢?

先感谢您

答案1

从文档中“...对于隶属关系不超过三个的论文,多列格式是首选”,因此您可能需要考虑使用多列以符合规定的样式(尽管在这种情况下输出看起来确实不对)。获得单列很简单,只需删除命令(这些命令会创建列),并在每个隶属关系块后\and添加额外的换行符:\\

\documentclass[10pt,conference]{IEEEtran} 
\usepackage{subfigure,times,graphics,mathptm,epsfig,amsmath,xspace,endnotes,pifont,multirow,rotating,listings,amssymb,algorithmic,color,caption,nicefrac,adjustbox,tabularx,mathtools, algorithmic,algorithm, soul}
\begin{document}
\bibliographystyle{IEEEtran}
\title{MESON: Facilitating Cross-Slice Communications \\ for Enhanced Service Delivery at the Edge}
\author{
\IEEEauthorblockN{Konstantinos Katsaros, Vasileios Glykantzis}
\IEEEauthorblockA{Intracom Telecom, Greece\\
\{konkat, vasgl\}@intracom-telecom.com} \\
% \and
\IEEEauthorblockN{Panagiotis Papadimitriou, Georgios}
\IEEEauthorblockA{University of Macedonia, Greece\\
\{papadimitriou, papathanail\}@uom.edu.gr} \\
% \and
\IEEEauthorblockN{Dimitrios Dechouniotis, Symeon Papavassiliou}
\IEEEauthorblockA{National Technical University of Athens, Greece\\
\{ddechou@netmode, papavas@mail\}.ntua.gr}
}
\maketitle
\end{document}

输出

编辑:类文档指定了另一种作者布局,使用脚注符号来链接您可能需要考虑的作者和所属机构。与您的作者一起:

\author{
    \IEEEauthorblockN{Konstantinos Katsaros\IEEEauthorrefmark{1}, Vasileios Glykantzis\IEEEauthorrefmark{1},
    Panagiotis Papadimitriou\IEEEauthorrefmark{2}, Georgios\IEEEauthorrefmark{2},\\
    Dimitrios Dechouniotis\IEEEauthorrefmark{3} and  Symeon Papavassiliou\IEEEauthorrefmark{3}}
    \IEEEauthorblockA{\IEEEauthorrefmark{1}University of Macedonia, Greece\\
    \{papadimitriou, papathanail\}@uom.edu.gr}
    \IEEEauthorblockA{\IEEEauthorrefmark{2}University of Macedonia, Greece\\
    \{papadimitriou, papathanail\}@uom.edu.gr}
    \IEEEauthorblockA{\IEEEauthorrefmark{3}National Technical University of Athens, Greece\\
    \{ddechou@netmode, papavas@mail\}.ntua.gr}
}

输出: 输出2

相关内容