Ian Jauslin
summaryrefslogtreecommitdiff
blob: 904346b244f2ea2b616ce0f9d38555ebe502fc0d (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{1,...,4}{
  \foreach\l in{1,...,4}{
    \diamond{cyan}{(\k+\l,\k-\l)}
  }
}
\end{tikzpicture}
\end{document}