With empty nodes in tikz-qtree how do I remove the white space where the node label usually appears? In the following example I want to remove the white space for the node under Foot 3.
\documentclass[a4paper,12pt]{article}
\usepackage{tikz, tikz-qtree}
\begin{document}
\begin{tikzpicture}
\tikzset{frontier/.style={distance from root=145pt}}
\Tree [.Line [.Colon1 [.Metron1 [.Foot1 (A) B ] [.Foot2 A B ] ] [.Metron2 [.Foot3 [.\node {}; B A ] B ] ] ] [.Colon2 [.Metron3 [.Foot4 [.\node {}; (B) A ] B ] ] [.Metron4 [.Foot5 [.\node {}; B A ] B ] ] ] ]
\end{tikzpicture}
\end{document}
