logo

How to Order Alphabetically with enumerate in LaTeX 📂Writing

How to Order Alphabetically with enumerate in LaTeX

Code

You need to add \usepackage{enumitem}.

\begin{enumerate}[label=(\alph*)]
    \item Lorem Ipsum
    \item Lorem Ipsum is simply dummy text of the printing and typesetting industry.
    \item Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
    \item when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\end{enumerate}

\begin{enumerate}[label=(\Alph*)]
    \item Lorem Ipsum
    \item Lorem Ipsum is simply dummy text of the printing and typesetting industry.
    \item Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
    \item when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\end{enumerate}

\begin{enumerate}[label=\Alph*.]
    \item Lorem Ipsum
    \item Lorem Ipsum is simply dummy text of the printing and typesetting industry.
    \item Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
    \item when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\end{enumerate}