枚举错误

枚举错误

我的文章中使用了几种类型的{enumerate}。如果我使用新文档,它会正常运行。

\documentclass{article}  
\usepackage{enumerate}  
\begin{document}  

\begin{enumerate}  
    \item fisrt  
    \item second  
    \item third  
\end{enumerate}  
Another list  
\begin{enumerate}[{A.5.}1.]  
\item  
\item  
\item  
\item  
\end{enumerate}  
\end{document}  

但是,当我尝试在主文档中使用它时,出现了一些错误消息。

\documentclass[12pt,twocolumn,twoside, a4paper]{article}  
\usepackage{microtype} % Slightly tweak font spacing for aesthetics  
\usepackage[bahasa]{babel} % Language hyphenation and typographical rules  
\usepackage[left=2.50cm, right=2.00cm, top=2.50cm, bottom=2.50cm]{geometry}   
\usepackage[hang,small,labelfont=bf,up,textfont=it,up]{caption}    
\usepackage{booktabs}    
\usepackage{enumitem}    
\usepackage{titling}     
\usepackage{hyperref}    
\usepackage{titlesec}    
\usepackage{abstract}    
\usepackage{fancyhdr}    
\usepackage{graphicx}  
\usepackage{hyphenat}  
\usepackage{amssymb}  
\usepackage{enumerate}  
\addto\captionsbahasa{\renewcommand{\abstractname}{ABSTRAK}}   
\addto\captionsbahasa{\renewcommand{\refname}{REFERENSI}}  
\renewcommand{\abstractnamefont}{\normalfont\bfseries}   
\renewcommand{\abstracttextfont}{\normalfont\itshape}    
\renewcommand\thesection{\Roman{section}}    
\renewcommand\thesubsection{\textbf{\Alph{subsection}}}   

\titleformat{\section}[block]{\large\bfseries\centering}{\thesection.}{0.3em}{}   
\titleformat{\subsection}[block]{\bfseries\normalsize}{\thesubsection.}{0.3em}{}   \titleformat{\subsubsection}[block]{\bfseries\normalsize}{\thesubsubsection}{0.3em}{}  
\setlist[itemize]{noitemsep}    
\setlist[enumerate]{noitemsep}    

\fancyhead{}   
\pagestyle{fancy}    
\fancyhead[LO]{Journal Issue}  
\fancyhead[RE]{Author - \textit{Title\ldots}}  
\renewcommand{\headrulewidth}{1pt}  

\setlength{\droptitle}{-4\baselineskip}    
\pretitle{\begin{center}\LARGE\bfseries}    
    \posttitle{\end{center}}    
\title{Article title}  
} % Article title  
\author{%  
    \normalfont{\textbf{Author1}}$^{1)}$,  
    \normalfont{\textbf{Author2}}$^{2)}$\\[1ex]  
    \normalsize$^{1,2)}${Institution Units}\\  
    \normalsize{Institution Org}\\  
    \normalsize{Address}\\[1ex]  
    \normalsize $^{1)}$  
    \href{mailto:[email protected]}{[email protected]}\\  
    \normalsize $^{2)}$  
    \href{mailto:[email protected]}{[email protected]}}  
\cfoot{\thepage}  
\setcounter{page}{18}  
\date{}   
\renewcommand{\maketitlehookd}{%  
    \begin{abstract}  
        \noindent   
        Abstract is here  

        \noindent  
        \textbf{Kata kunci}: keyword1, keyword2, keyword3   
    \end{abstract}  
}  
\begin{document}  
    \maketitle  
\section{Pendahuluan}  
\subsection{Rumusan Masalah}  
\begin{enumerate}  
    \item item1  
    \item item2  
\end{enumerate}  
\section{Metode}  
\begin{enumerate}[{A.5.}1.]  
    \item fisrt  
    \item second  
    \item third  
\end{enumerate}  

\end{document} 

请帮忙,我不知道错误是怎么产生的。谢谢。

相关内容