LaTeX 错误:环境关键字未定义

LaTeX 错误:环境关键字未定义

我正在使用一个会议模板,除了“关键词”之外,一切都正常,这很奇怪,我以前没有想到过。通常我不会对关键词使用特定的包。代码如下:\begin{keywords} one, two, three, four \end{keywords}。然而,此时错误如下:

LaTeX Error: Environment keywords undefined

如果你能帮助我解决这个问题我会非常高兴。穆罕默德。

答案1

定义自己的\keywords宏:

在此处输入图片描述

\documentclass{article}
\title{My title}
\author{My author}
\providecommand{\keywords}[1]{\textbf{\textit{Index terms---}} #1}
\begin{document}
\maketitle
\begin{abstract}
Lorem ipsum\ldots
\end{abstract}
\keywords{one, two, three, four}

\section{Introduction}
\end{document}

我使用\providecommand而不是来\newcommand适应您使用的文档类已经定义的可能性\keywords\providecommand只有在尚未定义的情况下才会定义它。

答案2

\listfiles
\documentclass{article}
\usepackage{spconf}

\begin{document}
foo
%
\begin{keywords}
One, two, three, four, five
\end{keywords}

\end{document}

来自日志文件的文件:

 *File List*
 article.cls    2007/10/19 v1.4h Standard LaTeX document class
  size10.clo    2007/10/19 v1.4h Standard LaTeX file (size option)
  spconf.sty    
  ot1ptm.fd    2001/06/04 font definitions for OT1/ptm.
 ***********

相关内容