Increase page numbers in LaTeX Beamer

beamerlatex

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

Best Answer

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.

Related Topic