答案1
您不能直接\\
在里面插入\textit
来换行(\textit{<stuff> \\ <more stuff>}
)。使用\textit{<stuff>} \\ \textit{<more stuff>}
\documentclass[conference]{IEEEtran}
\usepackage{lipsum}
\title{Some IEEE paper}
\author{
\IEEEauthorblockN{Author One}
\IEEEauthorblockA{%
Some University \\
[email protected]}
\and
\IEEEauthorblockN{Author Two}
\IEEEauthorblockA{%
\textit{Department of Computer Science} \\
\textit{and Software Engineering} \\
\textit{University X} \\
[email protected]}
\and
\IEEEauthorblockN{Author Three}
\IEEEauthorblockA{%
Some University\\
[email protected]}
}
\begin{document}
\maketitle
\begin{abstract}
\lipsum[1]
\end{abstract}
\lipsum[2-6]
\end{document}