Skip to content
cpfaff edited this page May 20, 2013 · 1 revision

Lists

To list content there are several environments to do this available which you can nest to a depth of four. The example below shows you a simple list with dots. If you like to have a numbered list you have to replace the "itemize" by "enumerate".

\begin{itemize}
  \item One
    \begin{itemize}
      \item One One
        \begin{itemize}
          \item One One One
        \end{itemize}
    \end{itemize}
  \item Two
  \item Three
\end{itemize}

Open-Science-Paper-PDF-Header

Another list which might come in handy is the "description" which has a slightly different syntax of the items (see below). As the name suggests it is a list for descriptions and the words in the in the brackets of the item get typeset bold.

\begin{description}
  \item[Lorem] Lorem ipsum dolor ...
  \item[Ipsum] ...
\end{description}

Open-Science-Paper-description-list

Clone this wiki locally