How could I change the numeration style in table of contens in beamer (Latex)?

Hello I am new at beamer (overleaf), so I have learned very much, so I would like to change the design of the numeration in table of contents. I mean with that (see picture attached):

enter image description here

I would like to change to a square, or simply the number. Anyone knows others styles? I am using the \usetheme{CambridgeUS}.

1 Answer

You can set the sections/subsections in toc template to change to e.g. a square or plain numbered sections:

\documentclass{beamer} \usetheme{CambridgeUS} \setbeamertemplate{sections/subsections in toc}[square] %\setbeamertemplate{sections/subsections in toc}[sections numbered] \begin{document} \section{title} \begin{frame} \tableofcontents \end{frame} \end{document} 
0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like