I want to write this following picture in tex. I am new in drawing branching in tex. So I saw some examples in this site. But could not find this type.
Again how to put dots in the end?
A picture is given below:
I want to write this following picture in tex. I am new in drawing branching in tex. So I saw some examples in this site. But could not find this type.
A picture is given below:
Maybe something like this, adapted from Alan's answer:
\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}
Since the whole thing is in a tikzpicture environment, adding dots is just a matter of adding some extra nodes, of which there are probably many different ways of doing so.
tikzorpgfplotsgraphics. – epR8GaYuh Jul 26 '17 at 06:21