látex beamer toc - não exibe bolhas

látex beamer toc - não exibe bolhas

Atualmente estou criando minha primeira apresentação usando LaTeXbeamerpacote.

Existe alguma maneira de alterar o símbolo de enumeração na página do índice?

Atualmente está assim, o que é um pouco "chamado?!" para mim:

Índice do beamer LaTeX

Responder1

Ao definir os modelos section in toc, subsection in toc(e possivelmente section in toc shaded, subsection in toc shaded), você pode alterar a formatação das entradas da unidade seccional no ToC; aqui está um pequeno exemplo mostrando algumas alternativas para as entradas da seção (suprimindo numeração e bolas, usando círculos, usando bolas não numeradas e usando quadrados):

\documentclass{beamer}
\usetheme{Warsaw}

\begin{document}

\setbeamertemplate{section in toc}{\inserttocsection}
\begin{frame}
\tableofcontents
\end{frame}

\setbeamertemplate{section in toc}[circle]
\begin{frame}
\tableofcontents
\end{frame}

\setbeamertemplate{section in toc}[ball unnumbered]
\begin{frame}
\tableofcontents
\end{frame}

\setbeamertemplate{section in toc}[square]
\begin{frame}
\tableofcontents
\end{frame}

\section{Test Section One}
\frame{test}
\section{Test Section Two}
\frame{test}

\end{document}

insira a descrição da imagem aqui

E, claro, você pode definir seu próprio estilo; por exemplo, para suprimir a bola e manter os números você poderia dizer:

\documentclass{beamer}
\usetheme{Warsaw}

\setbeamertemplate{section in toc}{\inserttocsectionnumber.~\inserttocsection}

\begin{document}

\begin{frame}
\tableofcontents
\end{frame}

\section{Test Section One}
\frame{test}
\section{Test Section Two}
\frame{test}

\end{document}

insira a descrição da imagem aqui

Aqui está um exemplo mais elaborado que altera a maneira como as entradas de seção e subseção são mostradas no ToC:

\documentclass{beamer}
\usetheme{Warsaw}

\setbeamertemplate{section in toc}{%
  {\color{orange!70!black}\inserttocsectionnumber.}~\inserttocsection}
\setbeamercolor{subsection in toc}{bg=white,fg=structure}
\setbeamertemplate{subsection in toc}{%
  \hspace{1.2em}{\color{orange}\rule[0.3ex]{3pt}{3pt}}~\inserttocsubsection\par}

\begin{document}

\begin{frame}
\tableofcontents
\end{frame}

\section{Test Section One}
\subsection{Test Subsection One One}
\frame{test}
\subsection{Test Subsection One Two}
\frame{test}
\section{Test Section Two}
\subsection{Test Subsection Two One}
\frame{test}
\subsection{Test Subsection Two Two}
\frame{test}

\end{document}

insira a descrição da imagem aqui

informação relacionada