mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-19 11:38:05 +02:00
15 lines
672 B
TeX
15 lines
672 B
TeX
\documentclass[varwidth=true, border=2pt]{standalone}
|
|
|
|
\usepackage{tikz}
|
|
\usetikzlibrary{decorations.fractals}
|
|
\usepackage{pgfplots}
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}[scale=3,decoration=Koch snowflake]
|
|
% \draw[fill=gray!10] { { { { (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
|
|
% \draw[fill=gray!10] { { { decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
|
|
% \draw[fill=gray!10] { { decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
|
|
% \draw[fill=gray!10] { decorate{ decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
|
|
\draw[fill=gray!10] decorate{ decorate{ decorate{ decorate{ (0,0) -- (3,0) -- (1.5,-3) -- (0,0)}}}};
|
|
\end{tikzpicture}
|
|
\end{document}
|