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
|
%% BEGIN pst-user.tex
%%
%% LaTeX file pst-user.tex. Source for the PSTricks User's Guide.
%%
%% COPYRIGHT 1993-2003, by Timothy Van Zandt, tvz@econ.insead.fr
%% COPYRIGHT 2008, by Herbert Voss, voss@pstricks.de
%%
%% This program can be redistributed and/or modified under the terms
%% of the Artistic License.
%% A copy of that license is included in the file artistic.txt.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% Under normal circumstances, you do not need to LaTeX this file because
%% the User's Guide is distributed with the PSTricks package, already
%% typeset and converted to PDF in the file pst-user.pdf.
%%
%% If you do need/want to run it again, here is what to do:
%%
%% * You must have installed the PSTricks package.
%%
%% * You must have the LaTeX packages `fancybox', `fancyvrb', `geometry',
%% `hyperref' and the file "pst-user.cls" which is the document class
%% to format this documentation.
%%
%% * An index, pst-user.ind, is also distributed with PSTricks. You
%% can use makeindex, without any special styles, to remake the index.
%%
%% * Style options:
%% a4paper : For A4 paper.
%% twoside : For two-sided printing.
%% 2up : For two-up printing.
%% makeindex : Create a new idx file for making an index.
%% (it is not necessary to remake the index,
%% if you make no other changes.)
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\listfiles
%\documentclass[a4paper]{pst-user}
%\documentclass[11pt,makeindex]{pst-user}
\documentclass[11pt]{pst-user}
\def\Date{07/12/10}
\def\Version{1.5}
\includeonly{%
psd-cove,%
psd-esse,%
psd-basi,%
psd-para,%
psd-cust,%
psd-pict,%
psd-text,%
psd-node,%
psd-tree,%
psd-fill,%
psd-3d,%
psd-spec,%
psd-help%
}
\makeindex % Comment it to do regenerate the index
\begin{document}
\include{psd-cove} % Cover page; Table of Contents
\include{psd-esse} % Welcome to PSTricks; The essentials
\include{psd-basi} % Basic graphics objects
\include{psd-para} % More graphics parameters
\include{psd-cust} % Custom graphics
\include{psd-pict} % Picture tools
\include{psd-text} % Text tricks
\include{psd-node} % Nodes and node connections
\include{psd-tree} % Trees
\include{psd-fill} % Filling and tilings
\include{psd-3d} % 3d graphics
\include{psd-spec} % Special Tricks
\include{psd-help} % Help (appendix)
\PrintUserIndex % Comment out to suppress index
\QuickReference % Comment out to suppress quick reference
\end{document}
%% END pst-user.tex
|