[Tex/LaTex] Breaking table of contents between frames in beamer

beamerpage-breakingtable of contents

I've got a rather long table of contents for my presentation in beamer, and it doesn't fit on one frame. I know I can provide a table of contents per section, or to manually break it between sections into a few frames using \tableofcontents[sections={1-3}] etc., but I was hoping there is a way for LaTeX/beamer to do it automatically for me.

So, in short:

Is it possible to automatically break the table of contents in beamer between frames?

And of course, if yes, how would I go about it?

Best Answer

You could try the allowframebreaks option

\begin{frame}[allowframebreaks=<fraction>]
  \tableofcontents
\end{frame}

It is for stuff like ToC or references.

See also Explicit frame break with beamer class

Related Question