LaTeX nerd LaTeX blog

Enumerate

Using \usepackage{enumitem} will allow you to customize the enumerate environment label. \arabic* for 1, 2, 3… \alph* for a, b, c… \Alph* for A, B, C… \roman* for i, ii, iii… \Roman* for I, II, III… For example, the following code: \begin{enumerate}[label=(\arabic*)] \item first item \item second item \end{enumerate} wil... Read more