我正在尝试使用forest
包排版一棵向上生长的树。我遇到的问题是,一旦我离开第一层,树枝就会再次向下生长。以下是代码:
\begin{forest}{grow=north}
[A [B [a][b]] [C]]
\end{forest}
这给了我一棵如下的树:
我怎样才能解决这个问题?
答案1
将生长选项应用于整棵树
\documentclass{standalone}
\usepackage{forest}
\begin{document}
\begin{forest}
for tree={grow=north}
[A [B [a][b]] [C]]
\end{forest}
\end{document}