How can I ensure that the arrow from $t_2$ curves below "of"? How can I use \qroof{some company}.DP and yet still have the arrow pointing to it?
\documentclass[12pt,a4paper]{article}
\usepackage{tikz-qtree}
\usepackage{tikz-qtree-compat}
\usepackage{ulem}
\begin{document}
\begin{tikzpicture}
\Tree
[.S
[.DP [.D Every ]
[.NP [.DP$_1$ \node (ne) {PRO}; ]
[.NP $\lambda_1$
[.NP \node (ue) {some company};
[.S
[.$\lambda_1$ ]
[.NP [.\node [circle,draw] (me) {t$_{1}$} ; ]
[.N$’$ [.N representative ] [.PP [.P of ]
[. \node [circle,draw] (le) {t$_{2}$} ; ]
]
]
]
]
]
]
]
]
[.VP [.V saw ] [. \qroof{a sample}.DP ]]
]
\draw[semithick, dashed, ->] (le)..controls +(south west:6) and +(south:6) .. (ue);
\draw[semithick, dashed, ->] (me)..controls +(south west:3) and +(south:3) .. (ne);
\end{tikzpicture}
\begin{tikzpicture}
\Tree [.VP John [.V$’$ [.V loves ] \qroof{the man}.DP ]]
\end{tikzpicture}
\end{document}



$t_2$comes from) can fix the colliding line. Something like\draw[semithick, dashed, ->] (le)..controls +(south:5) and +(south:6) .. (ue);should work. I don't quite understand the second part of the question, could you explain what you mean? – Christopher Jul 28 '15 at 10:10