Ignoring page numbers in backup slides

前端 未结 9 1613
谎友^
谎友^ 2021-01-30 06:10

I am using the beamer document class in latex to make a presentation. I will have a number of back up slides which are there for offline viewing, reference etc. Beamer has a f

9条回答
  •  无人共我
    2021-01-30 06:49

    To manually fix the total frame count to a certain number, say 25, you could add the following command

    \renewcommand{\inserttotalframenumber}{25}
    

    right after the \begin{document} command.

    You can also add the \appendix command right before the beginning of your backup slides, so that the corresponding sections/subsections do not appear in the table of contents/navigation structure.

    It should be possible to tweak the renewcommand above so that it automatically uses the last frame number before the appendix, but I don't know how to do it.

提交回复
热议问题