Document Classes ⇒ Changing a Beamer theme (Itemizing)
Changing a Beamer theme (Itemizing)
I'm using the Beamer class.
I've chosen the theme PaloAlto. Anyway I wanted items and sub-items to have a different symbols... I mean wanted this:
\begin{itemize}
\item (I want this with a point)
\begin{itemize}
\item (I want this with a dart)
\begin{itemize}
\item (I want this with a star)
\end{itemize}
\end{itemize}
\end{itemize}
I hope to have explained well the point.
Thank you in advance!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing a Beamer theme (Itemizing)
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Changing a Beamer theme (Itemizing)
Think that itemizing of different levels depends on the theme you've chosen but there will be a way to change the marker of each level of items.
\begin{itemize}[star]
\item \textbf{Marshall, Sorensen and Tucker} (1992)
\begin{itemize}[ball]
\item not completely arbitrage-free framework of replicating portfolios.
\end{itemize}
\end{itemize}
Right?
Re: Changing a Beamer theme (Itemizing)
It's just a matter of specifying it before beginning the document. This works as follows:
\setbeamertemplate{itemize items}[ball] % if you want a ball
\setbeamertemplate{itemize subitem}[circle] % if you wnat a circle
\setbeamertemplate{itemize subsubitem}[triangle] % if you want a triangle
other you can have a square.
Anyone know how to have a star?
Thanks
Re: Changing a Beamer theme (Itemizing)
The common for is the following, but what I have to secify inside the square parenthesis?
\setbeamertemplate{itemize subsubitem}[ . . . ]
Thanks to you all!