É basicamente a mesma pergunta queFloresta: Criar nó fantasma que não ocupa espaço?mas a solução oferecida lá não funciona com a floresta 2.1.5. Quero que o S fantasma não ocupe espaço. Tentei definir a linha de base para o nó fantasma, mas isso não teve nenhum efeito.
\documentclass{article}
\usepackage{forest}
\useforestlibrary{linguistics}
\begin{document}
\noindent
This is some very informative text, that is very informative.\\
\begin{forest}
[\phantom{S}
[S, no edge, baseline
[NP,name=np11
[he]]
[VP, name=vp1
[V,name=v1 [knows]]]]
[S, no edge, name=s2
[V, name=vcoord, no edge [and, name=and, no edge]]
[VP
[V,name=v2 [loves]]
[NP, name=np22 [this record, roof]]]]]
\draw (s2.south)--(np11.north)
(vp1.south)--(np22.north);
\draw[thick] (vcoord.south)--(v1.north)
(vcoord.south)--(v2.north)
(vcoord.south)--(and.north);
\end{forest}
\end{document}
Responder1
A solução é usar a phantom
tecla forest
em vez da \phantom
macro, o que apenas torna o S invisível.
\documentclass{article}
\usepackage[linguistics]{forest}
\begin{document}
\noindent
This is some very informative text, that is very informative.\\
\begin{forest}
[S, phantom
[S, no edge, baseline
[NP,name=np11
[he]]
[VP, name=vp1
[V,name=v1 [knows]]]]
[S, no edge, name=s2
[V, name=vcoord, no edge [and, name=and, no edge]]
[VP
[V,name=v2 [loves]]
[NP, name=np22 [this record, roof]]]]]
\draw (s2.south)--(np11.north)
(vp1.south)--(np22.north);
\draw[thick] (vcoord.south)--(v1.north)
(vcoord.south)--(v2.north)
(vcoord.south)--(and.north);
\end{forest}
\end{document}