I'm trying to do a beamer animation of a parse of a simple binary branching tree. I'd like to either use different colored branches and node labels to code the different steps of the parser and/or animate the parse. I don't know how to use \pause in the middle of a tree. Is that possible?
If I try to just do separate frames for each stage of the tree, LaTeX automatically resizes everything, so one node takes up a huge space on slide one, but less on slide two when it's joined with its daughters ... so it looks weird. Not like a structure that's being built one step at a time.
Any suggestions would be much appreciated!
{\Tree [.1 [.2 a ] [.3 [.4 b ] [.5 c ] ] ]}
tikz-qtree. See Beamer & TikZ: gradually unveil trees which is related, although not an exact duplicate, since it doesn't refer toqtree. – Alan Munn Mar 13 '12 at 13:53tikz-qtree. See How to specify left and right node of a tikz-qtree and How do I make an unbalanced binary tree for tips on how to add styles to particular edges or nodes in atikz-qtree. – Alan Munn Mar 13 '12 at 14:03