TeX Frequently Asked Questions -- question label "enumerate"
10/22/11 2:24 PM
Welcome to the UK List of TeX Frequently Asked Questions on the Web
Searching
The index of Frequently Asked Questions about TeX is searchable. Please enter your keyword here: then press here:
search
or:
Google Search
Fancy enumeration lists
The enumerate package allows you to control the display of the enumeration counter. The package adds an optional parameter to the enumerate environment, which is used to specify the layout of the labels. The layout parameter contains an enumeration type (1 for arabic numerals, a or A for alphabetic enumeration, and i or I for Roman numerals), and things to act as decoration of the enumeration. So, for example
\usepackage{enumerate} ... \begin{enumerate}[(a)] \item ... ... \end{enumerate}
starts a list whose labels run (a), (b), (c), ; while
\usepackage{enumerate} ... \begin{enumerate}[I/] \item ... ... \end{enumerate}
starts a list whose labels run I/, II/, III/, The paralist package, whose primary purpose is compaction of lists, provides the same facilities for its enumerate-like environments. If you need non-stereotyped designs, the enumitem package gives you most of the flexibility you might want to design your own. The silly roman example above could be achieved by:
\usepackage{enumitem}
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=enumerate Page 1 of 2
TeX Frequently Asked Questions -- question label "enumerate"
10/22/11 2:24 PM
... \begin{enumerate}[label=\Roman{*}/] \item ... ... \end{enumerate}
Note that the * in the key value stands for the list counter at this level. You can also manipulate the format of references to list item labels:
\usepackage{enumitem} ... \begin{enumerate}[label=\Roman{*}/, ref=(\roman{*})] \item ... ... \end{enumerate}
to make references to the list items format appear as (i), (ii), (iii), etc. The memoir class includes functions that match those in the enumerate package, and has similar functionality for itemize lists.
enumerate.sty
Distributed as part of macros/latex/required/tools (or browse the directory); catalogue entry
enumitem.sty
macros/latex/contrib/enumitem (or browse the directory); catalogue entry
memoir.cls
macros/latex/contrib/memoir (or browse the directory); catalogue entry
paralist.sty
macros/latex/contrib/paralist (or browse the directory); catalogue entry Go to previous question, or next question Go to FAQ home. URL for this question: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=enumerate Comments, suggestions, or error reports? - see how to improve the FAQ. This is FAQ version 3.23, released on 2011-09-06.
http://www.tex.ac.uk/cgi-bin/texfaq2html?label=enumerate
Page 2 of 2