tags:

views:

183

answers:

1

Hey guys,

in LaTeX Beamer, the total number of slides includes those that only contain the table of contents before each section/subsection, which increases the total number of slides unnecessarily. Is there any way to prevent this?

In other words: I don't want slides containing the TOC to have page numbers.

Kind regards, mefiX

+3  A: 

Add the line

\addtocounter{framenumber}{-1}

on each frame you wish to exclude from total count.

See also this other Question here on Stackoverflow, which might assist you further.

froeschli
Great! Thank you!
mefiX