![Autoren zentrieren](https://rvso.com/image/390898/Autoren%20zentrieren.png)
Ich bin neu bei Latex und Overleaf und habe ein Problem mit der Ausrichtung des Autorenabschnitts. Mein Code lautet:
\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}
Leider sieht die Ausgabe so aus
Wie kann ich das ausrichten?
Vielen Dank im Voraus
Antwort1
Aus der Dokumentation: „...Für Dokumente mit drei oder weniger Zugehörigkeiten ist ein mehrspaltiges Format vorzuziehen“, daher sollten Sie die Verwendung mehrerer Spalten in Betracht ziehen, um dem vorgeschriebenen Stil zu entsprechen (obwohl die Ausgabe in diesem Fall falsch aussieht). Um eine einzelne Spalte zu erhalten, müssen Sie lediglich die Befehle entfernen (diese erstellen Spalten) und nach jedem Zugehörigkeitsblock \and
zusätzliche Zeilenumbrüche hinzufügen :\\
\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}
Bearbeiten: Die Klassendokumentation gibt ein alternatives Autorenlayout mit Fußnotensymbolen zum Verknüpfen von Autoren und Zugehörigkeiten an, das Sie möglicherweise berücksichtigen möchten. Mit Ihren Autoren:
\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}
}