Text Formatting ⇒ change bullet shape in beamer toc
change bullet shape in beamer toc
I am using the default beamer theme, and would like to have square *unnumbered* bullets for sections in the ToC. I didn't find an easy way to modify this when I looked online.
Changing "ball" to "square" in
\setbeamertemplate{section in toc}[ball unnumbered]
doesn't work..
Also, is there a way to change the color of the square (from default blue to black)?
Thanks a lot,
Asaf
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
change bullet shape in beamer toc
you can define such as style. Here I modified the original definition from beamerbaseauxtemplates.sty:
Code: Select all
\defbeamertemplate{section in toc}{square unnumbered}{%
\leavevmode\leftskip=1.75ex%
\llap{\textcolor{red!70!black}{\vrule width2.25ex
height1.85ex depth.4ex}}%
\kern1.5ex\inserttocsection\par}
Now that works:
Code: Select all
\setbeamertemplate{section in toc}[square unnumbered]
Re: change bullet shape in beamer toc
-Asaf