森林边缘库中的空白节点

森林边缘库中的空白节点

我正在用包制作一棵树forest。这是我迄今为止从示例中尝试的文档-

\documentclass{standalone}
\usepackage[edges]{forest}

\begin{document}
\begin{forest}
for tree={grow=south,draw},
forked edges,
[[First node][Second node[Third node][Fourth node[Fifth node][Sixth node]]]]
\end{forest}
\end{document}

如果我们查看它的输出,第一个节点有一个框,里面什么都没有。我不想要那个框,但我想要框下面的线。如何实现这个?

电流输出

答案1

您可以添加draw=none到特定节点以推翻draw适用于所有节点的(因为它是在中设置的for tree)。

\documentclass{standalone}
\usepackage[edges]{forest}

\begin{document}
\begin{forest}
for tree={grow=south,draw},
forked edges,
[,draw=none
 [First node]
 [Second node
  [Third node]
  [Fourth node
   [Fifth node]
   [Sixth node]
  ]
 ]
]
\end{forest}
\end{document}

在此处输入图片描述

相关内容