生物信息类中缺少描述环境

生物信息类中缺少描述环境

通常,在我为 撰写的文章中\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(含)之间的所有内容。

相关内容