我想将研究所名称写成两行。但是,当我尝试使用“\\”时,整个对齐方式发生了变化

我想将研究所名称写成两行。但是,当我尝试使用“\\”时,整个对齐方式发生了变化

我想将学院名称写成两行。但是当我尝试使用“\\”时,整个对齐方式就被改变了。

在此处输入图片描述

我想将“计算机科学系”保留在第一行,将“和软件工程”保留在第二行。谢谢您的帮助。

答案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}

相关内容