Document ClassesBeamer Table of Contents

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
workerbee
Posts: 43
Joined: Sat Nov 22, 2008 1:53 am

Beamer Table of Contents

Post by workerbee »

Hi All,

I was wondering if there was a way to have the Table of Contents in Beamer to span more than 1 frame. The presentation I'm making in Beamer has several sections and subsections and the titles are being cut off at the bottom. Any feedback would be greatly appreciated, thanks!

Also, this was the code I used to form the table of contents:

Code: Select all

\frame{\frametitle{Table of Contents}\tableofcontents}
BTW, here's a screen cap of the table of contents as it is now.
Attachments
beamer-toc.jpg
beamer-toc.jpg (37.67 KiB) Viewed 20776 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Beamer Table of Contents

Post by Stefan Kottwitz »

Hi,

you could use the option allowframebreaks:

Code: Select all

\frame[allowframebreaks]%
{\frametitle{Table of Contents}\tableofcontents}
Stefan
LaTeX.org admin
workerbee
Posts: 43
Joined: Sat Nov 22, 2008 1:53 am

Re: Beamer Table of Contents

Post by workerbee »

Thanks, Stefan. It worked wonderfully!
Post Reply