tags:

views:

2741

answers:

2

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?

+6  A: 
\begin{frame}[allowframebreaks]{Outline}

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

Nexus
+1  A: 

You can also try:

\begin{frame}[shrink]{Outline}

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

rafalmag