General ⇒ Itemize with subitems
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Itemize with subitems
is there any way of creating a itemize with items under items? like subitems.
Thank you in advanced
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Itemize with subitems
just the itemize environments:
Code: Select all
\begin{itemize}
\item first item
\begin{itemize}
\item first nested item
\item second nested item
\end{itemize}
\item second item
\item third item
\end{itemize}
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Re: Itemize with subitems
Itemize with subitems
Code: Select all
\begin{enumerate}
\item item1
\begin{enumerate}
\item nested item1
\item nested item2
\end{enumerate}
\item item2
\item item3
\end{enumerate}