up vote 4 down vote favorite
2
share [g+] share [fb]

How can I create lists which look this:

1. Topic
1.1 First Subtopic
1.2 Second Subtopic

I tried using the enumeration list

\begin{enumerate}
\item Topic
\begin{enumerate}
\item First Subtopic
\item Second Subtopic
\end{enumerate}
\end{enumerate}

But the output looks like:

1. Topic
  (a) First Subtopic
  (b) Second Subtopic

So how can I get the list? Is there another list evironment or maybe an extra package?

link|improve this question
feedback

3 Answers

up vote 3 down vote accepted

You can use enumitem package:

\documentclass{article}
\usepackage{enumitem}
\begin{document}

\begin{enumerate}
  \item Topic
  \begin{enumerate}[label*=\arabic*.]
    \item First Subtopic
    \item Second Subtopic
    \begin{enumerate}[label*=\arabic*.]
      \item First Sub-Subtopic
      \item Second Sub-Subtopic
    \end{enumerate}
  \end{enumerate}
\end{enumerate}

\end{document}

See the catalog entry for enumitem for more.

link|improve this answer
How do I make it work for 2nd level of nesting - like 1.1.1? Right now, I have like 1.11 and 1.12 when going to 2nd level. – bikashg Jul 14 '11 at 15:30
@bikashg: I have updated my example. The old one had a bug in it :-) – Alok Jul 14 '11 at 16:16
Thanks, Alok :). – bikashg Jul 14 '11 at 19:56
feedback

See: http://www.giss.nasa.gov/tools/latex/ltx-222.html

The numbering style for the enumeration is determined by the commands, \labelenumi, \labelenumii, etc., for the nested levels. These may be redefined with the \renewcommand command.

For example, to use upper case letters for the first level and lower case letters for the second level of enumeration:

\renewcommand{\labelenumi}{\Alph{enumi}}
\renewcommand{\labelenumii}{\alph{enumii}}

And here: http://www.mackichan.com/index.html?techtalk/484.htm~mainFrame

... The concrete commands would be

\renewcommand{\labelenumi}{\arabic{enumi}.} 
\renewcommand{\labelenumii}{\arabic{enumi}.\arabic{enumii}}

Or, if you think your content qualifies as sections, use something like:

\section{Name}
...
\subsection{Subtopic}
...
\subsubsection{Yet another nesting}
...
link|improve this answer
3  
The concrete commands would be \renewcommand{\labelenumi}{\arabic{enumi}.} and \renewcommand{\labelenumii}{\arabic{enumi}.\arabic{enumii}}. – Joachim Sauer Jan 5 '10 at 17:05
feedback

Take a look at this Table of Contents article. I believe you want \section and \subsection. You can also go quite deep with \subsubsubsection and so-forth.

Edit 1: Here is another page describing sections.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.