mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
10 lines
310 B
TeX
10 lines
310 B
TeX
\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}
|