blob: de927a7c03c3cdabd83b1ac2e08ab7c7f749e1ab (
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
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% tkz-arith.sty encodage : utf8 %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% Créé par Alain Matthes le 10-10-2007. %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%<--------------------------------------------------------------------------–>
%% Objet : tools for arithmetic
% todo : remove latex stuff
% todo : change some names of macros
%<--------------------------------------------------------------------------–>
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{tkz-arith}[2011/02/28 v 1.00 c integers numbers]
%<--------------------------------------------------------------------------–>
\makeatletter
\def\tkzutil@empty{}
\def\tkzutil@firstofone#1{#1}
\def\tkzutil@firstoftwo#1#2{#1}
\def\tkzutil@secondoftwo#1#2{#2}
%<--------------------------------------------------------------------------–>
\long\def\tkzutil@ifundefined#1{%
\expandafter\ifx\csname#1\endcsname\relax
\expandafter\tkzutil@firstoftwo
\else
\expandafter\tkzutil@secondoftwo
\fi}
\input{tkz-tools-arith.tex}
\endinput
|