blob: fa59819911be3517276101b0e67f3a0f974c749f (
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
|
\documentclass[a4paper,12pt]{report}
\usepackage[latin1]{inputenc}
\usepackage{german}
\begin{document}
% Farbbefehl bereitstellen
\newcommand{\color}[1]
{\special{ps: #1 setrgbcolor
gsave newpath 0 0 moveto 1 0 rlineto stroke grestore}}
% Farbige Quadrate
\newcommand{\colorsquare}[1]
{\color{#1}\rule{1em}{1em}\color{\black}}
% Einige Farben definieren
\newcommand{\red}{1 0 0} \newcommand{\white}{1 1 1}
\newcommand{\yellow}{1 1 0}\newcommand{\blue}{0 0 1}
\newcommand{\green}{0 1 0} \newcommand{\black}{0 0 0}
\newcommand{\violet}{1 0 1}\newcommand{\cyan}{0 1 1}
% los geht's
\begin{figure}\begin{center}
\begin{tabular}{llll}\hline
Weiß & \colorsquare{\white} &
Schwarz & \colorsquare{\black} \\
Rot & \colorsquare{\red} &
Zyan & \colorsquare{\cyan} \\
Grün & \colorsquare{\green} &
Violett & \colorsquare{\violet} \\
Blau & \colorsquare{\blue} &
Gelb & \colorsquare{\yellow} \\
\hline\end{tabular}\end{center}
Auch Texte können \color{\red} farbig (hier in Rot)
\color{\black} gesetzt werden. Allerdings benötigen Sie
den Treiber \color{\violet} DVIPS \color{\black} dafür.
\caption{Grund- und Sekundärfarben im RGB-System sowie
farbiger Text.}
\end{figure}
\end{document}
|