enumerate abc
The enumeration environment can be easily changed from numbers to alphabetic characters.
customize LaTeX enumerations online
By using:
\renewcommand{\labelenumi}{\alph{enumi})}
numbers will be replaced by alphabetic chars.
\documentclass{article}
\begin{document}
\renewcommand{\labelenumi}{\alph{enumi})}
\begin{enumerate}
\item one
\item two
\item three
\end{enumerate}
\end{document}
output:
a) one
b) two
c) three
The right parenthesis can be omitted.
\documentclass{article}
\begin{document}
\renewcommand{\labelenumi}{\alph{enumi}}
\begin{enumerate}
\item one
\item two
\item three
\end{enumerate}
\end{document}
output:
a one
b two
c three