Assume I have a tree of the following form:
\node (r) {Root}
child { node (c1) {Left Child} }
child { node (c2) {Right Child} }
;
Now, I want to put this into a beamer frame and apply \only and \uncover to individual \node; elements. But if I have one huge tree, I cannot do that. So is there a way to decouple the child nodes, and refer to the parent node by name?
\usetikzlibrary{overlay-beamer-styles}library and try\node (r) {Root} child { node[visible on=<2->] (c1) {Left Child} } child { node[visible on=<3->] (c2) {Right Child} } ;No guarantee that it works because there is no MWE to play with, as already explained by @samcarter. (@samcarter I need to take off and have no interest in answering this question, but will be happy to use my remaining upvote for today for your answer. ;-) – Aug 22 '18 at 20:14\uncoverwas a motivation why I need to uncover them. Yourvisible ontrick doesn't work, because it doesn't hide the arrows between the nodes, only the node itself. – bitmask Aug 22 '18 at 20:42