I want to animate a complicated process which in general works very well with the "visible on" keyword, but I want to briefly interrupt the animation and insert a slide to introduce a new concept / method... with which it is now possible to conclude the process.
However, with "visible on", it will generate the whole process and I have no control over the single slides or where to put them. Is there a way to achieve this goal?
The most flexible and desirable solution would be if I could generate slides based on a range... e.g.:
\begin{frame}{Primitive process}
\begin{tikzpicture}[range=<1-2>] % range: only generate slides 1-2 of this diagram
\node[visible on=<1>] {Primitive};
\node[visible on=<2>] {elements};
\node[visible on=<3>] {Very complicated};
\node[visible on=<4>] {elements};
\end{tikzpicture}
\end{frame}
\begin{frame}{Introducing new complicated concept}
\bi
\ii some
\ii explanation
\ii
\end{frame}
\begin{frame}{Now we're ready!}
\begin{tikzpicture}[range=<2->] % generate all the slides except the first
% the same as above (as \input'ed from an external file)
\end{tikzpicture}
\end{frame}
visible on,\bi,\iiare missing. – samcarter_is_at_topanswers.xyz Oct 24 '17 at 11:37