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
87
|
% Copyright 2006 by Till Tantau
%
% This file may be distributed and/or modified
%
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU Free Documentation License.
%
% See the file doc/generic/pgf/licenses/LICENSE for more details.
\section{Pattern Library}
\label{section-library-patterns}
\begin{pgflibrary}{patterns}
The package defines patterns for filling areas.
\end{pgflibrary}
\newcommand\patternindex[1]{%
\index{#1@\protect\texttt{#1} pattern}%
\index{Patterns!#1@\protect\texttt{#1}}%
\texttt{#1}&
\begin{tikzpicture}[baseline=.5ex]
% Background
\pattern [path fading=west,pattern=checkerboard light gray]
(0,0) rectangle (5cm,2em);
\pattern [pattern=#1,pattern color=black] (0,0) rectangle +(1.5cm,2em);
\pattern [pattern=#1,pattern color=blue] (1.75,0) rectangle +(1.5cm,2em);
\pattern [pattern=#1,pattern color=red] (3.5,0) rectangle +(1.5cm,2em);
\end{tikzpicture} \\[1ex]
}
\newcommand\patternindexinherentlycolored[1]{%
\index{#1@\protect\texttt{#1} pattern}%
\index{Patterns!#1@\protect\texttt{#1}}%
\texttt{#1}&
\begin{tikzpicture}[baseline=.5ex]
% Background
\pattern [path fading=west,pattern=checkerboard light gray]
(0,0) rectangle (5cm,2em);
\pattern [pattern=#1,pattern color=blue] (0,0) rectangle +(5cm,2em);
\end{tikzpicture} \\[1ex]
}
\subsection{Form-Only Patterns}
\begin{tabular}{ll}
\emph{Pattern name} & \emph{Example (pattern in black, blue, and red
on faded checkerboard)} \\
\patternindex{horizontal lines}
\patternindex{vertical lines}
\patternindex{north east lines}
\patternindex{north west lines}
\patternindex{grid}
\patternindex{crosshatch}
\patternindex{dots}
\patternindex{crosshatch dots}
\patternindex{fivepointed stars}
\patternindex{sixpointed stars}
\patternindex{bricks}
\patternindex{checkerboard}
\end{tabular}
\subsection{Inherently Colored Patterns}
\begin{tabular}{ll}
\emph{Pattern name} & \emph{Example} \\
\patternindexinherentlycolored{checkerboard light gray}
\patternindexinherentlycolored{horizontal lines light gray}
\patternindexinherentlycolored{horizontal lines gray}
\patternindexinherentlycolored{horizontal lines dark gray}
\patternindexinherentlycolored{horizontal lines light blue}
\patternindexinherentlycolored{horizontal lines dark blue}
\patternindexinherentlycolored{crosshatch dots gray}
\patternindexinherentlycolored{crosshatch dots light steel blue}
\end{tabular}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "pgfmanual-pdftex-version"
%%% End:
|