\renewcommand\theenumi {\alph{enumi})}
\begin{enumerate}
\item
...
And get a). XXX
Do do I remove the period so that I get
a) XXX
Couldn't find it in the documentation.
Haines Brown
i *think* the command to be redefined is \labelenumi, not \theenumi:
\renewcommand{\labelenumi}{\alph{enumi})}
otherwise:
\usepackage{enumitem}
and then check out the manual how to do it exactly.
--
Joost Kremers joostk...@yahoo.com
Selbst in die Unterwelt dringt durch Spalten Licht
EN:SiS(9)
> I create an enumeration list with:
>
> \renewcommand\theenumi {\alph{enumi})}
> \begin{enumerate}
> \item
> ...
>
> And get a). XXX
>
> Do do I remove the period so that I get
>
> a) XXX
The item-labels for enumeration-lists of first nesting-level
are formed by means of the macro \labelenumi which e.g.
with book-class is defined as
\def\labelenumi{\theenumi .}
There is a period at the end of \labelenumi's replacement-text.
Therefore I guess that you need to redefine both \theenumi and
\labelenumi - e.g.,
\renewcommand*\labelenumi{\theenumi}
\renewcommand*\theenumi {\alph{enumi})}
\begin{enumerate}
\item
Ulrich
You also have to decide if you want the parenthesis to appear in
\ref's.
If not:
\renewcommand \theenumi{\alph{enumi}}
\renewcommand\labelenumi{\theenumi)}
\label picks up \theenumi.
Dan