如何用 Tex 编写这棵树

如何用 Tex 编写这棵树

我想用 tex 写下面这张图。我是 tex 中绘制分支的新手。所以我看了一些例子在这个网站。但是找不到这个类型。

最后又该如何加点呢?

下面给出一张图:

谢谢

答案1

也许是这样的,改编自艾伦的回答

\documentclass{article}
\usepackage{tkz-graph}
\usetikzlibrary{positioning}
\renewcommand*{\EdgeLineWidth}{0.25pt}

\begin{document}
    \begin{tikzpicture}[node distance=-0.3cm]
    \GraphInit[vstyle=Empty]
    \Vertex{A}
    \Vertex[x=-0.5,y=-1]{B}
    \Vertex[x=0.5, y=-1]{C}
    \Vertex[x=0, y=-2]{D}
    \Vertex[x=-1, y=-2]{E}
    \Vertex[x=1, y=-2]{F}
    \Vertex[x=-1.5, y=-3]{G}
    \Vertex[x=-0.5, y=-3]{H}
    \Vertex[x=0.5, y=-3]{I}
    \Vertex[x=1.5, y=-3]{J}
    \Edges(B,A,C)
    \Edges(E,B,D,C,F)
    \Edges(G,E,H,D,I,F,J)
    \node[below=of G] (dG) {$\vdots$};
    \node[below=of H] (dH) {$\vdots$};
    \node[below=of I] (dI) {$\vdots$};
    \node[below=of J] (dJ) {$\vdots$};
    \end{tikzpicture}
\end{document}

在此处输入图片描述

由于整个事物都处于tikzpicture环境中,因此添加点只是添加一些额外节点的问题,其中可能有很多不同的方法可以做到这一点。

相关内容