I'm trying to use \pause in align mode but it's not working. I ended up using onslide which it works fine. However, when I use both of them in one frame, some of onslide work while the other are not. This is a minimal example to regenerate the problem.
\documentclass[t]{beamer}
\usepackage{amsmath}
\begin{document}
\begin{frame}
AAAAA CCCCCC \\
\pause
AAAAA CCCCCC
\begin{align*}
\onslide<1->{a &= b \\}
\onslide<2->{b &= c \\}
\onslide<3>{ a &= c}
\end{align*}
\end{frame}
\end{document}
As you can see, the first two lines show up together. While the third line appears in the next slide. When I comment out \pause, the problem goes away. How to overcome this issue?
align, number of equations show up before the equations? – CroCo Oct 16 '16 at 10:37alignenvironment is set twice, and this makes life very tricky: this is mentioned in thebeamermanual – Joseph Wright Oct 16 '16 at 10:39