對齊作者中心

對齊作者中心

我是 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

相關內容