I want to present a long proof in a presentation using beamer but don't know how to divide it into several frames without calling \begin{proof} - \end{proof} on each frame. To clarify things, what I have and don't want is something like this:
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{theorem}
The result...
\end{theorem}
\begin{proof}
Bla bla bla...
\end{proof}
\end{frame}
\begin{frame}
\begin{proof}
More bla bla bla...
\end{proof}
\end{frame}
\begin{frame}
\begin{proof}
And more bla bla bla... End of proof.
\end{proof}
\end{frame}
\end{document}
\only<1>{Bla bla},\only<2>{More bla bla}, ... – crixstox Nov 14 '13 at 12:40beamerpresentation? – egreg Nov 14 '13 at 17:51beamerloadsamsthm. when you want to suppress the qed box, just before\end{proof}, insert\let\qedsymbol\relax. if thebeamerproof behaves the same way as\amsthm, this shouldn't persist past the\end{proof}. – barbara beeton Nov 14 '13 at 21:31