Ignoring page numbers in backup slides

前端 未结 9 1762
谎友^
谎友^ 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 07:05

    You can put all of your backup slides in appendix and use the appendixnumberbeamer package.

    \documentclass[12pt]{beamer}
    \usepackage{appendixnumberbeamer}
    \begin{document}
    \begin{frame}{Frames that counts}
    \end{frame}
    \appendix
    \begin{frame}{Backup slides}
    \end{frame}
    \end{document}
    

提交回复
热议问题