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
|
% Copyright 2011 by Alain Matthes
% encoding: utf8
% Copyright 2020 Alain Matthes
% This work 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.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status “maintained”.
%
% The Current Maintainer of this work is Alain Matthes.
% original tkz-doc.cfg
%
% If you modify this original file, YOUR CHANGES WILL BE LOST when it is
% updated. Instead, put your changes in the entire copy of tkz-base.cfg
% and save the file in a directory part of your TEXINPUTS environment
% variable.
%===============================================================================
\def\fileversion{1.3c}
\def\filedate{2020/03/03}
% ============= colors =========================================================
% \definecolor [⟨type⟩]{⟨name⟩}{⟨model-list⟩}{⟨spec-list⟩}
% \providecolor [⟨type⟩]{⟨name⟩}{⟨model-list⟩}{⟨spec-list⟩}
% \colorlet [⟨type⟩]{⟨name⟩}[⟨num model⟩]{⟨color⟩}
\definecolor{myblue}{RGB}{020,120,180}
\definecolor{fondpaille}{cmyk}{0,0,0.1,0}
\definecolor{bistre}{rgb}{.75,.50,.30}
\definecolor{textcolor}{RGB}{0, 0, 0}
\providecolor{bistre}{rgb}{.75,.50,.30}
\definecolor{mygray}{gray}{0.1}
\colorlet{sectioncolor}{MidnightBlue}
\colorlet{titlecolorbox}{gray!10}
\colorlet{pdflinkcolor}{myblue}
\colorlet{pdfurlcolor}{MidnightBlue}
\colorlet{pdffilecolor}{Peach}
\colorlet{stringcolor}{myblue!40!black!100}
\colorlet{commencolor}{blue!0!black!100}
\colorlet{graphicbackground}{white}
\colorlet{codebackground}{lightgray!30}
\colorlet{codeonlybackground}{lightgray!30}
\colorlet{numbackground}{white}
\colorlet{textcodecolor}{darkgray}
\colorlet{numcolor}{MidnightBlue}
\definecolor{Salmon}{RGB}{178,51,51}
\definecolor{BrickRed}{RGB}{233,49,16}
\definecolor{TealBlue}{RGB}{16,83,165}
\definecolor{ForestGreen}{RGB}{10,112,43}
\definecolor{Tangerine}{RGB}{244,176,108}
\definecolor{DarkBrown}{RGB}{130,65,0}
\definecolor{blueGrey}{rgb}{0.4,0.48,0.53}
\def\tkzred{\color{red}}
\def\tkzblue{\color{blue}}
%--------------- mots importants et macros ---------------------------------
\newcommand*{\BS}{\texttt{\char92}}
\newcommand*{\tkz}{T{\em k}Z}
\newcommand*{\PGF}{\tkzname{PGF}}
\newcommand*{\TIKZ}{Ti\textsl{k}Z}
\newcommand*{\pdf}{\textsc{pdf}}
\newcommand*{\pgfname}{\textsc{pgf}}
\newcommand*{\tikzname}{Ti{\em k}Z}
\newcommand*{\tkzdft}[1]{{\texttt{#1}}}
\newcommand*{\tkzAttention}[3]{\ \\\llap{\textcolor{#3}{#1\hskip #2}}}
\newcommand*{\tkzHand}{\ \\\llap{\textcolor{red}{\lefthand\hskip1em}}}
\newcommand*{\tkzBomb}{\ \\\llap{\textcolor{red}{\bomb\hskip1em}}}
\newcommand*{\tkzTwoBomb}{\ \\\llap{\textcolor{red}{\bomb\ \bomb\hskip1em}}}
\newcommand*{\tkzname}[1]{\textbf{\texttt{\textcolor{MidnightBlue}{#1}}}}
\newcommand*{\tkzimp}[1]{\textbf{#1}}
\newcommand*{\tkzHandBomb}{\ \\\llap{\textcolor{red}{\lefthand\ \bomb\hskip1em}}}
\providecommand\LaTeX{L\kern-.36em\raise.3ex\hbox{\sc a}\kern-.15em\TeX}
\providecommand\LATEX{\LaTeX}
\renewcommand\TeX{T\kern-.1667em\lower.5ex\hbox{E}\kern-.125emX\spacefactor1000}
\providecommand\TEX{\TeX}
%-------------------------------------------------------------------------------
\def\tkz@background@color{white}
\def\tkz@text@color{black}
\global\edef\tkz@suc@bkc{\tkz@background@color}
\global\edef\tkz@suc@txt{\tkz@text@color}
%-------------------------------------------------------------------------------
\endinput
|