43
votes

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?

3

3 Answers

56
votes
\begin{frame}[allowframebreaks]{Outline}

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

13
votes

You can also try:

\begin{frame}[shrink]{Outline}

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

12
votes

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...