beamer add tag
Arne (imported from SE)
Is there an overlay specification for `\frame<...>{` that yields the last version of the frame if the frame is built with relative overlays?

The handout version achieves this, but sets it globally. I'm looking for a frame-specific solution. I think it works (not elegantly) with `\frame<N>{` for some sufficiently large `N`.
Top Answer
samcarter
You can temporarily switch on the behaviour of handout mode before the frame you want to show fully uncovered and then go back to normal beamer mode after the frame:


```
\documentclass{beamer}

\makeatletter
\newcommand{\switchhandout}{\gdef\beamer@currentmode{handout}}
\newcommand{\switchbeamer}{\gdef\beamer@currentmode{beamer}}
\makeatother

\begin{document}

\begin{frame}
normal 
\pause
mode
\end{frame}

\switchhandout
\begin{frame}
handout
\pause
mode
\end{frame}
\switchbeamer

\begin{frame}
normal
\pause
mode
\end{frame}

\end{document}
```

![document.gif](/image?hash=4592108c7dacc35e0e82f261662c0e9be03da09e09a2e579a2cc639758cdbbdd)

(I would prefer if this answer would not be reposted on tex.se)

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.