树与分支

树与分支

我想在 Tikz 中绘制以下图片(我在艾佩)。

在此处输入图片描述

我只能使用下面的代码来绘制下面的图片。

在此处输入图片描述

\documentclass[tikz, border=5pt]{standalone}

\begin{document}
\begin{tikzpicture}[
   grow'=up,
  sibling distance = 3cm
]
  \coordinate 
    child {
        child {node {}}
        child {node {}}
    }
  ;
\end{tikzpicture}
\end{document}

有人可以帮我用 Tikz 画这幅画吗?

提前致谢。

答案1

像这样?

在此处输入图片描述

使用该forest包相对容易:

\documentclass[border=3.14159mm]{standalone}
\usepackage{forest}

\begin{document}
    \begin{forest}
for tree={
% nodes 
    minimum width = 4em,
            delay = {where content={}{shape=coordinate}{},
% tree
    calign=fixed edge angles,
    calign angle=60,      
    grow=north,
          },
      }
% tree body
[
    [
        [
            [,tier=L]
            [
                []
                []
            ]
        ]
    [~,phantom,fit=band]
        [
            [,tier=L]
            [
                [,tier=L]
                []
            ]
        ]
    ]
]
\end{forest}
\end{document}

相关内容