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!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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!