How to split table of contents across multiple slides with Latex Beamer?

I currently am preparing some slides for a presentation and am using Latex with the Beamer package. Currently the sections and subsections of my presentation cause the presentation overview text in the table of contents slide to extend past the bottom of the page.

Is there a way to split my table of contents up so they are displayed across multiple slides?


Solution 1:

\begin{frame}[allowframebreaks]{Outline}

The above code will split any over hang across multiple slides.

Solution 2:

You can also try:

\begin{frame}[shrink]{Outline}

The above will try to shrink content to fit frame margins.

Solution 3:

You can divide your presentations in parts with

\part{1} .... \part{n}

then you can show the toc of every part on an other slide with

\tableofcontents[part=1]

If you use

\tableofcontents[currentsection]

only the toc of the part will be displayed...