GeneralItemize with subitems

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
TiagoEsterisco
Posts: 5
Joined: Wed Jun 08, 2011 1:08 am

Itemize with subitems

Post by TiagoEsterisco »

Hi,

is there any way of creating a itemize with items under items? like subitems.
Thank you in advanced
Last edited by TiagoEsterisco on Wed Jun 08, 2011 10:30 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10323
Joined: Mon Mar 10, 2008 9:44 pm

Itemize with subitems

Post by Stefan Kottwitz »

Hi Tiago,

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}
Stefan
LaTeX.org admin
TiagoEsterisco
Posts: 5
Joined: Wed Jun 08, 2011 1:08 am

Re: Itemize with subitems

Post by TiagoEsterisco »

Thank you a lot!
yasir0403
Posts: 1
Joined: Sun May 03, 2020 9:03 pm

Itemize with subitems

Post by yasir0403 »

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}
Post Reply