برای این منظور میتوانید به راهنمای بسته در این آدرس http://www.ctan.org/pkg/tkz-graph مراجعه کنید. اما بازهم یک مثال جامع در زیر آمده است که لازم است کمی در آن تامل کنید.
\documentclass{article}
\usepackage{tkz-graph}
\begin{document}
\begin{tikzpicture}
\renewcommand*{\VertexInterMinSize}{10pt}
\Vertex{A}
\Vertex[x=2, y=0]{B}
\Vertex[a=90, d=2cm]{C}
\Vertex[position={below of=A}]{D}
\Vertex[x=-2, y=0, empty=false, NoLabel=false, LabelOut,
L=\sum, Math, Ldist=.2cm, Lpos=45]{E}
\tikzstyle{VertexStyle}=[shape = circle,
shading = ball,
ball color = black,%
minimum size =10pt]
\Vertex[x=-4, y=0, empty=false, NoLabel=false, LabelOut, \
L=\sum, Math, Ldist=.2cm, Lpos=45]{F}
\end{tikzpicture}
\end{document}