Ian Jauslin
summaryrefslogtreecommitdiff
blob: 1332a68cb5428694939d2fb554673cf7ffb06f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
\documentclass{standalone}

\usepackage{tikz}
\usepackage{shapes}

\begin{document}
\begin{tikzpicture}
  \foreach \k in {0,...,3}{
    \foreach \l in {0,...,3}{
      \cross{teal}{(-\l,2*\l)++(2*\k,\k)}
    }
  }
\end{tikzpicture}
\end{document}