blob: 6e726d8aadf96685d649ae4b605abf007ab2e3ef (
plain)
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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% bsp110.tex ---
%% Autor : Herbert Voss <voss@perce.de>
%% Datum : 2004-04-25
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt]{article}
\usepackage{pstricks}
\usepackage{pst-blur}
\usepackage{pst-char}
\usepackage{pst-slpe}
\usepackage{graphicx}
\parindent=0pt
\pagestyle{empty}
\begin{document}
\begin{center}
\DeclareFixedFont{\RM}{T1}{ptm}{b}{n}{3.5cm}
\DeclareFixedFont{\Rm}{T1}{ptm}{m}{n}{2mm}
\psset{shadow=true,blur=true,shadowsize=10pt,%
blurradius=5pt}
\begin{pspicture}(\linewidth,3.5cm)
\psset{fillstyle=ccslopes}
\resizebox{\linewidth}{!}{\pscharpath{\RM PostScript}}
\end{pspicture}
\begin{pspicture}(\linewidth,3.5cm)
\psset{fillstyle=ccslope}
\rput(0.5\linewidth,1.75cm){\pscharpath{\RM with}}
\end{pspicture}
\begin{pspicture}(\linewidth,3.5cm)
\psset{fillstyle=slopes}
\rput(0.5\linewidth,1.75cm){\pscharpath{\RM PSTricks}}
\end{pspicture}
\end{center}
%\figcaption{\texttt{bsp74.tex}: :-) \ldots}
\end{document}
|