Having the following, working code
Code: Select all
\begin{tikzpicture}[x=.5cm,y=.5cm]
\foreach \x in {1, 2, 3, 4, 8, 9, 10, 11} {
\foreach \y in {1, 2, 3, 4, 5}{
\fill [white] (\x,\y) circle (0.3);
\draw [TheColor] (\x,\y) circle (0.3);
}
}
\end{tikzpicture}
Code: Select all
\begin{tikzpicture}[x=.5cm,y=.5cm]
counter \i= 0;
\foreach \x in {1, 2, 3, 4, 8, 9, 10, 11} {
\foreach \y in {1, 2, 3, 4, 5}{
\fill [white] (\x,\y) circle (0.3);
\ifnum \i in {1, 5, 7}{
\fill [black] (\x,\y) circle (0.3);
}
\draw [TheColor] (\x,\y) circle (0.3);
\i ++;
}
}
\end{tikzpicture}