Wie kann ich die Blätter eines TikZ-Baums auf gleiche Höhe ausrichten?
In diesem Baum, den ich mit `tikz-qtree` erstellt habe, sind die child nodes unterschiedlich groß, und der Baum sieht nicht nicht gut aus:
\documentclass{article}
\usepackage{tikz-qtree}
\newcommand*{\knoten}[1]{\tikz\node[draw,thick,rounded corners,
fill=yellow!15,inner sep=.8ex]{#1};}
\begin{document}
\begin{tikzpicture}[every tree node/.style={align=center}]
\Tree
[.{\knoten{Gruppieren in \TeX}}
[.{\knoten{{$\mathtt{\{}$} \ldots\ $\mathtt{\}}$}} ]
[.{\knoten{\texttt{\char`\\ begingroup} \\ \ldots \\ \texttt{\char`\\ endgroup}}} ]
[.{\knoten{\texttt{\char`\\ bgroup} \\ \ldots \\ \texttt{\char`\\ egroup}}} ]]
\end{tikzpicture}
\end{document}
![Baum][1]
Wie kann ich einstellen, dass alle Blätter an ihrer Oberkante aneinander ausgerichtet sind?
[1]: http://i.imgur.com/Lpre4Oo.png