I am trying to make a presentation that allows me to click from one point in the list to the next. After some searching I found exactly the effect that I was looking for, but after compiling it a few times the table of contents is acting strange. For each point that I can click to a new element is added to the table of contents. Especially for the side bar it is hard to solve.
Here is my code:
Code: Select all
\documentclass{beamer}
\usepackage{beamerthemebars}
\usetheme{PaloAlto}
\usecolortheme{crane}
\title{TITLE}
\author{Dennis}
\date{September 22, 2011}
\begin{document}
\maketitle
\begin{frame}
\section{TOC}
\frametitle{TOC}
\setcounter{tocdepth}{1}
\tableofcontents
\end{frame}
\begin{frame}
\section{Items}
\frametitle{Items}
\begin{itemize}
\item<1-> I1
\begin{itemize}
\item<2-> 1a
\item<3-> 1b
\item<4-> 1c
\end{itemize}
\item<1-> I2
\begin{itemize}
\item<5-> 2a
\item<6-> 2b
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Thanks}
\section{Thanks}
Thank you for your time.
\end{frame}
\end{document}