1

The following code

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{decorations.fractals}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}[scale=3,decoration=Koch snowflake]
\draw decorate{ (0,0) -- (3,0) };
\draw decorate{ decorate{ (0,-1) -- (3,-1) }};
\draw decorate{ decorate{ decorate{ (0,-2) -- (3,-2) }}};
\draw decorate{ decorate{ decorate{ decorate{ (0,-3) -- (3,-3) }}}};
\end{tikzpicture}

\end{document}

Gives me the following picture:

enter image description here

To emphasize the initiator and I'd like the first figure to be a straight line, like on this picture:

enter image description here
(source: vanderbilt.edu)

The problem is that I don't quite understand what the numbers { (0,0) -- (3,0) } mean, and being new to TeX, I also don't know where to look it up.

Leo
  • 399

0 Answers0