使用 Forest 包种植树木

使用 Forest 包种植树木

是否可以使用森林包来种植一棵树,以便子项垂直堆叠,如下所示: 具有多个子节点的树节点

我最终这样做了:如果父母是 A 且有三个孩子 BCD,并且我想将所有孩子附加到如上所示的位置,我必须这样做:

\begin{forest}
for tree={
draw,
%  minimum height=2cm,
%  anchor=west,
align=center
% calign
%  child anchor=west
},
[{ROOT},  align=center
[{ A} , parent anchor=south, child anchor=north  
[{B}, parent anchor=east,  anchor=east, child anchor=east , calign=child edge 
[{C}, parent anchor=east, anchor=east, child anchor=east, calign=child edge
    [{D}, parent anchor=east, anchor=east, child anchor=east 
    ]
  ]
 ]
]
\end{forest}

如你所见,尽管它们都是 A 的子项,但我必须让 B 成为 C 的父项,让 C 成为 D 的父项。

答案1

不仅之前有几个人提供过该图表的代码,我之前也肯定使用 Forest 回答过这个问题。

如果问题中的图像链接到来源,那就容易多了,因为这可能会给我一个线索。

我知道我给出了 Forest 解决方案,因为我找到了一个,但我似乎没有给出我的答案的链接。我记得我很生气,因为我从头开始画了图,而 OP 可以链接到我可以复制粘贴和改编的代码,因为它之前已经回答过了(但也许代码不再有效或没有使用 Forest 或其他东西)。

这张图非常烦人,因为这种情况总是发生在我身上。

无论如何,我使用修改后的代码更新了 Forest v.2 的代码我的答案领英Torbjørn T. 的评论。此版本使用folder来自edges库的样式。

\documentclass[border=5pt,tikz,multi]{standalone}
\usepackage[edges]{forest}
\usetikzlibrary{arrows.meta,shadows.blur}
\forestset{%
  colour me out/.style={outer color=#1!75, inner color=#1!50, draw=darkgray, thick, blur shadow, rounded corners},
  rect/.append style={rectangle, rounded corners=2pt},
  dir tree switch/.style args={at #1}{%
    for tree={
      edge=-Latex,
      font=\sffamily,
      fit=rectangle,
    },
    where level=#1{
      for tree={
        folder,
        grow'=0,
      },
      delay={child anchor=north},
    }{},
    before typesetting nodes={
      for tree={
        content/.wrap value={\strut ##1},
      },
      if={isodd(n_children("!r"))}{
        for nodewalk/.wrap pgfmath arg={{fake=r,n=##1}{calign with current edge}}{int((n_children("!r")+1)/2)},
      }{},
    },
  },
}

\begin{document}
\begin{forest}
  dir tree switch=at 1,
  for tree={
    font=\sffamily\bfseries,
    rect,
    align=center,
    edge+={thick, draw=darkgray},
    where level=0{%
      colour me out=green!50!white,
    }{%
      if level=1{%
        colour me out=green!95!black,
      }{%
        colour me out=magenta!50!orange!75!white,
        edge+={-Triangle},
      },
    },
  }
  [Drawing\\Diagrams
    [Defining node\\and arrow styles
      [Setting shape]
      [Choosing colour]
      [Adding shading]
    ]
    [Positioning\\the nodes
      [Using a matrix
        [Absolutely]
        [Relatively]
        [Using overlays]
      ]
    ]
    [Drawing arrows\\between nodes
      [Default arrows
        [Arrow library]
        [Re-sizing tips]
        [Shortening]
        [Bending]
      ]
    ]
  ]
\end{forest}
\end{document}

森林 2 输出

相关内容