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
|
%%
%% Ein Beispiel der DANTE-Edition
%%
%%
%% Copyright (C) 2010 Herbert Voss
%%
%% 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.
%%
%%
%% ====
% Show page(s) 1
%%
\documentclass[]{exaarticle}
\pagestyle{empty}
\setlength\textwidth{352.81416pt}
\setlength\parindent{0pt}
\usepackage[a3paper]{geometry}
\StartShownPreambleCommands
\usepackage{pst-mirror,pst-grad}
\StopShownPreambleCommands
\begin{document}
\newpsstyle{GradWhiteYellow}{fillstyle=gradient,gradbegin=yellow,gradend=yellow!20,
linecolor=yellow!50,GradientCircle=true,gradmidpoint=0,GradientPos={(1,1)}}
\begin{pspicture}(-8,-10)(8,10)
\pscircle[style=GradWhiteYellow]{7.07}
\pstSphereGrid[linecolor=red,grille=10,Ymin=-50,Ymax=50,Xmax=80,Xmin=-80,
normale=0 0](20,0,0)
\pstSphereGrid[linecolor=blue,grille=10,Ymin=-40,Ymax=-20,Xmax=80,Xmin=-80,
normale=0 90](40,0,-10)
\pstTextSphere[fillstyle=solid,fillcolor=red,normale=0 0,fontscale=30,
PSfont=Bookman-demibold,yO=0](20,0,10){PSTricks}
\pstTextSphere[fillstyle=solid,fillcolor=blue,normale=0 90,fontscale=10,
PSfont=Helvetica,yO=2.5](10,0,-10){f\string\374r TeX und LaTeX}%\374->ü
\end{pspicture}
\end{document}
|