texlive[69460] Master/texmf-dist: tkz-base (16jan24)

commits+karl at tug.org commits+karl at tug.org
Tue Jan 16 22:28:56 CET 2024


Revision: 69460
          https://tug.org/svn/texlive?view=revision&revision=69460
Author:   karl
Date:     2024-01-16 22:28:56 +0100 (Tue, 16 Jan 2024)
Log Message:
-----------
tkz-base (16jan24)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/tkz-base/README.md
    trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-main.tex
    trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-point.tex
    trunk/Master/texmf-dist/doc/latex/tkz-base/tkz-base.pdf
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.cfg
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.sty
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-shape.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-colors.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex
    trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex

Modified: trunk/Master/texmf-dist/doc/latex/tkz-base/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/tkz-base/README.md	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/doc/latex/tkz-base/README.md	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,6 +1,6 @@
 # tkz-base — for Cartesian coordinate system 
 
-Release 4.2c 2022/07/14
+Release 4.21c 2024/01/16
 
 ## Description
 The package `tkz-base` provides some tools like a Cartesian (rectangular) coordinate system to other packages like `tkz-euclide` or `tkz-fct`.
@@ -60,6 +60,9 @@
 The new version of `tkz-base`  is *not* fully compatible with the version 3 but the differences are minor
 
 ## History
+- 4.21c Correction of bug tkz-obj-axes line 35, missing a symbol `%` (thanks Pascal Nuns)
+
+   Replace in TKZdoc-base-points.tex p 462 tkzDefCentroid(A,B,C,O) by tkzDefBarycentric(A,B,C,O)
 - 4.2c adaptation to the new version of tkz-euclide.
 - 4.05b Correction of an option (tkzDrawY).
      Removing axesmin.tex  Move from \newif\iftkz at integer to base.sty

Modified: trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-main.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-main.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-main.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,7 +1,7 @@
 %!TEX TS-program = lualatex
 %  encoding: utf8 
 %  documentation of tkz-base.sty  
-% Copyright 2022  Alain Matthes
+% Copyright 2024  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.
@@ -21,10 +21,10 @@
                ]{tkz-doc}
 %\usepackage{etoc}
 \gdef\tkznameofpack{tkz-base}
-\gdef\tkzversionofpack{4.2c}
+\gdef\tkzversionofpack{4.21c}
 \gdef\tkzdateofpack{\today}
 \gdef\tkznameofdoc{doc-tkz-base}
-\gdef\tkzversionofdoc{4.2c} 
+\gdef\tkzversionofdoc{4.21c} 
 \gdef\tkzdateofdoc{\today}
 \gdef\tkzauthorofpack{Alain Matthes}
 \gdef\tkzadressofauthor{}

Modified: trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-point.tex
===================================================================
--- trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-point.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/doc/latex/tkz-base/TKZdoc-base-point.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -459,7 +459,7 @@
   \tkzGetPoint{B}
   \tkzDrawPoints(O,A,B,C) 
   \tkzDrawSegments(C,B B,A A,O O,C)
-  \tkzDefCentroid(A,B,C,O)
+  \tkzDefBarycentricPoint(A=1,B=1,C=1,O=1)
   \tkzDrawPoint(tkzPointResult)
   \tkzAutoLabelPoints[center=tkzPointResult,
                      dist=.3,red](O,A,B,C)

Modified: trunk/Master/texmf-dist/doc/latex/tkz-base/tkz-base.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.cfg
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.cfg	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.cfg	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-base.cfg
-% Copyright 2022  Alain Matthes
+% Copyright 2024  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.
@@ -16,9 +16,9 @@
 % and save the file in a directory  part of your TEXINPUTS environment 
 % variable. 
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-base.cfg}
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-base.cfg}
 %<------   colors  ---------------------------------------–> 
 \def\tkz at backgroundcolor{white}
 \def\tkz at textcolor{black}  
@@ -134,7 +134,7 @@
 \def\tkz at mk@fill{\tkz at otherlinecolor} 
 %<--------------------------------------------------------------------------–>
 %<------------------------------  styles   ---------------------------------–>
