작성자 센터 정렬

작성자 센터 정렬

저는 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개 이하의 소속이 있는 논문의 경우 다중 열 형식이 선호됩니다"이므로 규정된 스타일을 유지하기 위해 다중 열을 사용하는 것을 고려할 수 있습니다(이 경우 출력이 잘못 보이지만). . 단일 열을 얻는 것은 \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

관련 정보