この図を作成するには、次のコードを使用します。
\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}
これは 1.0 (例: texlive 2013) ではうまく動作しますforest
が、2.0 では動作しませんforest
。
私が試したのはこれです:
\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}
答え1
定義empty nodes
\forestset{
empty nodes/.style={
for tree={calign=fixed edge angles},
delay={where content={}{shape=coordinate,for siblings={anchor=north}}{}}
}
}
見るこの答え詳細については。