答案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
环境中,因此添加点只是添加一些额外节点的问题,其中可能有很多不同的方法可以做到这一点。