有人知道这个“\maketitle”错误出了什么问题吗?

有人知道这个“\maketitle”错误出了什么问题吗?

在此处输入图片描述

我是 latex 的新用户,好像缺少一个“}”,但我不知道应该把它插入哪里

代码:

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{ctex}
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
    T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}

\title{家具布局组合算法\\
{\footnotesize \textsuperscript{*}Note: Sub-titles are not captured in Xplore and
should not be used}
\thanks{Identify applicable funding agency here. If none, delete this.}
}

\author{\IEEEauthorblockN{1\textsuperscript{st} YunXiang Ma}
\IEEEauthorblockA{\textit{College of Science} \\
\textit{Beijing Forestry University}\\
Beijing China \\
[email protected]}
\and
\IEEEauthorblockN{2\textsuperscript{nd} Yan Zhuang}
\IEEEauthorblockA{\textit{College of Letters & Science} \\
\textit{University of Wisconsin, Madison}\\
Madison, United States \\
email address or ORCID}
\and
\IEEEauthorblockN{3\textsuperscript{rd} ZhanYi Zhou}
\IEEEauthorblockA{\textit{College of Science} \\
\textit{Beijing Forestry University}\\
Beijing China \\
}
\and
\IEEEauthorblockN{4\textsuperscript{th} YaXuan Liu}
\IEEEauthorblockA{\textit{College of Science} \\
\textit{Beijing Forestry University}\\
Beijing China \\
}
\and
\IEEEauthorblockN{5\textsuperscript{th} HongJun Li*}
\IEEEauthorblockA{\textit{College of Science} \\
\textit{Beijing Forestry University}\\
Beijing China \\
[email protected]}
}

\maketitle

\end{document}

答案1

\IEEEauthorblockN{2\textsuperscript{nd} Yan Zhuang}
\IEEEauthorblockA{\textit{College of Letters & Science} \\
\textit{University of Wisconsin, Madison}\\
Madison, United States \\
email address or ORCID}

应该

\IEEEauthorblockN{2\textsuperscript{nd} Yan Zhuang}
\IEEEauthorblockA{\textit{College of Letters \& Science} \\
\textit{University of Wisconsin, Madison}\\
Madison, United States \\
email address or ORCID}

您需要一个“&”字符\&,而不是对齐点。

相关内容