Sjtuthesis: enumerate 样式定制报错

Created on 11 Jun 2015  ·  1Comment  ·  Source: sjtug/SJTUThesis

对于以下代码:

\begin{enumerate}
\item this is the first item;
\item second item.
\end{enumerate}

希望把\item的样式改为(1)(2),但是使用如下代码定制样式后:
\begin{enumerate}[(1)]
\item this is the first item;
\item second item.
\end{enumerate}

使用XeLaTeX编译报错:
Latex Error: ./tex/chapter02.tex:37 Package enumitem Error: (1) undefined.

Most helpful comment

参考 enumitem 文档,(1) 这样的列表样式应该这样实现:

\begin{enumerate}[label=(\arabic*)]                                                                                                                                      
\item this is the first item;                                                                                                                                            
\item second item.                                                                                                                                                       
\end{enumerate}    

>All comments

参考 enumitem 文档,(1) 这样的列表样式应该这样实现:

\begin{enumerate}[label=(\arabic*)]                                                                                                                                      
\item this is the first item;                                                                                                                                            
\item second item.                                                                                                                                                       
\end{enumerate}    
Was this page helpful?
0 / 5 - 0 ratings

Related issues

frankchen0130 picture frankchen0130  ·  5Comments

Erich-Chen picture Erich-Chen  ·  6Comments

FelixIsCoding picture FelixIsCoding  ·  8Comments

gaocegege picture gaocegege  ·  9Comments

sjtuliubinyang picture sjtuliubinyang  ·  9Comments