I drew a tree with the qtree package. However, this tree has no consistent baseline.
Screenshot:

MWE:
\documentclass{scrreprt}
\usepackage{qtree}
\begin{document}
\Tree[.table
[.thead
[.tr
[.th [.\textit{Vorname} ] ]
[.th [.\textit{Nachname} ] ]
]
]
[.tbody
[.tr
[.td [.\textit{Donald} ] ]
[.td [.\textit{Duck} ] ]
]
]
]
\end{document}
How do I get a consistent baseline?
