summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-10-25 21:24:43 +0000
committerKarl Berry <karl@freefriends.org>2022-10-25 21:24:43 +0000
commit86fe4e3caabb0f6eaac8fd26bcf4b4d5ae602c86 (patch)
treea0dbb23646aa97ff8b6cfe74615e29eeb5ec35b5
parent3dc7745e348e9ac59aae093cf0ea515160a8aae5 (diff)
\hline in array, tex4ht r1221; endnotes/biblatex, tex4ht r1222; \Long{left,right}arrow, tex4ht r1223
git-svn-id: svn://tug.org/texlive/trunk@64813 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog16
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex18
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex3
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex35
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex5
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/endnotes.4ht13
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/fontmath.4ht7
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/html-mml.4ht41
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/html4-math.4ht17
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/mathml.4ht50
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/plain.4ht7
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/unicode.4ht44
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/usepackage.4ht4
13 files changed, 166 insertions, 94 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index 31e91303c0f..c9fb24a9d0f 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,19 @@
+2022-10-25 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (fontmath.4ht, plain.4ht),
+ * tex4ht-html4.tex (html4-math.4ht),
+ * tex4ht-unicode.tex (unicode.4ht): fixed \Longrightarrow and
+ \Longleftarrow symbols.
+ https://github.com/michal-h21/make4ht/issues/86
+
+ * tex4ht-4ht.tex (endnotes.4ht): fixed clash between Endnotes and
+ BibLaTeX.
+ https://tug.org/pipermail/tex4ht/2022q4/003274.html
+
+ * tex4ht-mathml.tex (mathml.4ht, html-mml.4ht): fixed support for
+ \hline inside the array environment.
+ https://tex.stackexchange.com/a/662845/2891
+
2022-10-23 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-html4.tex (html4.4ht): added the Gin-percent option. It
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
index 7a44c341d51..e70774e2031 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-4ht.tex 1219 2022-10-20 14:40:14Z michal_h21 $
+% $Id: tex4ht-4ht.tex 1223 2022-10-25 20:53:26Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2022 TeX Users Group
@@ -32740,13 +32740,24 @@ of \''<a>' elements.
\NewConfigure{makeenmark}{2}
\def\enoteformat{\rightskip\z@ \leftskip\z@ \parindent=1.8em
\leavevmode\llap{\hbox{\textsuperscript{\@theenmark}}}}
+
+\NewConfigure{theendnotes}{2}
+\NewConfigure{enoteformat}{2}
+>>>
+
+BibLaTeX patches theendnotes at begin document, and it produces
+compilation error, because it cannot find the \''\enoteformat'
+command here. We can postpone our redefinition to the moment,
+when BibLaTeX patched the command already.
+
+\<fix endnotes\><<<
+\AtBeginDocument{%
\def\:tempc{\bgroup
\pend:def\enoteformat{\a:enoteformat}%
\append:def\enoteformat{\b:enoteformat}%
\a:theendnotes \o:theendnotes: \b:theendnotes \egroup}
\HLet\theendnotes=\:tempc
-\NewConfigure{theendnotes}{2}
-\NewConfigure{enoteformat}{2}
+}
>>>
%%%%%%%%%%%%%%%%%
@@ -36395,6 +36406,7 @@ A previous definition \Verb+\def\aa{{\Protect\:aa}}+ was problematic because
\MathSymbol\mathop{ldots}
\MathSymbol\mathrel{Longleftrightarrow}
\MathSymbol\mathrel{Longrightarrow}
+\MathSymbol\mathrel{Longleftarrow}
\MathSymbol\mathrel{bowtie}
\MathSymbol\mathrel{cdots}
\MathSymbol\mathrel{ddots}
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
index 55989c36fc5..91b14dac029 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 1220 2022-10-23 18:52:19Z michal_h21 $
+% $Id: tex4ht-html4.tex 1223 2022-10-25 20:53:26Z michal_h21 $
% Compile 4 times: latex tex4ht-html4
% Copy html4.4ht into the work directory before all but the last compilation.
%
@@ -8586,6 +8586,7 @@ The hbox is for avoiding the start of a new paragraph, if in vmode.
\<picmath plain,fontmath\><<<
\Configure{Longrightarrow} {\pic:sym{Longrightarrow}}
+\Configure{Longleftarrow} {\pic:sym{Longleftarrow}}
\Configure{bowtie} {\pic:sym{bowtie}}
\Configure{cong} {\pic:sym{cong}}
\Configure{ddots} {\pic:sym{ddots}}
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex
index 23c6aacbaf0..5d5e11e9444 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-mathml.tex 1209 2022-10-05 21:12:23Z michal_h21 $$
+% $Id: tex4ht-mathml.tex 1221 2022-10-25 11:32:47Z michal_h21 $$
% compile 3 times: latex tex4ht-mathltx
% or xhlatex tex4ht-mathltx "html,3,sections+"
%
@@ -1173,7 +1173,7 @@ space, without having them ignored, must use &nbsp; or other
\Configure{array}
{\halignTB{array}}
{\ifvmode \IgnorePar\fi |<insert Clr|>\Tg</\a:mathml mtable>}
- {\Tg<\a:mathml mtr>}{\Tg</\a:mathml mtr>}
+ {\Tg<\a:mathml mtr \mml:class="array-row">}{\Tg</\a:mathml mtr>}
{|<mtd array|>}
{\Tg</\a:mathml mtd>}
\ConfigureEnv{array}
@@ -1205,7 +1205,7 @@ space, without having them ignored, must use &nbsp; or other
\<mtd array\><<<
-\HCode{<\a:mathml mtd\Hnewline \mml:class="array"
+\HCode{<\a:mathml mtd\Hnewline \mml:class="array-td"
\ifnum 1<\HMultispan columnspan="\HMultispan"\fi}%
\halignTD \HCode{>}%
>>>
@@ -1232,15 +1232,15 @@ space, without having them ignored, must use &nbsp; or other
\def\:MM{m}
\def\mathml:hborder{%
\Configure{HBorder}
- {<\a:mathml mtr\Hnewline \mml:class="hline">}
+ {<\a:mathml mtr\Hnewline \mml:class="array-hline">}
{|<mml hline|>}
{</\a:mathml mtr>}
- {<\a:mathml mtr\Hnewline \mml:class="cline">}
+ {<\a:mathml mtr\Hnewline \mml:class="array-cline">}
{<\a:mathml mtd></\a:mathml mtd>}
{|<mml hline|>}
{</\a:mathml mtr>}
{<\a:mathml mtr\Hnewline
- \mml:class="vspace" style="font-size:\HBorderspace">}
+ \mml:class="array-vspace" style="font-size:\HBorderspace">}
{<\a:mathml mtd\Hnewline></\a:mathml mtd>}
{</\a:mathml mtr>}
}
@@ -1252,18 +1252,18 @@ space, without having them ignored, must use &nbsp; or other
\def\:MM{\ifmathml \a:mathml m\fi}
\Configure{HBorder}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi="hline">}
+ \ifmathml \expandafter\mml:class\else class\fi="array-hline">}
{\ifmathml|<mml hline|>\else
- <td><hr\xml:empty></td>\fi}
+ <td></td>\fi}
{</\:MM tr>}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi ="cline">}
+ \ifmathml \expandafter\mml:class\else class\fi ="array-cline">}
{<\:MM td></\:MM td>}
{\ifmathml|<mml hline|>\else
- <td><hr\xml:empty></td>\fi}
+ <td></td>\fi}
{</\:MM tr>}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi="vspace"
+ \ifmathml \expandafter\mml:class\else class\fi="array-vspace"
style="font-size:\HBorderspace">}
{<\:MM td\Hnewline>\ifmathml\else\string&\#x00A0;\fi
</\:MM td>}
@@ -1286,16 +1286,19 @@ space, without having them ignored, must use &nbsp; or other
\HCode{</\:MT td>}|<td recall EndP|>}
>>>
+It seems that Firefox doesn't support MathML styling
+using element names, but classes works. We need to hide
+rows produced by hline.
\<configure html-mml latex\><<<
-\Css{mtr.hline mtd{
+\Css{.array-hline,.array-cline{
border-bottom:black solid 1px;
- padding-top:2px;
- padding-bottom:0em;
+ height:0px;
}}
-\Css{mtr.hline mtd mo{
+\Css{.hline-mtd{
display:none
}}
+\Css{.array-hline + .array-row:last-child{display:none;}}
>>>
\<td save EndP\><<<
@@ -1308,7 +1311,7 @@ space, without having them ignored, must use &nbsp; or other
\<mml hline\><<<
-<\a:mathml mtd><mo> \string&\#x0332; </mo></\a:mathml mtd>
+<\a:mathml mtd \mml:class="hline-mtd"></\a:mathml mtd>
>>>
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex
index eefe14ffb34..83469c18700 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-unicode.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-unicode.tex 954 2021-06-19 19:34:56Z michal_h21 $
+% $Id: tex4ht-unicode.tex 1223 2022-10-25 20:53:26Z michal_h21 $
% latex tex4ht-unicode or xhlatex tex4ht-unicode "html,3,sections+"
%
% Copyright 2009-2021 TeX Users Group
@@ -434,7 +434,8 @@ The special replaces the `x' character.
>>>
\<plain,fontmath math symbols\><<<
-\Configure{Longrightarrow} {\x:unicode{21D2}}
+\Configure{Longrightarrow} {\x:unicode{27F9}}
+\Configure{Longleftarrow} {\x:unicode{27F8}}
\Configure{bowtie} {\x:unicode{22C8}}
\Configure{doteq} {\x:unicode{2250}}
\Configure{cong} {\x:unicode{2245}}
diff --git a/Master/texmf-dist/tex/generic/tex4ht/endnotes.4ht b/Master/texmf-dist/tex/generic/tex4ht/endnotes.4ht
index da4466b6d5e..f8f0f1c1869 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/endnotes.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/endnotes.4ht
@@ -1,6 +1,6 @@
-% endnotes.4ht (2021-05-23-15:14), generated from tex4ht-4ht.tex
+% endnotes.4ht (2022-10-25-13:59), generated from tex4ht-4ht.tex
% Copyright 2001-2009 Eitan M. Gurari
-% Copyright 2009-2021 TeX Users Group
+% Copyright 2009-2022 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2021-05-23-15:14}
+\immediate\write-1{version 2022-10-25-13:59}
\HAssign\endnote:N=0
\def\endnoteN{\endnote:N}
@@ -30,13 +30,16 @@
\NewConfigure{makeenmark}{2}
\def\enoteformat{\rightskip\z@ \leftskip\z@ \parindent=1.8em
\leavevmode\llap{\hbox{\textsuperscript{\@theenmark}}}}
+
+\NewConfigure{theendnotes}{2}
+\NewConfigure{enoteformat}{2}
+\AtBeginDocument{%
\def\:tempc{\bgroup
\pend:def\enoteformat{\a:enoteformat}%
\append:def\enoteformat{\b:enoteformat}%
\a:theendnotes \o:theendnotes: \b:theendnotes \egroup}
\HLet\theendnotes=\:tempc
-\NewConfigure{theendnotes}{2}
-\NewConfigure{enoteformat}{2}
+}
\Hinput{endnotes}
\endinput
diff --git a/Master/texmf-dist/tex/generic/tex4ht/fontmath.4ht b/Master/texmf-dist/tex/generic/tex4ht/fontmath.4ht
index 7242a41a7fe..970eeb87fe3 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/fontmath.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/fontmath.4ht
@@ -1,6 +1,6 @@
-% fontmath.4ht (2018-11-06-15:55), generated from tex4ht-4ht.tex
+% fontmath.4ht (2022-10-25-13:59), generated from tex4ht-4ht.tex
% Copyright 1997-2009 Eitan M. Gurari
-% Copyright 2009-2018 TeX Users Group
+% Copyright 2009-2022 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2018-11-06-15:55}
+\immediate\write-1{version 2022-10-25-13:59}
\def\:same#1{#1}
\def\no:fonts{\more:no \let\protect\@unexpandable@protect }
@@ -111,6 +111,7 @@
\MathSymbol\mathop{ldots}
\MathSymbol\mathrel{Longleftrightarrow}
\MathSymbol\mathrel{Longrightarrow}
+\MathSymbol\mathrel{Longleftarrow}
\MathSymbol\mathrel{bowtie}
\MathSymbol\mathrel{cdots}
\MathSymbol\mathrel{ddots}
diff --git a/Master/texmf-dist/tex/generic/tex4ht/html-mml.4ht b/Master/texmf-dist/tex/generic/tex4ht/html-mml.4ht
index c65eff1da04..3ba14ba48e5 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/html-mml.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/html-mml.4ht
@@ -1,4 +1,4 @@
-% html-mml.4ht (2022-08-17-14:11), generated from tex4ht-mathml.tex
+% html-mml.4ht (2022-10-25-13:43), generated from tex4ht-mathml.tex
% Copyright 2009-2022 TeX Users Group
% Copyright 1999-2009 Eitan M. Gurari
%
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-08-17-14:11}
+\immediate\write-1{version 2022-10-25-13:43}
\exit:ifnot{amsmath,%
array,%
@@ -189,20 +189,20 @@ tex4ht}
\def\:MM{\ifmathml \a:mathml m\fi}
\Configure{HBorder}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi="hline">}
- {\ifmathml<\a:mathml mtd><mo> \string&\#x0332; </mo></\a:mathml mtd>
+ \ifmathml \expandafter\mml:class\else class\fi="array-hline">}
+ {\ifmathml<\a:mathml mtd \mml:class="hline-mtd"></\a:mathml mtd>
\else
- <td><hr\xml:empty></td>\fi}
+ <td></td>\fi}
{</\:MM tr>}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi ="cline">}
+ \ifmathml \expandafter\mml:class\else class\fi ="array-cline">}
{<\:MM td></\:MM td>}
- {\ifmathml<\a:mathml mtd><mo> \string&\#x0332; </mo></\a:mathml mtd>
+ {\ifmathml<\a:mathml mtd \mml:class="hline-mtd"></\a:mathml mtd>
\else
- <td><hr\xml:empty></td>\fi}
+ <td></td>\fi}
{</\:MM tr>}
{<\:MM tr\Hnewline
- \ifmathml \expandafter\mml:class\else class\fi="vspace"
+ \ifmathml \expandafter\mml:class\else class\fi="array-vspace"
style="font-size:\HBorderspace">}
{<\:MM td\Hnewline>\ifmathml\else\string&\#x00A0;\fi
</\:MM td>}
@@ -225,14 +225,14 @@ tex4ht}
{\ifvmode \IgnorePar \fi \EndP
\HCode{</\:MT td>}\RecallEndP
}
-\Css{mtr.hline mtd{
+\Css{.array-hline,.array-cline{
border-bottom:black solid 1px;
- padding-top:2px;
- padding-bottom:0em;
+ height:0px;
}}
-\Css{mtr.hline mtd mo{
+\Css{.hline-mtd{
display:none
}}
+\Css{.array-hline + .array-row:last-child{display:none;}}
\:CheckOption{fonts} \if:Option
\Configure{texttt}
{\ifmathml \providemtextclass{\mml:class="texttt"
@@ -480,6 +480,9 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsmath}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -682,8 +685,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{plain}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -833,6 +834,8 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{color}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -915,8 +918,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{rlbabel}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -964,7 +965,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{frenchb}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1299,5 +1299,10 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
+
+
+
\endinput
diff --git a/Master/texmf-dist/tex/generic/tex4ht/html4-math.4ht b/Master/texmf-dist/tex/generic/tex4ht/html4-math.4ht
index 0bfb552ab52..21c5761a00e 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/html4-math.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/html4-math.4ht
@@ -1,4 +1,4 @@
-% html4-math.4ht (2022-10-19-13:47), generated from tex4ht-html4.tex
+% html4-math.4ht (2022-10-25-13:59), generated from tex4ht-html4.tex
% Copyright 2009-2022 TeX Users Group
% Copyright 1999-2009 Eitan M. Gurari
%
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-10-19-13:47}
+\immediate\write-1{version 2022-10-25-13:59}
\exit:ifnot{accents,%
amsfonts,%
@@ -422,6 +422,7 @@ ushort}
\Configure{underbrace} {}{\Picture+{}}{\EndPicture}
\Configure{Longrightarrow} {\pic:sym{Longrightarrow}}
+\Configure{Longleftarrow} {\pic:sym{Longleftarrow}}
\Configure{bowtie} {\pic:sym{bowtie}}
\Configure{cong} {\pic:sym{cong}}
\Configure{ddots} {\pic:sym{ddots}}
@@ -469,6 +470,8 @@ ushort}
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsmath}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -843,8 +846,6 @@ ushort}
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{plain}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -939,6 +940,7 @@ ushort}
\Css{table.pmatrix {width:100\%;}}
\Configure{Longrightarrow} {\pic:sym{Longrightarrow}}
+\Configure{Longleftarrow} {\pic:sym{Longleftarrow}}
\Configure{bowtie} {\pic:sym{bowtie}}
\Configure{cong} {\pic:sym{cong}}
\Configure{ddots} {\pic:sym{ddots}}
@@ -1005,6 +1007,7 @@ ushort}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{array}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1072,6 +1075,7 @@ ushort}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{eplain}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1164,8 +1168,6 @@ ushort}
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{rlbabel}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1377,6 +1379,7 @@ ushort}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{ushort}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1437,6 +1440,7 @@ ushort}
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{cancel}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1482,7 +1486,6 @@ ushort}
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{th4}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
diff --git a/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht b/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht
index f2ab3a10fea..9a54daf72de 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht
@@ -1,4 +1,4 @@
-% mathml.4ht (2022-10-05-14:24), generated from tex4ht-mathml.tex
+% mathml.4ht (2022-10-25-13:43), generated from tex4ht-mathml.tex
% Copyright 2009-2022 TeX Users Group
% Copyright 1999-2009 Eitan M. Gurari
%
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-10-05-14:24}
+\immediate\write-1{version 2022-10-25-13:43}
\exit:ifnot{Preamble,%
accents,%
@@ -564,8 +564,8 @@ vanilla}
{\ifvmode \IgnorePar\fi \expandafter\tmp:toks\expandafter{\Clr}%
\HCode{<!--\the\tmp:toks-->}%
\Tg</\a:mathml mtable>}
- {\Tg<\a:mathml mtr>}{\Tg</\a:mathml mtr>}
- {\HCode{<\a:mathml mtd\Hnewline \mml:class="array"
+ {\Tg<\a:mathml mtr \mml:class="array-row">}{\Tg</\a:mathml mtr>}
+ {\HCode{<\a:mathml mtd\Hnewline \mml:class="array-td"
\ifnum 1<\HMultispan columnspan="\HMultispan"\fi}%
\halignTD \HCode{>}%
}
@@ -602,17 +602,17 @@ vanilla}
\def\:MM{m}
\def\mathml:hborder{%
\Configure{HBorder}
- {<\a:mathml mtr\Hnewline \mml:class="hline">}
- {<\a:mathml mtd><mo> \string&\#x0332; </mo></\a:mathml mtd>
+ {<\a:mathml mtr\Hnewline \mml:class="array-hline">}
+ {<\a:mathml mtd \mml:class="hline-mtd"></\a:mathml mtd>
}
{</\a:mathml mtr>}
- {<\a:mathml mtr\Hnewline \mml:class="cline">}
+ {<\a:mathml mtr\Hnewline \mml:class="array-cline">}
{<\a:mathml mtd></\a:mathml mtd>}
- {<\a:mathml mtd><mo> \string&\#x0332; </mo></\a:mathml mtd>
+ {<\a:mathml mtd \mml:class="hline-mtd"></\a:mathml mtd>
}
{</\a:mathml mtr>}
{<\a:mathml mtr\Hnewline
- \mml:class="vspace" style="font-size:\HBorderspace">}
+ \mml:class="array-vspace" style="font-size:\HBorderspace">}
{<\a:mathml mtd\Hnewline></\a:mathml mtd>}
{</\a:mathml mtr>}
}
@@ -1735,6 +1735,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsbsy}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1747,6 +1748,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsmath}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2114,6 +2116,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amstext}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2124,7 +2127,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amstex1}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2354,8 +2356,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{plain}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3256,6 +3256,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{array}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3269,8 +3270,8 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
{\ifvmode \IgnorePar\fi \expandafter\tmp:toks\expandafter{\Clr}%
\HCode{<!--\the\tmp:toks-->}%
\Tg</\a:mathml mtable>}
- {\Tg<\a:mathml mtr>}{\Tg</\a:mathml mtr>}
- {\HCode{<\a:mathml mtd\Hnewline \mml:class="array"
+ {\Tg<\a:mathml mtr \mml:class="array-row">}{\Tg</\a:mathml mtr>}
+ {\HCode{<\a:mathml mtd\Hnewline \mml:class="array-td"
\ifnum 1<\HMultispan columnspan="\HMultispan"\fi}%
\halignTD \HCode{>}%
}
@@ -3333,6 +3334,9 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amscd}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3389,8 +3393,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{vanilla}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3430,6 +3432,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amssymb}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3658,7 +3661,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{gauss}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3718,8 +3720,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{rlbabel}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3756,10 +3756,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
-
-
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{dcolumn}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3831,6 +3827,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{mathtools}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -3970,6 +3967,9 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{accents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -4057,6 +4057,7 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{ushort}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -4094,7 +4095,6 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{bm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -4140,6 +4140,8 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{ulem}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
diff --git a/Master/texmf-dist/tex/generic/tex4ht/plain.4ht b/Master/texmf-dist/tex/generic/tex4ht/plain.4ht
index 32522324617..9a58d2314fb 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/plain.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/plain.4ht
@@ -1,6 +1,6 @@
-% plain.4ht (2021-04-25-09:48), generated from tex4ht-4ht.tex
+% plain.4ht (2022-10-25-13:59), generated from tex4ht-4ht.tex
% Copyright 1997-2009 Eitan M. Gurari
-% Copyright 2009-2021 TeX Users Group
+% Copyright 2009-2022 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2021-04-25-09:48}
+\immediate\write-1{version 2022-10-25-13:59}
\ifx\SaveMkHalignConf:g\:UnDef \else \expandafter\endinput\fi
@@ -73,6 +73,7 @@
\MathSymbol\mathop{ldots}
\MathSymbol\mathrel{Longleftrightarrow}
\MathSymbol\mathrel{Longrightarrow}
+\MathSymbol\mathrel{Longleftarrow}
\MathSymbol\mathrel{bowtie}
\MathSymbol\mathrel{cdots}
\MathSymbol\mathrel{ddots}
diff --git a/Master/texmf-dist/tex/generic/tex4ht/unicode.4ht b/Master/texmf-dist/tex/generic/tex4ht/unicode.4ht
index c4bda6148a3..dbba934a142 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/unicode.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/unicode.4ht
@@ -1,4 +1,4 @@
-% unicode.4ht (2021-06-19-14:11), generated from tex4ht-unicode.tex
+% unicode.4ht (2022-10-25-13:59), generated from tex4ht-unicode.tex
% Copyright 2009-2021 TeX Users Group
% Copyright 1998-2009 Eitan M. Gurari
%
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2021-06-19-14:11}
+\immediate\write-1{version 2022-10-25-13:59}
\exit:ifnot{8859-6,%
SIunits,%
@@ -494,7 +494,8 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\Configure{mathellipsis} {\textellipsis}
\Configure{cdots} {\x:unicode{22EF}}
\Configure{hbar} {\x:unicode{210F}}
-\Configure{Longrightarrow} {\x:unicode{21D2}}
+\Configure{Longrightarrow} {\x:unicode{27F9}}
+\Configure{Longleftarrow} {\x:unicode{27F8}}
\Configure{bowtie} {\x:unicode{22C8}}
\Configure{doteq} {\x:unicode{2250}}
\Configure{cong} {\x:unicode{2245}}
@@ -578,7 +579,6 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsproc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -589,6 +589,7 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amsldoc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -678,6 +679,7 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{amstex1}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1003,7 +1005,8 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\Configure{L} {\x:unicode{0141}}
\Configure{l} {\x:unicode{0142}}
-\Configure{Longrightarrow} {\x:unicode{21D2}}
+\Configure{Longrightarrow} {\x:unicode{27F9}}
+\Configure{Longleftarrow} {\x:unicode{27F8}}
\Configure{bowtie} {\x:unicode{22C8}}
\Configure{doteq} {\x:unicode{2250}}
\Configure{cong} {\x:unicode{2245}}
@@ -1182,6 +1185,13 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
+
+
+
+
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{revsymb}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1325,6 +1335,9 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{eurosym}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1337,7 +1350,6 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{SIunits}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1348,6 +1360,7 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{sistyle}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1438,6 +1451,13 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
+
+
+
+
+
+
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{cp850}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1458,7 +1478,6 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{cp862}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1479,6 +1498,7 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{cp1252}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1499,7 +1519,6 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{cp437de}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1525,6 +1544,7 @@ R{1E5E}r{1E5F}T{1E6E}t{1E6F}Z{1E94}z{1E95}h{1E96}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{romanian}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1652,7 +1672,6 @@ y{0233}G{1E20}g{1E21}%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{slovak}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1778,6 +1797,7 @@ y{0233}G{1E20}g{1E21}%
\endinput\empty\empty\empty\empty\empty\empty
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{slovene}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -1962,7 +1982,6 @@ Y{1EF8}y{1EF9}\i{0129}%
-
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{croatian}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2099,6 +2118,7 @@ y{0233}G{1E20}g{1E21}%
+
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\ConfigureHinput{greek}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2153,5 +2173,9 @@ s{015B}u{00FA}y{00FD}z{017A}j{FFFD}J{FFDD}\i{00ED}\j{FFFD}%
+
+
+
+
\endinput
diff --git a/Master/texmf-dist/tex/generic/tex4ht/usepackage.4ht b/Master/texmf-dist/tex/generic/tex4ht/usepackage.4ht
index fcebbdace0f..b576e894b49 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/usepackage.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/usepackage.4ht
@@ -1,4 +1,4 @@
-% usepackage.4ht (2022-10-20-14:02), generated from tex4ht-4ht.tex
+% usepackage.4ht (2022-10-25-13:59), generated from tex4ht-4ht.tex
% Copyright 2003-2009 Eitan M. Gurari
% Copyright 2009-2022 TeX Users Group
%
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-10-20-14:02}
+\immediate\write-1{version 2022-10-25-13:59}
\def\:temp{tex4ht}\ifx \:temp\@currname
\:warning{\string\usepackage{tex4ht} again?}