答案1
使用 可以很容易地做到这一点forest
。您可以使用no edge
从节点移除边,然后手动绘制交叉分支。
免责声明:作为句法学家,我不认可以下树。:)
\documentclass{article}
\usepackage[linguistics]{forest}
\begin{document}
\begin{forest}where n children=0{tier=word}{}
[S,name=S
[NP [D [die] ] [N [Mutter] ]]
[VP
[V [singt]]
[NP [D [die] ] [N [Kinder] ]]
[NP,name=NP,no edge [D [jeden]] [N [Abend]]]
[PP
[P [in] ]
[NP [D [den] ] [N [Schlaf] ]]
]
]
]
\draw (S.south) -- (NP.north west); % or use (NP.north)
\end{forest}
\end{document}