Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 949
Nexus Avatar asked May 27 '09 04:05

Nexus


People also ask

How do you break a page in Beamer?

The \framebreak macro stands for \pagebreak<presentation> and inserts the frame/page break only in presentation mode but e.g. not in article or other modes. Use \pagebreak directly if you don't want that.

How do I make a table of contents in Beamer?

Creating the table of contents in Beamer can be done with the same manner as in standard LaTeX. The first thing that we should do is to structure our presentation using the commands \section{} and \subsection{} ( \section*{} and \subsection*{} , to hide it from table of contents).


1 Answers

\begin{frame}[allowframebreaks]{Outline} 

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

like image 139
Nexus Avatar answered Sep 17 '22 15:09

Nexus