[Tex/LaTex] Add a node without content to a tree in forest

foresttrees

I switched to forest and now I wonder how to draw the following picture:
enter image description here

I have the code below, but I cannot find out how to get the connection to dass right. I tried phantom nodes but then the lines are not drawn.

\documentclass{article}

\usepackage{forest}
\forestset{
sn edges/.style={for tree={parent anchor=south, child anchor=north,align=center,base=bottom,where n children=0{tier=word}{}}}, 
background tree/.style={for tree={text opacity=0.2,draw opacity=0.2,edge={draw opacity=0.2}}}
}

\begin{document}

\begin{forest}
sn edges
[{V3[+{\sc fin},+{\sc mc}]}
  [{N2[acc,+{\sc top}]} [wen\\who] ]
  [{V3[+{\sc mc}]/N2[acc]}
    [{V[9,+{\sc mc}]} [glaubt\\believes] ]
    [{N2[nom]} [du\\you] ] 
    [{V3[+dass,$-${\sc mc}]/N2[acc]} 
      [dass\\that]
      [{V3[$-$dass,$-${\sc mc}]/N2[acc]} 
         [{N2[nom]} [ich\\I] ]
         [{V[6,$-${\sc mc}]} [gesehen habe\\seen have,triangle] ] ] ] ] ]
\end{forest}

\end{document}

Best Answer

Add an empty node and change the shape for empty nodes to coordinate using

empty nodes/.style={
  delay={where content={}{shape=coordinate,for parent={for children={anchor=north}}}{}}}
}

enter image description here

Code:

\documentclass{article}

\usepackage{forest}
\forestset{
sn edges/.style={for tree={parent anchor=south, child anchor=north,align=center,base=bottom,where n children=0{tier=word}{}}}, 
background tree/.style={for tree={text opacity=0.2,draw opacity=0.2,edge={draw opacity=0.2}}},
empty nodes/.style={
  delay={where content={}{shape=coordinate,for parent={for children={anchor=north}}}{}}}
}

\begin{document}

\begin{forest}
sn edges,empty nodes
[{V3[+{\sc fin},+{\sc mc}]}
  [{N2[acc,+{\sc top}]} [wen\\who] ]
  [{V3[+{\sc mc}]/N2[acc]}
    [{V[9,+{\sc mc}]} [glaubt\\believes] ]
    [{N2[nom]} [du\\you] ] 
    [{V3[+dass,$-${\sc mc}]/N2[acc]} 
      [{}[dass\\that] ]
      [{V3[$-$dass,$-${\sc mc}]/N2[acc]} 
         [{N2[nom]} [ich\\I] ]
         [{V[6,$-${\sc mc}]} [gesehen habe\\seen have,triangle] ] ] ] ] ]
\end{forest}

\end{document}