1

I can write:

\begin{itemize}
\item Juice
\item Coffee
\end{itemize}

However, I would like to sub-divide Coffee further and get a result

enter image description here

The sub-items of Coffee are marked with different bulletpoints and additional indentation.

How to implement that?

Viesturs
  • 7,895

2 Answers2

3

Use package enumitem

\documentclass[]{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=$\bullet$]
    \item Juice
    \item Cofee
        \begin{enumerate}[label=$ - $]
            \item With miklk
            \item Without milk
        \end{enumerate}
\end{enumerate}

\end{document}

The label you can choose by key label =.

sergiokapone
  • 5,578
  • 1
  • 16
  • 39
2

What you show is the default behaviour for latex lists:

enter image description here

\documentclass[]{article}

\begin{document}

\begin{itemize}
    \item Juice
    \item Cofee
        \begin{itemize}
            \item With milk
            \item Without milk
        \end{itemize}
\end{itemize}

\end{document}
David Carlisle
  • 757,742