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

beamerlatex

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?

Best Answer

\begin{frame}[allowframebreaks]{Outline}

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

Related Topic