-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpgf2-titlepage.tex
86 lines (70 loc) · 2.75 KB
/
pgf2-titlepage.tex
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
% isolated Frontpage of [Tantau 2008]
% Mi 30. Apr 12:58:37 CEST 2008, lh
%
\documentclass{article}
\usepackage{tikz}
\usepackage{verbatim}
\begin{comment}
:Title: PGF 2.0 title page
:Slug: pgf2-titlepage
:Tags: PGF 2.0, Manual, Decorations, Transparency
The title page of the PGF 2.00 manual.
:Source: The TikZ & PGF manual
Thanks to `Ludger Humbert`_ for submitting a standalone version of the titlepage.
.. _Ludger Humbert: https://haspe.homeip.net/cgi-bin/pyblosxom.cgi
\end{comment}
\usetikzlibrary{%
decorations.fractals%
,decorations.pathmorphing%
,shadows%
}
\begin{document}
\parindent0pt
\null
\colorlet{mintgreen}{green!50!black!50}
\thispagestyle{empty}
\vskip3cm
\vfill
\hfil
\begin{tikzpicture}[overlay]
\coordinate (front) at (0,0);
\coordinate (horizon) at (0,.31\paperheight);
\coordinate (bottom) at (0,-.6\paperheight);
\coordinate (sky) at (0,.57\paperheight);
\coordinate (left) at (-.51\paperwidth,0);
\coordinate (right) at (.51\paperwidth,0);
\shade [bottom color=blue!30!black!10,top color=blue!30!black!50]
([yshift=-5mm]horizon -| left) rectangle (sky -| right);
\shade [bottom color=black!70!green!25,top color=black!70!green!10]
(front -| left) -- (horizon -| left)
decorate [decoration=random steps] { -- (horizon -| right) }
-- (front -| right) -- cycle;
\shade [top color=black!70!green!25,bottom color=black!25]
(front -| left) -- (horizon -| left)
decorate [decoration=random steps] { -- (horizon -| right) }
-- (front -| right) -- cycle;
\shade [top color=black!70!green!25,bottom color=black!25]
([yshift=-5mm-1pt]front -| left) rectangle ([yshift=1pt]front -| right);
\fill [black!25] (bottom -| left) rectangle ([yshift=-5mm]front -| right);
\def\nodeshadowed[#1]#2;{\node[scale=2,above,#1]{#2};\node[scale=2,
above,#1,yscale=-1,scope fading=south,opacity=0.4]{#2};}
\nodeshadowed [at={(-5,5 )},yslant=0.05]
{\Huge Ti\textcolor{orange}{\emph{k}}Z};
\nodeshadowed [at={( 0,5.3)}] {\huge \textcolor{mintgreen}{\&}};
\nodeshadowed [at={( 5,5 )},yslant=-0.05] {\Huge \textsc{PGF}};
\nodeshadowed [at={( 0,2 )}] {Manual for Version \pgftypesetversion};
\foreach \i in {0.5,0.6,...,2}
\fill [white,decoration=Koch snowflake,opacity=.9]
[shift=(horizon),shift={(rand*11,rnd*7)},scale=\i]
[double copy shadow={opacity=0.2,shadow xshift=0pt,shadow
yshift=3*\i pt,fill=white,draw=none}]
decorate {
decorate {
decorate {
(0,0) -- ++(60:1) -- ++(-60:1) -- cycle
}
}
};
\end{tikzpicture}
\vfill
\end{document}