General ⇒ listing
-
- Posts: 30
- Joined: Fri Nov 23, 2007 12:56 am
listing
I Want to list several things, I ll use
\begin{enumerate}
\item
\end{enumerate}
How about if I want to use letters instead of numbers in my listing, what should I do?
Regards,
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
listing
Code: Select all
\documentclass{article}
\begin{document}
\begin{enumerate}
\item[a.] First item
\item[b.] Second item
\end{enumerate}
\renewcommand\theenumi{\alph{enumi}}
\begin{enumerate}
\item First item
\item Second item
\end{enumerate}
\end{document}