How do I add letters to numbered list items in LaTeX?

  • Thread starter Thread starter amcavoy
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 2K views
amcavoy
Messages
663
Reaction score
0
I didn't know where to post this, so I apologize if it's in the wrong place. I know how to make a numbered list using \begin{enumerate}\end{enumerate}, etc., etc., but I would like to know how to add letters to each number. For example:

1 (a)
(b)
.
.
.

Does anyone know how to do this? Thanks.
 
Physics news on Phys.org
Like this? (Click on the image to see the [tex]\LaTeX[/tex]code.)

[tex] \begin{enumerate}<br /> \begin{enumerate}<br /> \item STUFF<br /> \begin{enumerate}<br /> \item MORE STUFF<br /> \item EVEN MORE STUFF<br /> \end{enumerate}<br /> \item SOME MORE STUFF<br /> \end{enumerate}<br /> \end{enumerate}[/tex]
 
Yes, thank you very much.