\maketitle 控制序列错误

\maketitle 控制序列错误

我正在准备一份 SIGCHI 出版物,并试图使用他们的文档类文件(发布这里),但每当我尝试编译我的文档时,我都会收到以下错误:

./test.tex:18: Undefined control sequence. 
<argument> ... single spaced. \newline \textcolor 
{red}{Every submission wil...
l.18 \maketitle

我在下面提供了一份虚拟文档。我将其放在了\maketitle正确的位置并包含了所有必要的参数(标题和作者),因此我不确定发生了什么。

\documentclass{sigchi}
\usepackage{times}
\pagenumbering{arabic}  % Arabic page numbers for submission.  Remove this line to eliminate page numbers for the camera ready copy
\title{The Title}
\numberofauthors{2}
\author{
   \alignauthor Author 1
     \affaddr{Affiliation}\\
     \affaddr{Affiliation}\\
    \email{[email protected]}
   \alignauthor Author 2
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
}

\begin{document}
\maketitle
\abstract{This is the abstract}
\keywords{Put author keywords here}
\classification{The ACM Classification keywords here.}

\section{Introduction}
blah
\end{document}

答案1

正如 David 指出的那样,样式文件需要该color包。一旦我将其添加\usepackage{color}到序言中,\maketitle它就可以正常工作。

相关内容