I am trying to draw a tree using the tikz-qtree package, however I am having issues with the nodes of the tree being not centered.
\documentclass[10pt]{article}
\usepackage{tikz}
\usetikzlibrary{trees}
\usepackage{tikz-qtree}
\begin{document}
\begin{tikzpicture}
\node{\Tree
[.{ABC}
[.\textbf{D}
[.AA BB ] ]
[.\textbf{E}
[.CC DD ]
[.EEEEEE FF ] ]
[.\textbf{F}
[.GG HH ] ]
]};\\
\end{tikzpicture}
\end{document}
Which produces the following Output:

How do I get the tree to center its nodes correctly? I have tried playing with some options of the package, such as
[level 1/.style={node distance=40mm}]
This, however, didn't yield any result and left the tree unchanged. Does anyone have an idea on how to fix this?


[sibling distance=30pt](as an example) it will still give you an angled middle branch. This way the space between AA/CC is equivalent to the space between EEEEEE/GG. I'll post a manual solution in a few minutes. – Alan Munn Feb 13 '12 at 23:07