如何将 ieeeconf 的从属关系保持在一行中

如何将 ieeeconf 的从属关系保持在一行中

我怎样才能减少作者块之间的距离,以使我的三个隶属关系保持在一行上并且不发生中断?

以下是我现在所拥有的:

在此处输入图片描述

MWE

\documentclass[conference]{IEEEtran}

%%%%%%%%%%for conference header
\makeatletter
\let\old@ps@headings\ps@headings
%\let\old@ps@IEEEtitlepagestyle\ps@IEEEtitlepagestyle
\def\confheader#1{%
    % for all pages except the first
    \def\ps@headings{%
        \old@ps@headings%
        \def\@oddhead{\strut\hfill#1\hfill\strut}%
        \def\@evenhead{}%
    }%
    % for the first page
    \def\ps@IEEEtitlepagestyle{%
        \old@ps@IEEEtitlepagestyle%
        \def\@oddhead{}%
        \def\@evenhead{}%
    }%
    \ps@headings%
}
\makeatother

\confheader{%
    \parbox{20cm}{nth International Conference on ...}
}
%%%%%%%%%%for conference header

\makeatletter

%%%%%%%%%%for copyright notice
\def\ps@IEEEtitlepagestyle{%
    \def\@oddfoot{\mycopyrightnotice}%
    \def\@evenfoot{}%
}
\def\mycopyrightnotice{%
    {\footnotesize  978-1-....-...-./../\$31.00 \textcopyright2017 IEEE\hfill}% <--- Change here
    \gdef\mycopyrightnotice{}% just in case
}
%%%%%%%%%%%

\def\thmheadbrackets#1#2#3{%
    \thmname{#1}\thmnumber{\@ifnotempty{#1}{ }\@upn{#2}}%
    \thmnote{ {\the\thm@notefont[#3]}}}
\makeatother

\makeatletter
\newcommand{\algrule}[1][.2pt]{\par\vskip.5\baselineskip\hrule height #1\par\vskip.5\baselineskip}
\makeatother

%\linenumbers

\begin{document}
\title{The title}
\author{\IEEEauthorblockN{X. Xxxxxxxxxxx}
\IEEEauthorblockA{Dept. of Electrical and Computer Engineering\\
University of EEEEEEE\\
CC, uuuuu iii GGG\\
Email: [email protected]}
\and
\IEEEauthorblockN{C. C. C. Ccccccc}
\IEEEauthorblockA{cccccccc ccccccccccccccccccccccccc ccccccc\\
WWWWWW University of Technology\\
CCCCCC, WWWW\\
Email: [email protected]}
\and
\IEEEauthorblockN{A. Aaaaaaaa}
\IEEEauthorblockA{pppppppppppppppppppppppppppppppp\\
    NNNNNNNNNNNN University\\
    YY, XXX\\
    Email: [email protected]}
}

\maketitle

\begin{abstract}
...\end{abstract}

\IEEEpeerreviewmaketitle

\section{Introduction}

\end{document}

相关内容