I try to include a table of content in my presentation, where the parts are shown. I know that every part has it's own toc. But at the beginning of my talk, I want to show an overview of the parts I am going to talk about.
Let's take this:
Code: Select all
\documentclass[10pt,xcolor=dvipsnames]{beamer}
\AtBeginPart{\frame{\partpage}}
\begin{document}
\frame{
\frametitle{Outline}
\tableofcontents
}
\part{1st part}
\frame{test}
\part{2nd part}
\frame{test}
\end{document}
How can I do this?1st part
2nd part