I'm new to tikz-qtree, and can't find an automatic way to do something that qtree did very nicely. With qtree, if you don't have a label for a single intermediate node, you get a straight line from the grandmother to the granddaughter. With tikz-qtree, you get a "kink". Compare the following:
With qtree:
\documentclass{article}
\usepackage{qtree}
\begin{document}
\Tree [ Wiiiiiiiiiide [ nar- -row ] ]
\Tree [ nrw [ wiiiiiiiiiiiii- -iiiiiiiiiiiide ] ]
\end{document}
With tikz-qtree
\documentclass{article}
\usepackage{tikz,tikz-qtree}
\begin{document}
\Tree [ Wiiiiiiiiiide [ nar- -row ] ]
\Tree [ nrw [ wiiiiiiiiiiiii- -iiiiiiiiiiiide ] ]
\end{document}
Is there any way to get the nice straight line in tikz-qtree, or do I have to adjust it manually? Thanks in advance.

child anchor=northis probably better thananchor=north. – cfr Aug 12 '15 at 01:23forestbe aware that it needs some tweaking to get trees that aren't too compact sometimes. See Making a certain tree style the default for forest for how to make a default style, which will help a lot. – Alan Munn Aug 12 '15 at 18:59child anchor=parentis probably better thanchild anchor=north, although possibly not in a linguistics context. – cfr Dec 16 '17 at 04:50