LaTeX enumerate

latex enumerate abc

StartLaTeX faqLaTeX topicsfont sizearrowsminipageitalicsboldtext colormatrixfontslistingstables

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

Contact   Privacy Policy   disclosures

accept decline

This website uses cookies and pixel tags to ensure you get the best experience on our website. By using this website, you consent to the use of cookies.learn more about cookies see also our privacy policy