Collapsing the uncovers in a beamer / latex file without taking out all of the uncovers.
03 Mar 2021So I like to use \uncover
commands to create dynamic presentations. But sometimes I just want to know how many pages the .pdf is without the additional pages generated by the uncovers, or collapse them for a handout or some other purpose. So how to do this, without removing all of the carefully placed \uncover
s ?
In the first line, you might have,
\documentclass{beamer}
Change to
\documentclass[handout]{beamer}
and recompile, you’re done.
Relevant StackExchange: Link.