2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/GeoTopo/figures/topology-graph-k-3-3.tex

11 lines
310 B
TeX
Raw Normal View History

2013-11-28 17:28:06 +01:00
\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}