Eu uso o seguinte código para produzir esta figura:
\documentclass{article}
\usepackage{forest}
\forestset{
sn edges/.style={for tree={parent anchor=south, child anchor=north,base=top},
where n children=0{tier=word}{}
}}
% auxiliary nodes without node label
\forestset{
empty nodes/.style={
delay={where content={}{shape=coordinate,for parent={for children={anchor=north}}}{}}}
}
\begin{document}
\begin{forest}
sn edges, empty nodes
[{}
[{} [{} [Mummy]]
[{} [must]]
[{} [leave]]]
[{} [now]]]
\end{forest}
\end{document}
Isso funciona bem para forest
1.0 (por exemplo, texlive 2013), mas não consigo fazê-lo funcionar para forest
2.0.
Isto é o que eu tentei:
\documentclass{article}
\usepackage{forest}
\useforestlibrary{linguistics}
\forestapplylibrarydefaults{linguistics}
\forestset{
sn edges/.style={for tree={parent anchor=south, child anchor=north,base=top},
where n children=0{tier=word}{}
}}
\begin{document}
\begin{forest}
sn edges
[{}, nice empty nodes
[{} [{} [Mummy]]
[{} [must]]
[{} [leave]]]
[{} [now]]]
\end{forest}
\end{document}
Responder1
Defina empty nodes
como
\forestset{
empty nodes/.style={
for tree={calign=fixed edge angles},
delay={where content={}{shape=coordinate,for siblings={anchor=north}}{}}
}
}
Veresta respostapara detalhes.