Hi,
is there any way of creating a itemize with items under items? like subitems.
Thank you in advanced
General ⇒ Itemize with subitems
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Itemize with subitems
Last edited by TiagoEsterisco on Wed Jun 08, 2011 10:30 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
Itemize with subitems
Hi Tiago,
just the itemize environments:
Stefan
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}
LaTeX.org admin
-
- Posts: 5
- Joined: Wed Jun 08, 2011 1:08 am
Re: Itemize with subitems
Thank you a lot!
Itemize with subitems
There is also a variant of itemizing feature, i.e. enumerate. Which creates a numbered itemized list
Code: Select all
\begin{enumerate}
\item item1
\begin{enumerate}
\item nested item1
\item nested item2
\end{enumerate}
\item item2
\item item3
\end{enumerate}