Can someone explain this code. How to make beamer overlays with Tikz node. In particular I need to know
- Why do we get three copies of a given slide. If I need to make more than two copies, what should be changed?
- How does
onslide/.code arg={}andtemporal/.code arg={}work?
\temporaland\altmacros are frombeamer, see p. 81. The interesting part is\pgfkeysalsothat does forward its argument to the key-parser of PGFkeys without setting a parent keypath (like\tikzsetsets/tikz). So\onslide<3->{highlight}applies thehighlightkey (in this case a style) to slide 3 and all thereafter. (However if there are no specification in that frame for slide after 3 it will be the last one.) – Qrrbrbirlbel Jun 29 '16 at 19:47