summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/latexindent/success/tikz4.tex
blob: 97830271b3fdf6e950f16dc14ffead2bd877421b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% arara: indent: {overwrite: true, silent: on}
\documentclass{article}

% in the preamble
% nothing
% should happend
\foreach \x in {0,1,2,3,4}{
	\foreach \y in {0,1,2,3,4}{
		\foreach \z in {0,1,2,3,4}{
			\fill[black] (\x, \y, \z) circle (0.1);
		}
	}
};
\usepackage{tikz}

\begin{document}
\begin{tikzpicture}
	\foreach \x in {0,1,2,3,4}{
		\foreach \y in {0,1,2,3,4}{
			\foreach \z in {0,1,2,3,4}{
				\fill[black] (\x, \y, \z) circle (0.1);
			}
		}
	};
\end{tikzpicture}
\end{document}