2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
LaTeX-examples/tikz/topology-graph-k-3-3/topology-graph-k-3-3.tex
2013-11-28 17:28:06 +01:00

15 lines
451 B
TeX

\documentclass[varwidth=true, border=2pt]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
\foreach \x in {0,1,2}
\foreach \y in {0,1,2}{
\node (a)[point] at (\y,0) {};
\node (b)[point] at (\x,1) {};
\draw (a) -- (b);
}
\end{tikzpicture}
\end{document}