invisible shows items that are hidden with transparent
After trying to adapt this answer to "Beamer: Uncover underbrace", I find that when I change transparent to invisible in \setbeamercovered I am not getting the result I would have expected. When transparent, I get the desired uncovering order, but this seems not to be preserved as I move to invisible.
MWE
\documentclass{beamer}
\setbeamercovered{transparent} % Change to invisible.
\begin{document}
\begin{frame}
\begin{align}
\onslide<1->{\text{Something} & = \text{Slide 1 onwards} \\[1em]}
& \qquad \onslide<2->{+} \onslide<3-> \underbrace{ \onslide<2->
\text{Slide 2 onwards}
\onslide<3-> }_{\text{Slide 3 onwards}} \onslide<2->
\end{align}
\end{frame}
\end{document}
align*so overlooked the\notag. Although this fixes the problem, is there an explanation as to the behaviour in the original question? – oliversm Sep 12 '19 at 15:01