I'm trying to add either a word or a tree to the DP node that is connected to the main tree by the wavy lines, in the same way that the V node has the expression "smokes" below it. How can I do this?
\documentclass[12pt,a4paper]{article}
\usepackage{tikz-qtree}
\usepackage{tikz-qtree-compat}
\begin{document}
\ex.
\leavevmode\vadjust{\vspace{-\baselineskip}}\newline
\begin{tikzpicture}
\tikzset{level 1+/.style={sibling distance=2\baselineskip}}
\Tree [.\node(z){TP}; \edge[white]; ˜ [.T\1 T [.\node(y){DP}; \edge[white];
˜ [.V smokes ]]]]
\node (x) at (-4,-4) {DP} ;
\draw (x.east) to [out=0, in=180] (y.south);
\draw (x.east) to [out=0, in=180] (z.south);
%\draw[help lines] (-4,-4) grid (4,4)
\end{tikzpicture}
\end{document}
