0

I have a unordered list with 2 levels in the following form:

\begin{itemize}
\item Level 1
      \begin{list}{$\circ$}{}
      \item Level 2
         % Trying  to add a third level here

\end{itemize} \end{list}

I would like to add a third level in this unordered list. Is this possible and if so how do I add another unordered level?

user4933
  • 202
  • You could simply nest itemize environments. – leandriis Feb 05 '21 at 06:49
  • with the outline package -- both numbered and un-numbered lists as below -- https://tex.stackexchange.com/a/311843/197451 – js bibra Feb 05 '21 at 06:51
  • I wanted to keep the first level as a black circle and the second level as an empty filled circle in the way it is in the example. – user4933 Feb 05 '21 at 06:53
  • You mentioned the style of bullet points for the first and second level. What about the third level? – leandriis Feb 05 '21 at 07:04
  • @leandriis The third level can be a black box, or anything really, the reason I care about the first 2 is for continuity with the other things on the document. – user4933 Feb 05 '21 at 07:06
  • As already mentioned, you could achieve such a list uso g nested itemize environments. The label of each list level can be adjusted individually using the enumitem package. – leandriis Feb 05 '21 at 07:08
  • the markup should just be three nested itemize environments. latex allows the labels at each level to be specified separately, either just using the core declarations or more easily using the enumitem package. – David Carlisle Feb 05 '21 at 08:38

1 Answers1

1

enter image description here

\documentclass{article}
\usepackage{outlines}
\begin{document}
\begin{outline}
 \1 Top level item
   \2 Sub item
     \3 sub sub item
\end{outline}

\begin{outline}[enumerate] \1 Top level item \2 Sub item \3 sub sub item \end{outline} \end{document}

edit--

enter image description here

\documentclass{article}
\usepackage{outlines}
\usepackage{enumitem}

\setlist[itemize,1]{label=$\triangleleft$} \setlist[itemize,2]{label=\textbullet} \setlist[itemize,3]{label=$\circ$} \begin{document} \begin{outline} \1 Item 1 \2 Item 2 \3 Item 3

\end{outline}

\end{document}

js bibra
  • 21,280