有序列表导致错误:未定义控制序列,每个序列缺少数字

有序列表导致错误:未定义控制序列,每个序列缺少数字

我使用枚举包,我认为这是一个标准有序列表;

\begin{enumerate}
    \item Read the twitter dataset, divide the data into 3 groups. The training data is 85\% of the tweets, the validation is 10\% and the test is 5\%.
    \item Get the model and the optimiser for the selected transformer
    \item Check whether the setting in config.py requests uploading a model from a previous run. If it does, then load it, otherwise continue.
    \item 
\end{enumerate}

但是我收到了错误消息;

未定义的控制序列,每个序列缺少数字。

我该如何解决?

编辑我已将代码简化为;

\begin{enumerate}
    \item one
\end{enumerate} 

这些是错误信息; 在此处输入图片描述 在此处输入图片描述

EDIT2-经过更多反馈后我再次尝试;

\documentclass[11pt, twoside]{report}

\usepackage[labelfont=bf]{caption} % boldface caption title for floats
\usepackage{enumitem}
\usepackage{enumerate}
\usepackage{tikz}

\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\begin{document}
\begin{enumerate}
    \item One.
\end{enumerate}
\end{document}

我尝试了各种建议,但还是出现了同样的错误。我尝试了 paralist,但没有任何效果。我尝试了建议的“重复问题”中的解决方案,但还是没有用。

答案1

enumerateenumitem都在重新定义enumerate环境,您不能同时加载两者,您需要决定要使用哪个扩展。但是,正如enumitem比 所做的很多事情一样enumerate(包括具有完整enumerate包模拟的选项),选择非常简单:使用包enumitem而不是enumerate

相关内容