This should be a cakewalk but for some reason I can't find the key to it.
Following Alan Munn's suggestion, I have recently switched from qtree to forest for tree diagrams. Using the code:
\documentclass[11pt,a4paper,oneside,notitlepage]{book}
%...
\usepackage[linguistics]{forest}
%...
\begin{document}
%...
\begin{forest}
[A [B [C ] [D ] [E,edge=dotted ] ] [F [G ] ] ]
\end{forest}
%...
\end{document}
the following tree obtains:
How can I set a specific (shorter) length for the dotted line? I would like for node E to be positioned above the level of C, D, and G.
As the dotted line suggests, E is only remotely connected with what the tree represents, and I don't want it to be on the same level of the other bottom nodes.



