I want to set the following picture:

The following forestcode almost does it:
\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree={fit=band,parent anchor=south,child anchor=north}
[ForceP
[]
[Force$'$
[Force$^0$]
[TopP
[]
[Top$'$
[Top$^0$]
[FocP
[]
[Foc$'$
[Foc$^0$]
[TopP
[]
[Top$'$
[Top$^0$]
[FinP
[]
[Fin$'$
[Fin$^0$]
[IP/AgrSP]]]]]]]]]]]
\end{forest}
\end{document}
However, the arcs that go towards the left do not have the right angle:

Now, the question is: Do I have to add \struts to all empty nodes or is there a nicer way to say that the empty nodes have the same height as their sisters to the right?


parent anchor=south,child anchor=northso as to reproduce exactly the output in the picture. – egreg Apr 23 '15 at 13:13