summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/skeyval/skeyval-pokayoke2.tex
blob: 57195061611f642c664b87f16359afba5371c8a4 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
\documentclass[
  insertwatermark,watermarkcolor=blue!55,
  firstpagenumber=2,
  maketitlepage,
  unknown-key
]{skeyval-testclass}

\setupskvtestclass{%
  watermarktext={skeyval-test2\\[.25ex]Page~\thepage}
}

\usepackage{lipsum}
\usepackage{xcolor}

% If you try to load 'skeyval-testpkg' with options, the options
% will all be zapped, unless you load 'skeyval-ltxpatch' on top of
% \documentclass.

\setuptextemphasis{usecolour=true,usebold,useitalics=true}

\begin{document}

\title{%
  The \texttt{\textcolor{blue}{skeyval}} Package\\[2ex]
  Version 1.1a\\[1ex]
  \textsf{Test document 2}
  \footnote{Made by \texttt{skeyval-testclass, Version~1.1a.}}%
}
\author{Ahmed Musa\footnote{\texttt{amusa22@gmail.com}.}}

\maketitle

\lipsum[1]

\xem{\lipsum[1]}

\setuptextemphasis{color=blue}

\xem{\lipsum[1]}

\setuptextemphasis{usecolor=false, usebold=false, useitalic=false}

\xem{\lipsum[1]}

\lipsum[1]

\setuptextemphasis{make-textemphasis-inactive}

\xem{\lipsum[1]}

% This will raise an error: 'dummy-option' has been disabled
% at begin document:
% \setuptextemphasis{dummy-option}

\begin{tikzpicture}[shading=ball]
\newforeach \x/\cola in {0/red,1/green,2/blue,3/yellow} do {%
  \newforeach \y/\colb in {0/red,1/green,2/blue,3/yellow} {%
    \node[
      circle,double,draw=-\cola!50!\colb,fill=\cola!50!\colb,
      thick,inner sep=2pt,
      minimum size=10mm,font=\bfseries\color{white}
    ] at (\x*2,\y*2) {\x,\y};
  }%
}
\end{tikzpicture}

\bigskip
\parindent-20pt
\begin{tikzpicture}
\draw[step=.5cm,blue!65,very thin] (0,0) grid (13,6);
\newforeach \x in {1,2,...,5,7,8,...,12} {
  \newforeach \y in {1,...,5} do {
    \draw (\x,\y) +(-.5,-.5) rectangle ++(.5,.5);
    \draw (\x,\y) node{\x,\y};
  }
}
\end{tikzpicture}

\bigskip
\begingroup
\catcode`\,=13
\gdef\alist{1,2,...,5,7,8,...,12}
\endgroup
\parindent-20pt
\begin{tikzpicture}
\draw[step=.5cm,blue!65,very thin] (0,0) grid (13,6);
\newforeach* \x [
  count in=\xc all \x satisfying \ifnum\x>5\fi
] in \alist {
  \newforeach[
    parser={;},
    evaluate=\y as \ye using \numexpr\y*10
  ]
    \y:\z in {1:red; 2:green; 3:blue; 4:brown; 5:purple} do {
    \draw [fill=\z\ifnum\x>5!\ye\fi](\x,\y) +(-.5,-.5) rectangle ++(.5,.5);
    \draw (\x,\y) node {\x,\y};
  }
}
\global\let\xc\xc
\end{tikzpicture}
%\show\xc


\end{document}

% End of file skeyval-pokayoke2.tex