Imagine a simple tree:
\begin{tikzpicture}
\node {Selbstregulation}
[edge from parent fork down]
child {node {Kognition}}
child {node {Metakognition}
child {node {Planung}}
child {node {Monotoring}}
child {node {Regulation}}
}
\end{tikzpicture}
Is it possible to unveil the child nodes step by step using overlays in beamer? I tried with the \onslide command at several positions around child, but it doesn't work...
Any hints? - Thanks.