There are three basic types of list in LaTeX, each with its own environment:
enumerate
environment. Inside this ordered list environment each listed item is specified with \item
. Each item in an ordered list is numbered, e.g. try:
\begin{enumerate}
\item Find plans.
\item Save world.
\item Get out of my house!
\end{enumerate}
itemize
environment, but aside from using the same symbol
for each item it is pretty much the same as the enumerate
environment.description
environment. You use the \item
command as before to specify each item, but now it can take an optional argument which says what it is you're describing, e.g.
\begin{description}
\item[Microphone] A millionth of a telephone
\item[Megaphone] 10$^{12}$ microphones
\end{description}
Use an unordered list to list your research interests.
enumerate
(numbered list)
itemize
(unnumbered list)
description
(unnumbered definition)
Previous page | Next page |