-\def\tkzSetUpStyle[#1]#2{\tikzset{#2/.style={#1}}}% add 2022
+\def\tkzSetUpStyle[#1]#2{\tikzset{#2/.style={#1}}}% add 2024
 
 \tikzset{xlabel style/.style                =   {below      =   3 pt,
                                                 inner sep   =   1pt,

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.sty	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-base.sty	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-base.sty % 
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,10 +10,10 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\typeout{2022/07/14  4.2c  tkz-base.sty}
+\def\fileversion{4.21c}
+\typeout{2024/01/16  4.21c  tkz-base.sty}
 \NeedsTeXFormat{LaTeX2e}
-\ProvidesPackage{tkz-base}[2022/07/14  4.2c  tkz-base]
+\ProvidesPackage{tkz-base}[2024/01/16  4.21c  tkz-base]
 \@ifpackageloaded{tkz-euclide}{\typeout{tkz-base and tkz-fct must be loaded before tkz-euclide}
 \PackageError{tkz-base}{tkz-base must be loaded before tkz-euclide}{tkz-base must be loaded before tkz-euclide}%
 \endinput}{}

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-marks.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-lib-marks.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-lib-marks.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-lib-marks.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %  Création des symboles

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-shape.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-shape.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-lib-shape.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-lib-shape.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-lib-shape.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-lib-shape.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %  Création des symboles

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-axes.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-obj-axes.tex    
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-obj-axes}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-obj-axes}   
 
 \makeatletter
 \def\removedot#1.{#1}
@@ -32,7 +32,7 @@
 % some tools
 %<--------------------------------------------------------------------------–> 
 \def\tkz at showgrad#1{%
-\tkzgetinteger{#1}
+\tkzgetinteger{#1}%
 \iftkz at integer\edef\tkz at result{\fpeval{trunc(#1,0)}}\else\edef\tkz at result{#1}\fi}%
 
 \def\tkz at Xresult{%

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-grids.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-obj-grids.tex    
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-obj-grids.tex}     
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-obj-grids.tex}     
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %              Setup   Grid

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-marks.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 %tkz-obj-marks.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-obj-marks.tex}
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-obj-marks.tex}
 \makeatletter
 %<-------------------------------------------------------------------------–>
 %                               Setup   Marks

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-points.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
  % tkz-obj-eu-points.tex
-% Copyright 2022  Alain Matthes
+% Copyright 2024  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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”. 
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14 } 
-\typeout{2022/07/14  4.2c  tkz-obj-points.tex} 
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16 } 
+\typeout{2024/01/16  4.21c  tkz-obj-points.tex} 
 \makeatletter
 %<--------------------------------------------------------------------------->
 %                             init def point 

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-obj-rep.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-obj-rep.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14  4.2c   tkz-obj-rep.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16  4.21c   tkz-obj-rep.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %                                repère

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-BB.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-BB.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14  4.2c  tkz-obj-BB.tex}  
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16  4.21c  tkz-obj-BB.tex}  
 \makeatletter
 %<--------------------------------------------------------------------------–>
 \def\tkzShowBB{\pgfutil at ifnextchar[{\tkz at ShowBB}{\tkz at ShowBB[]}} 

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-arith.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-arith.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-tools-arith.tex}    
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-tools-arith.tex}    
 % 1.161  test if "isfactor"   is already defined
 % now with pgf 3.0  gcd isprime isodd iseven are defined
 %<--------------------------------------------------------------------------–>

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-base.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-base.tex    
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-tools-base.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-tools-base.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 \global\let\tkz at tmp@xa\tkz at init@xmin% modif  2016

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-colors.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-colors.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-colors.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-colors
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-tools-colors}  
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-tools-colors}  
 \makeatletter
 
 %<------  Initialisation of the colors with tkzSetUpColors  -----------------> 

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-misc.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-misc.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c   tkz-tools-misc.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c   tkz-tools-misc.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %                                 hline  pb  avec line

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-modules.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-modules
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-tools-modules.tex}  
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-tools-modules.tex}  
 \makeatletter
 %<------------- % chargement des modules ---------------------------------->
 \def\tkz at obj@all{angles,arcs,compass,defcircles,deflines,defpoints,defpointsby,defpointsrnd,defpointswith,polygons,protractor,sectors,show,triangles}%

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-print.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tool-print.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-tools-print}  
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-tools-print}  
 \makeatletter
 %<------------- tkzPrintFrac ---------------------------------->
 \def\tkzPrintFrac#1#2{% 

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-text.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-text.tex
-% Copyright 2022 Alain Matthes
+% Copyright 2024 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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c tkz-tools-text.tex}   
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c tkz-tools-text.tex}   
 \makeatletter
 %<--------------------------------------------------------------------------–>
 %                                         tkzText

Modified: trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex
===================================================================
--- trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex	2024-01-16 21:28:43 UTC (rev 69459)
+++ trunk/Master/texmf-dist/tex/latex/tkz-base/tkz-tools-utilities.tex	2024-01-16 21:28:56 UTC (rev 69460)
@@ -1,5 +1,5 @@
 % tkz-tools-eu-utilities
-% Copyright 2022  Alain Matthes
+% Copyright 2024  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.
@@ -10,9 +10,9 @@
 % This work has the LPPL maintenance status “maintained”.
 % The Current Maintainer of this work is Alain Matthes.
 
-\def\fileversion{4.2c}
-\def\filedate{2022/07/14} 
-\typeout{2022/07/14 4.2c  tkz-tools-utilities.tex}  
+\def\fileversion{4.21c}
+\def\filedate{2024/01/16} 
+\typeout{2024/01/16 4.21c  tkz-tools-utilities.tex}  
 \makeatletter
 \pgfkeys{/tkzClip/.cd, 
 space/.store in    = {\tkz at CLI@space},



More information about the tex-live-commits mailing list.