著者を中央揃えにする

著者を中央揃えにする

私は 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

ドキュメントには、「...所属が 3 つ以下の論文では、複数列形式が推奨されます」と記載されているため、規定のスタイルに合わせるために複数の列を使用することを検討してください (ただし、この例では出力が間違って見えます)。 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

関連情報