通常,在我为 撰写的文章中\documentclass[journal]{IEEEtran}
,我使用description
环境而不会出现任何错误,即\begin{description} … \end{description}
。然而,当我\documentclass{bioinfo}
为牛津生物信息学期刊模板使用 时,我收到一条错误消息,指出description
环境未定义。
有人能帮我解决这个问题吗?
答案1
您可以从article.cls
:
\documentclass{bioinfo}% http://www.oxfordjournals.org/our_journals/bioinformatics/for_authors/submission_online.html
\makeatletter
\newenvironment{description}% Taken from article.cls
{\list{}{\labelwidth\z@ \itemindent-\leftmargin
\let\makelabel\descriptionlabel}}
{\endlist}
\newcommand*\descriptionlabel[1]{\hspace\labelsep
\normalfont\bfseries #1}
\setlength{\labelsep}{.5em}% Also taken from article.cls
\makeatother
\begin{document}
\begin{description}
\item[An item] Here is a description on an item.
\item[Another item] Here is a description on an item.
\end{description}
\end{document}
您必须包括\makeatletter
和\makeatother
(含)之间的所有内容。