Example: Title graphics

Published 2006-11-08 | Author: The TikZ and PGF manual

This example is from the title page of the TikZ and PGF manual.

Update:

Author: Till Tantau
Source: The PGF/TikZ manual

Download as: [PDF] [TEX]

Title graphics

Do you have a question regarding this example, TikZ or LaTeX in general? Just ask in the LaTeX Forum.
Oder frag auf Deutsch auf TeXwelt.de. En français: TeXnique.fr.

% Author: Till Tantau
% Source: The PGF/TikZ manual
\documentclass{minimal}

\usepackage{tikz}
\usetikzlibrary{trees,snakes}
\begin{document}
\pagestyle{empty}
\tikzstyle{level 1}=[sibling angle=120]
\tikzstyle{level 2}=[sibling angle=60]
\tikzstyle{level 3}=[sibling angle=30]
\tikzstyle{every node}=[fill]
\tikzstyle{edge from parent}=[snake=expanding waves,segment length=1mm,
                              segment angle=10,draw]
\begin{tikzpicture}[grow cyclic,shape=circle,very thick,level distance=13mm,
                    cap=round]
\node {} child [color=\A] foreach \A in {red,green,blue}
    { node {} child [color=\A!50!\B] foreach \B in {red,green,blue}
        { node {} child [color=\A!50!\B!50!\C] foreach \C in {black,gray,white}
            { node {} }
        }
    };
\end{tikzpicture}

\end{document}

Comments

  • #1 My website, March 31, 2013 at 12:24 p.m.

    Superb post however , I was wanting to know if you could write a litte more on this topic? I'd be very thankful if you could elaborate a little bit more. Thank you!

Adding comments is currently not enabled.