Basically I want each new frame to show only its title first. I tried
\renewcommand<>{\frame}[1]{\beameroriginal{\frame \pause #1}}
and variations, but it did not work.
Adding \addtobeamertemplate{frametitle}{}{\pause} to the preamble should do the trick.
\documentclass{beamer}
\addtobeamertemplate{frametitle}{}{\pause}
\begin{document}
\begin{frame}
\frametitle{Frame title}
Frame content
\end{frame}
\begin{frame}
\frametitle{Other frame title}
Other frame content
\end{frame}
\end{document}
\documentclass{beamer} \addtobeamertemplate{frametitle}{}{\pause} \begin{document} \begin{frame} \frametitle{Frame title} Frame content \end{frame}
\begin{frame} \frametitle{Another frame} \begin{equation} x= y \end{equation}\pause
\begin{equation} y=x \end{equation} \end{frame}
\end{document}
– Gytis May 11 '16 at 19:56\addtocounter somewhere. I'll try to take a look at this again later.
– erik
May 11 '16 at 20:25
\frame{ \frametitle{<title>} ... }for your setup? Do you use\begin{frame}{<title>} ... \end{frame}at all? – Werner May 11 '16 at 18:26