答案1
像这样:
\documentclass[border=3.141592]{standalone}
\usepackage[linguistics]{forest}
\usetikzlibrary{arrows.meta}
\tikzset{>=Straight Barb}
\begin{document}
\begin{forest}
[AgrO
[AgrO,name=AgrO0]
[$v$
[\phantom{V}]
[V
[\phantom{t}]
[to,name=O]
]
]
]
\draw[<->,densely dashed] (O) -- ++ (0,-1) -| (AgrO0)
node[pos=0.25,below] {check};
\end{forest}
\end{document}
不使用库也可以实现相同的结果linguistics
,但是您需要相应地定义节点锚点:
\documentclass[border=3.141592]{standalone}
\usepackage{forest}
\usetikzlibrary{arrows.meta}
\tikzset{>=Straight Barb}
\begin{document}
\begin{forest}
for tree = {parent anchor=south,
child anchor=north}
% tree body