Multiple types of bulleted list in sublists in beamer
Asked Answered
D

1

1

I tried to create a different bullets for sublists in beamer but everytime it creates the same bullet for nested lists as shown below. I tried label=\roman* but it is for enumitem. How do I change sublits bullets to something like arrow or rectangle?

enter image description here

Deejay answered 1/5, 2021 at 13:41 Comment(1)
unrelated to your question: I would use -- to get a dash instead of a hyphen between "underfit' and "high"Ravenravening
R
2

Beamer allows to set the template for each itemisation level separately. Changing the second level symbol works like this:

\documentclass{beamer}

\setbeamertemplate{itemize subitem}{$\rightarrow$}

\begin{document}
    
\begin{frame}
    \begin{itemize}
  \item test
    \begin{itemize}
    \item test
    \end{itemize}
  \end{itemize}
\end{frame} 
    
\end{document}

enter image description here

(itemize item would be the top level symbols and itemize subsubitem would be the third level symbol)

P.S. you can also change the symbols on a case-by-case basis:

\documentclass{beamer}

\begin{document}
    
\begin{frame}
  \begin{itemize}
  \item test
    \begin{itemize}
    \item test
    \item[$\rightarrow$] test
    \item test
    \end{itemize}
  \end{itemize}
\end{frame} 
    
\end{document}
Ravenravening answered 1/5, 2021 at 13:46 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.