summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/pstricks/voss/bsp331.tex
blob: 007b4ed74ba8f5c6683aabea5eb0d70657a562b2 (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
\listfiles
\documentclass{article}
\usepackage{pstricks,multido}

\definecolorseries{testA}{rgb}{last}{blue}{yellow}
\resetcolorseries[300]{testA}%  defines the series with 200 colors
\definecolorseries{testC}{cmyk}{last}{white}[cmyk]{1,0,0,0}
\resetcolorseries[11]{testC}%  cyan series with 10 colors
\definecolorseries{testM}{cmyk}{last}{white}[cmyk]{0,1,0,0}
\resetcolorseries[11]{testM}%  magenta series with 10 colors
\definecolorseries{testY}{cmyk}{last}{white}[cmyk]{0,0,1,0}
\resetcolorseries[11]{testY}%  yellow series with 10 colors
\definecolorseries{testK}{cmyk}{last}{white}[cmyk]{0,0,0,1}
\resetcolorseries[11]{testK}%  black series with 10 colors

\parindent=0pt
\pagestyle{empty}

\begin{document}

\psset{unit=1bp,linewidth=1.2pt}
\begin{pspicture}(300,50)
  \multido{\nC=1+1}{300}{%
    \psline[linecolor={testA!![\nC]}](\nC,0)(\nC,50)}
\end{pspicture}

\clearpage
\vspace{5mm}
\setlength{\fboxsep}{2mm}
\makebox[20mm][l]{cyan (C):}%
\multido{\nColr=0+1}{10}{\colorbox{testC!![\nColr]}{.\nColr}}\colorbox{testC!![10]}{1}\\
\makebox[20mm][l]{magenta (M):}%
\multido{\nColr=0+1}{10}{\colorbox{testM!![\nColr]}{.\nColr}}\colorbox{testM!![10]}{1}\\
\makebox[20mm][l]{yellow (Y):}%
\multido{\nColr=0+1}{10}{\colorbox{testY!![\nColr]}{.\nColr}}\colorbox{testY!![10]}{1}\\
\makebox[20mm][l]{black (K):}%
\multido{\nColr=0+1}{10}{\colorbox{testK!![\nColr]}{.\nColr}}\colorbox{testK!![10]}{1}

    
\end{document}