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
|
%%
%% The LaTeX Graphics Companion, 2ed (first printing May 2007)
%%
%% Example 5-12-15 on page 275.
%%
%% Copyright (C) 2007 Michel Goossens, Frank Mittelbach, Denis Roegel, Sebastian Rahtz, Herbert Vo\ss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
\documentclass{ttctexa}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{111.83385pt}
%
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\StartShownPreambleCommands
\usepackage{pstricks}
\newsavebox\TBox \savebox\TBox{\parbox{4cm}{%
The PSTricks project was started by Timothy Van Zandt long time
ago and is one of the oldest \TeX\ packages still in use. `I
started in 1991. Initially I was just trying to develop tools
for my own use. Then I thought it would be nice to package them
so that others could use them. It soon became tempting to add
lots of features, not just the ones I needed. When this became
so interesting that it interfered with my day ``job'', I gave
up the project ``cold turkey'', in 1994.' --- Timothy Van Zandt
Other people who where involved in this project are Denis Girou,
Sebastian Rahtz, and Herbert Vo\ss}}
\StopShownPreambleCommands
\begin{document}
\begin{pspicture}(-2,-2)(2,2)
\begin{psclip}{\pscircle[linestyle=none]
(0.5\wd\TBox,-0.15\ht\TBox){2cm}}
\usebox\TBox
\end{psclip}
\end{pspicture}
\end{document}
|