I'm using beamer to produce a long presentation with several parts.
Is there any way to generate a global TOC which should contains all the parts and their sections ?
MWE:
\documentclass{beamer}
\AtBeginPart{%
\frame{\partpage}%
}
\begin{document}
\begin{frame}{Outline}
\tableofcontents
\end{frame}
\section{section Out-one}\begin{frame}\end{frame}
\section{section Out-two}\begin{frame}\end{frame}
\part{Introduction}
\section{section I-one}
\subsection{subsection I-one}\begin{frame}\end{frame}
\section{section I-two}\begin{frame}\end{frame}
\part{chapter two}
\section{section one}\begin{frame}\end{frame}
\section{section two}\begin{frame}\end{frame}
\section{section three}\begin{frame}\end{frame}
\end{document}
