summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-07-28 21:18:01 +0000
committerKarl Berry <karl@freefriends.org>2023-07-28 21:18:01 +0000
commitf749a4183804935d173ab87e3fd7de4b1d593fa2 (patch)
tree65039676b52f7074b18baf119347a7f976cb4418
parentbb0d5635062b874426ead13aff0d878601a6994b (diff)
xskak fixes, tex4ht r1352; skaknew font fixes, tex4ht r1351; mathabx support,tex4ht r1350
git-svn-id: svn://tug.org/texlive/trunk@67757 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog15
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex15
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex803
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/xskak.4ht17
-rw-r--r--Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/matha.htf255
-rw-r--r--Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathb.htf259
-rw-r--r--Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathx.htf259
-rw-r--r--Master/texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf12
8 files changed, 1609 insertions, 26 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index 10b01a415d4..ca3df845bdd 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,18 @@
+2023-07-28 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (xskak.4ht): removed redefiniton of \mainline and
+ added optional argument for \newchessgame.
+
+ * tex4ht-fonts-noncjk.tex (
+ ./tex4ht.dir/texmf/tex4ht/ht-fonts/unicode/misc/SkakNew.htf
+ ): fixed some wrong characters.
+
+ * tex4ht-fonts-noncjk.tex (
+ ./tex4ht.dir/texmf/tex4ht/ht-fonts/unicode/mathabx/matha.htf
+ ./tex4ht.dir/texmf/tex4ht/ht-fonts/unicode/mathabx/mathb.htf
+ ./tex4ht.dir/texmf/tex4ht/ht-fonts/unicode/mathabx/mathx.htf
+ ): added support for Mathabx fonts. Thanks to Arkady Benediktov.
+
2023-07-25 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-4ht.tex (usepackage.4ht, mathtools-hooks.4ht): fixed
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
index 5e2194d73c0..a3f229f1f50 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 1349 2023-07-25 14:28:00Z michal_h21 $
+% $Id: tex4ht-4ht.tex 1352 2023-07-28 18:30:37Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2023 TeX Users Group
@@ -34228,7 +34228,7 @@ of \''\:temp' below.
\<xskak.4ht\><<<
% xskak.4ht (|version), generated from |jobname.tex
-% Copyright 2022 TeX Users Group
+% Copyright 2022-2023 TeX Users Group
|<TeX4ht license text|>
|<xskak depth|>
|<xskak inline elements|>
@@ -34259,7 +34259,10 @@ be used for calculation of vertical alignment.
%\a:mainline\Picture*[\detokenize{#1}]{ style="\:xskakdepth"}\box0\EndPicture\b:mainline%
\a:mainline\box0\b:mainline%
}
-\HLet\mainline\:tempa
+% I've found that mainline redefinition can lead to compilation errors
+% As it prints text and chess symbols are retrieved from SkakNew.htf, maybe we don't need
+% to compile it to image at all, unless we get further bug reports.
+% \HLet\mainline\:tempa
\NewConfigure{xskakget}{2}
\def\:tempa#1{%
@@ -34278,15 +34281,15 @@ because
>>>
\<xskak.sty\><<<
-\def\:tempa{%
+\newcommand\:newchessgame[1][]{%
% reset to the original version of \chessboard
\let\:currchesboard\chessboard
\let\chessboard\o:chessboard:%
- \o:newchessgame:%
+ \o:newchessgame:[#1]%
% set the TeX4ht version of \chessboard back
\let\chessboard\:currchesboard
}
-\HLet\newchessgame\:tempa
+\HLet\newchessgame\:newchessgame
>>>
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
index 2491c8a7ad8..14766b8bd34 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
@@ -1,8 +1,8 @@
-% $Id: tex4ht-fonts-noncjk.tex 1346 2023-07-06 12:55:30Z michal_h21 $
+% $Id: tex4ht-fonts-noncjk.tex 1351 2023-07-28 18:19:42Z michal_h21 $
% tex tex4ht-fonts-noncjk
% or ht tex tex4ht-fonts-noncjk
%
-% Copyright 2009-2022 TeX Users Group
+% Copyright 2009-2023 TeX Users Group
% Copyright 1997-2009 Eitan M. Gurari
% Released under LPPL 1.3c+.
% See tex4ht-cpright.tex for license text.
@@ -52435,11 +52435,11 @@ SkakNew 32 121 `<version 0`>
'-+' '' 105
'&#x003d;' '' 10
'&#x221e;' '' 107
-'&#9135;' '1' 108
-'&#8983;' '' 109
+'&#x9135;' '1' 108
+'&#xFF03;' '' 109
'=&#x221e;' '1' 110
'o' '1' 111
-'&#9817;' '' 112
+'&#x9817;' '' 112
'q' '1' 113
'r' '1' 114
's' '1' 115
@@ -52447,8 +52447,8 @@ SkakNew 32 121 `<version 0`>
'u' '1' 117
'v' '1' 118
'w' '1' 119
-'&#9587;' '' 120
-'&#9711;' '' 121
+'&#x9587;' '' 120
+'&#x9711;' '' 121
SkakNew 32 121
>>>
\AddFont{skak-new}{unicode/misc/SkakNew}
@@ -66997,8 +66997,797 @@ htfcss: mdbchro7t font-style: italic;
\AddFont{mdbchro7t}{alias/mathdesign/mdbchro7t}
+%%%%%%%%%%%%%%%%
+\Section{Mathabx}
+%%%%%%%%%%%%%%%%
+Math fonts by Anthony Phan
+
+
+\<matha\><<<
+matha 0 251 % matha.htf
+'&#x002b;' '' 0 % Copyright 2023 TeX Users Group
+'&#x2212;' '' 1 %
+'&#x00d7;' '' 2 % This work may be distributed and/or modified under the
+'&#x00f7;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x00b7;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x25e6;' '' 5 % later version. The latest version of this license is in
+'&#x2217;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x2217;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x00b1;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x2213;' '' 9 %
+'&#x22c9;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x22ca;' '' 11 %
+'&#x25c7;' '' 12 % The Current Maintainer of this work
+'&#x2022;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x2605;' '' 14 %
+'&#x2736;' '' 15 % If you modify this program, changing the
+'&#x003d;' '' 16 % version identification would be appreciated.
+'&#x2261;' '' 17
+'&#x223c;' '' 18
+'&#x2248;' '' 19
+'&#x2243;' '' 20
+'&#x2245;' '' 21
+'&#x224d;' '' 22
+'&#x2223;' '' 23
+'&#x2260;' '' 24
+'&#x2262;' '' 25
+'&#x2241;' '' 26
+'&#x2249;' '' 27
+'&#x2244;' '' 28
+'&#x2247;' '' 29
+'&#x226d;' '' 30
+'&#x2224;' '' 31
+'&#x00ac;' '' 32
+'&#x226a;' '' 33
+'&#x226b;' '' 34
+'&#x22d5;' '' 35
+'&#x22a2;' '' 36
+'&#x22a3;' '' 37
+'&#x22ac;' '' 38
+'' '1' 39
+'&#x22a8;' '' 40
+'&#x2ae4;' '' 41
+'&#x22ad;' '' 42
+'' '1' 43
+'&#x22a9;' '' 44
+'&#x2ae3;' '' 45
+'&#x22ae;' '' 46
+'' '1' 47
+'&#x00b0;' '' 48
+'&#x2032;' '' 49
+'&#x2033;' '' 50
+'&#x2034;' '' 51
+'&#x2057;' '' 52
+'&#x266d;' '' 53
+'&#x266e;' '' 54
+'&#x266f;' '' 55
+'&#x221e;' '' 56
+'&#x221d;' '' 57
+'&#x2020;' '' 58
+'&#x2021;' '' 59
+'&#x2211;' '' 60
+'&#x220f;' '' 61
+'&#x2210;' '' 62
+'&#x221a;' '' 63
+'&#x2200;' '' 64
+'&#x2201;' '' 65
+'&#x2202;' '' 66
+'' '1' 67
+'&#x2203;' '' 68
+'&#x2204;' '' 69
+'&#x2132;' '' 70
+'&#x2141;' '' 71
+'&#x2205;' '' 72
+'&#x2300;' '' 73
+'&#x22a4;' '' 74
+'&#x22a5;' '' 75
+'' '1' 76
+'' '1' 77
+'&#x22cf;' '' 78
+'&#x22ce;' '' 79
+'&#x2208;' '' 80
+'&#x220b;' '' 81
+'&#x2209;' '' 82
+'&#x220c;' '' 83
+'&#x2209;' '' 84
+'&#x220c;' '' 85
+'&#x22f6;' '' 86
+'&#x22f8;' '' 87
+'&#x22c2;' '' 88
+'&#x22c3;' '' 89
+'&#x2a04;' '' 90
+'&#x2a05;' '' 91
+'&#x2a06;' '' 92
+'' '1' 93
+'&#x2227;' '' 94
+'&#x2228;' '' 95
+'&#x2295;' '' 96
+'&#x2296;' '' 97
+'&#x2297;' '' 98
+'&#x2a38;' '' 99
+'&#x2299;' '' 100
+'&#x229a;' '' 101
+'&#x229b;' '' 102
+'&#x229b;' '' 103
+'' '1' 104
+'' '1' 105
+'' '1' 106
+'&#x29ba;' '' 107
+'&#x25cb;' '' 108
+'&#x2298;' '' 109
+'&#x2349;' '' 110
+'&#x1f7d5;' '' 111
+'&#x0028;' '' 112
+'&#x0029;' '' 113
+'&#x005b;' '' 114
+'&#x005d;' '' 115
+'&#x007b;' '' 116
+'&#x007d;' '' 117
+'&#x27e6;' '' 118
+'&#x27e7;' '' 119
+'&#x27e8;' '' 120
+'&#x27e9;' '' 121
+'&#x005c;' '' 122
+'&#x002f;' '' 123
+'&#x007c;' '' 124
+'&#x2016;' '' 125
+'&#x2af4;' '' 126
+'&#x007c;' '' 127
+'&#x2282;' '' 128
+'&#x2283;' '' 129
+'&#x2284;' '' 130
+'&#x2285;' '' 131
+'&#x2286;' '' 132
+'&#x2287;' '' 133
+'&#x2288;' '' 134
+'&#x2289;' '' 135
+'&#x228a;' '' 136
+'&#x228b;' '' 137
+'' '1' 138
+'' '1' 139
+'&#x2ac5;' '' 140
+'&#x2ac6;' '' 141
+'' '1' 142
+'' '1' 143
+'&#x2acb;' '' 144
+'&#x2acc;' '' 145
+'' '1' 146
+'' '1' 147
+'&#x22d0;' '' 148
+'&#x22d1;' '' 149
+'' '1' 150
+'' '1' 151
+'&#x22b2;' '' 152
+'&#x22b3;' '' 153
+'&#x22ea;' '' 154
+'&#x22eb;' '' 155
+'&#x22b4;' '' 156
+'&#x22b5;' '' 157
+'&#x22ec;' '' 158
+'&#x22ed;' '' 159
+'&#x003c;' '' 160
+'&#x003e;' '' 161
+'&#x226e;' '' 162
+'&#x226f;' '' 163
+'&#x2a7d;' '' 164
+'&#x2a7e;' '' 165
+'&#x2270;' '' 166
+'&#x2271;' '' 167
+'&#x2264;' '' 168
+'&#x2265;' '' 169
+'&#x2270;' '' 170
+'&#x2271;' '' 171
+'&#x2a87;' '' 172
+'&#x2a88;' '' 173
+'&#x2266;' '' 174
+'&#x2267;' '' 175
+'' '1' 176
+'' '1' 177
+'&#x2268;' '' 178
+'&#x2269;' '' 179
+'&#x2268;' '' 180
+'&#x2269;' '' 181
+'&#x22dc;' '' 182
+'&#x22dd;' '' 183
+'' '1' 184
+'' '1' 185
+'&#x2276;' '' 186
+'&#x2277;' '' 187
+'&#x22da;' '' 188
+'&#x22db;' '' 189
+'&#x2a8b;' '' 190
+'&#x2a8c;' '' 191
+'&#x2272;' '' 192
+'&#x2273;' '' 193
+'&#x2274;' '' 194
+'&#x2275;' '' 195
+'&#x22e6;' '' 196
+'&#x22e7;' '' 197
+'&#x2a85;' '' 198
+'&#x2a86;' '' 199
+'' '1' 200
+'' '1' 201
+'&#x2a89;' '' 202
+'&#x2a8a;' '' 203
+'&#x22d6;' '' 204
+'&#x22d7;' '' 205
+'&#x2aa1;' '' 206
+'&#x2aa2;' '' 207
+'&#x2190;' '' 208
+'&#x2192;' '' 209
+'&#x2191;' '' 210
+'&#x2193;' '' 211
+'&#x2196;' '' 212
+'&#x2197;' '' 213
+'&#x2199;' '' 214
+'&#x2198;' '' 215
+'&#x2194;' '' 216
+'&#x2195;' '' 217
+'&#x219a;' '' 218
+'&#x219b;' '' 219
+'&#x21ae;' '' 220
+'&#x23af;' '' 221
+'&#x22a6;' '' 222
+'&#x2ade;' '' 223
+'&#x21bc;' '' 224
+'&#x21c0;' '' 225
+'&#x21bd;' '' 226
+'&#x21c1;' '' 227
+'&#x21bf;' '' 228
+'&#x21c3;' '' 229
+'&#x21be;' '' 230
+'&#x21c2;' '' 231
+'&#x21cb;' '' 232
+'&#x21cc;' '' 233
+'&#x296e;' '' 234
+'&#x296f;' '' 235
+'' '1' 236
+'' '1' 237
+'' '1' 238
+'' '1' 239
+'&#x21d0;' '' 240
+'&#x21d2;' '' 241
+'&#x21d1;' '' 242
+'&#x21d3;' '' 243
+'&#x21d4;' '' 244
+'&#x21d5;' '' 245
+'&#x21cd;' '' 246
+'&#x21cf;' '' 247
+'&#x21ce;' '' 248
+'&#x2550;' '' 249
+'' '1'
+'' '1'
+matha 0 251
+>>>
+
+\AddFont{matha}{unicode/mathabx/matha}
+
+\<mathb\><<<
+mathb 0 255 % mathb.htf
+'&#x2214;' '' 0 % Copyright 2023 TeX Users Group
+'&#x2238;' '' 1 %
+'&#x2a30;' '' 2 % This work may be distributed and/or modified under the
+'&#x2a2a;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x00b7;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x25ab;' '' 5 % later version. The latest version of this license is in
+'&#x002a;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x002a;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x2a22;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x2316;' '' 9 %
+'&#x2733;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x22c7;' '' 11 %
+'&#x2b29;' '' 12 % The Current Maintainer of this work
+'&#x25aa;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x2605;' '' 14 %
+'&#x2736;' '' 15 % If you modify this program, changing the
+'&#x2250;' '' 16 % version identification would be appreciated.
+'&#x2a66;' '' 17
+'&#x2251;' '' 18
+'&#x2253;' '' 19
+'&#x2252;' '' 20
+'&#x2254;' '' 21
+'&#x2255;' '' 22
+'' '1' 23
+'' '1' 24
+'' '1' 25
+'&#x2257;' '' 26
+'&#x2256;' '' 27
+'&#x225c;' '' 28
+'' '1' 29
+'' '1' 30
+'' '1' 31
+'&#x226c;' '' 32
+'&#x23dd;' '' 33
+'&#x23dc;' '' 34
+'&#x29e3;' '' 35
+'&#x22cb;' '' 36
+'&#x22cc;' '' 37
+'&#x22d4;' '' 38
+'&#x2a1d;' '' 39
+'&#x22ab;' '' 40
+'&#x2ae5;' '' 41
+'&#x22af;' '' 42
+'' '1' 43
+'&#x22aa;' '' 44
+'' '1' 45
+'' '1' 46
+'' '1' 47
+'' '1' 48
+'' '1' 49
+'' '1' 50
+'' '1' 51
+'' '1' 52
+'' '1' 53
+'&#x2234;' '' 54
+'&#x2235;' '' 55
+'&#x02da;' '' 56
+'&#x02d9;' '' 57
+'&#x00a8;' '' 58
+'&#x2026;' '' 59
+'' '1' 60
+'&#x2220;' '' 61
+'&#x2221;' '' 62
+'&#x2222;' '' 63
+'&#x2609;' '' 64
+'&#x263f;' '' 65
+'&#x2640;' '' 66
+'&#x1f728;' '' 67
+'&#x2642;' '' 68
+'&#x2643;' '' 69
+'&#x2644;' '' 70
+'&#x26e2;' '' 71
+'&#x2646;' '' 72
+'&#x2647;' '' 73
+'&#x2641;' '' 74
+'&#x263e;' '' 75
+'&#x263d;' '' 76
+'&#x25cb;' '' 77
+'&#x25cf;' '' 78
+'' '1' 79
+'&#x2648;' '' 80
+'&#x2649;' '' 81
+'&#x264a;' '' 82
+'&#x264b;' '' 83
+'&#x264c;' '' 84
+'&#x264d;' '' 85
+'&#x264e;' '' 86
+'&#x264f;' '' 87
+'&#x22bc;' '' 88
+'&#x22bb;' '' 89
+'&#x2a5e;' '' 90
+'&#x2a63;' '' 91
+'&#x22d2;' '' 92
+'&#x22d3;' '' 93
+'&#x2a4e;' '' 94
+'&#x2a4f;' '' 95
+'&#x229e;' '' 96
+'&#x229f;' '' 97
+'&#x22a0;' '' 98
+'' '1' 99
+'&#x22a1;' '' 100
+'&#x29c7;' '' 101
+'&#x29c6;' '' 102
+'&#x29c6;' '' 103
+'' '1' 104
+'' '1' 105
+'' '1' 106
+'' '1' 107
+'&#x25a1;' '' 108
+'&#x29c4;' '' 109
+'&#x29c5;' '' 110
+'' '1' 111
+'&#x0028;' '' 112
+'&#x0029;' '' 113
+'&#x23a1;' '' 114
+'&#x23a4;' '' 115
+'&#x23a3;' '' 116
+'&#x23a6;' '' 117
+'' '1' 118
+'' '1' 119
+'&#x231c;' '' 120
+'&#x231d;' '' 121
+'&#x231e;' '' 122
+'&#x231f;' '' 123
+'&#x005c;' '' 124
+'&#x002f;' '' 125
+'&#x007c;' '' 126
+'&#x002f;' '' 127
+'&#x228f;' '' 128
+'&#x2290;' '' 129
+'' '1' 130
+'' '1' 131
+'&#x2291;' '' 132
+'&#x2292;' '' 133
+'&#x22e2;' '' 134
+'&#x22e3;' '' 135
+'&#x22e4;' '' 136
+'&#x22e5;' '' 137
+'' '1' 138
+'' '1' 139
+'' '1' 140
+'' '1' 141
+'' '1' 142
+'' '1' 143
+'' '1' 144
+'' '1' 145
+'' '1' 146
+'' '1' 147
+'' '1' 148
+'' '1' 149
+'' '1' 150
+'' '1' 151
+'&#x25b5;' '' 152
+'&#x25bf;' '' 153
+'&#x25c3;' '' 154
+'&#x25b9;' '' 155
+'&#x25b4;' '' 156
+'&#x25be;' '' 157
+'&#x25c2;' '' 158
+'&#x25b8;' '' 159
+'&#x227a;' '' 160
+'&#x227b;' '' 161
+'&#x2280;' '' 162
+'&#x2281;' '' 163
+'&#x227c;' '' 164
+'&#x227d;' '' 165
+'' '1' 166
+'' '1' 167
+'&#x2aaf;' '' 168
+'&#x2ab0;' '' 169
+'' '1' 170
+'' '1' 171
+'&#x2ab1;' '' 172
+'&#x2ab2;' '' 173
+'&#x2ab3;' '' 174
+'&#x2ab4;' '' 175
+'' '1' 176
+'' '1' 177
+'&#x2ab5;' '' 178
+'&#x2ab6;' '' 179
+'&#x2ab5;' '' 180
+'&#x2ab6;' '' 181
+'&#x22de;' '' 182
+'&#x22df;' '' 183
+'' '1' 184
+'' '1' 185
+'' '1' 186
+'' '1' 187
+'' '1' 188
+'' '1' 189
+'' '1' 190
+'' '1' 191
+'&#x227e;' '' 192
+'&#x227f;' '' 193
+'' '1' 194
+'' '1' 195
+'&#x22e8;' '' 196
+'&#x22e9;' '' 197
+'&#x2ab7;' '' 198
+'&#x2ab8;' '' 199
+'' '1' 200
+'' '1' 201
+'&#x2ab9;' '' 202
+'&#x2aba;' '' 203
+'' '1' 204
+'' '1' 205
+'&#x2abb;' '' 206
+'&#x2abc;' '' 207
+'&#x21c7;' '' 208
+'&#x21c9;' '' 209
+'&#x21c8;' '' 210
+'&#x21ca;' '' 211
+'&#x21c6;' '' 212
+'&#x21c4;' '' 213
+'&#x21c5;' '' 214
+'&#x21f5;' '' 215
+'&#x2962;' '' 216
+'&#x2964;' '' 217
+'&#x2963;' '' 218
+'&#x2965;' '' 219
+'&#x296a;' '' 220
+'&#x296c;' '' 221
+'&#x296b;' '' 222
+'&#x296d;' '' 223
+'&#x294a;' '' 224
+'&#x294b;' '' 225
+'&#x02be;' '' 226
+'&#x02bf;' '' 227
+'&#x002f;' '' 228
+'&#x005c;' '' 229
+'' '1' 230
+'' '1' 231
+'&#x21b0;' '' 232
+'&#x21b1;' '' 233
+'&#x21b2;' '' 234
+'&#x21b3;' '' 235
+'&#x21ab;' '' 236
+'&#x21ac;' '' 237
+'' '1' 238
+'' '1' 239
+'&#x293a;' '' 240
+'&#x21b7;' '' 241
+'' '1' 242
+'' '1' 243
+'&#x293b;' '' 244
+'' '1' 245
+'&#x21ba;' '' 246
+'&#x21bb;' '' 247
+'&#x21dc;' '' 248
+'&#x21dd;' '' 249
+'' '1' 250
+'' '1' 251
+'' '1' 252
+'&#x27f2;' '' 253
+'' '1' 254
+'' '1' 255
+mathb 0 255
+>>>
+
+\AddFont{mathb}{unicode/mathabx/mathb}
+
+\<mathx\><<<
+mathx 0 255 % mathx.htf
+'&#x0028;' '' 0 % Copyright 2023 TeX Users Group
+'&#x0028;' '' 1 %
+'&#x0028;' '' 2 % This work may be distributed and/or modified under the
+'&#x0028;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x239b;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x239d;' '' 5 % later version. The latest version of this license is in
+'&#x007c;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x007c;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x0029;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x0029;' '' 9 %
+'&#x0029;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x0029;' '' 11 %
+'&#x239e;' '' 12 % The Current Maintainer of this work
+'&#x23a0;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x007c;' '' 14 %
+'&#x2016;' '' 15 % If you modify this program, changing the
+'&#x005b;' '' 16 % version identification would be appreciated.
+'&#x005b;' '' 17
+'&#x005b;' '' 18
+'&#x005b;' '' 19
+'&#x2308;' '' 20
+'&#x230a;' '' 21
+'&#x007c;' '' 22
+'&#x2af4;' '' 23
+'&#x005d;' '' 24
+'&#x005d;' '' 25
+'&#x005d;' '' 26
+'&#x005d;' '' 27
+'&#x2309;' '' 28
+'&#x230b;' '' 29
+'&#x007c;' '' 30
+'&#x007c;' '' 31
+'&#x007b;' '' 32
+'&#x007b;' '' 33
+'&#x007b;' '' 34
+'&#x007b;' '' 35
+'&#x23a7;' '' 36
+'&#x23a9;' '' 37
+'&#x23a8;' '' 38
+'&#x007c;' '' 39
+'&#x007d;' '' 40
+'&#x007d;' '' 41
+'&#x007d;' '' 42
+'&#x007d;' '' 43
+'&#x23ab;' '' 44
+'&#x23ad;' '' 45
+'&#x23ac;' '' 46
+'&#x007c;' '' 47
+'&#x27e6;' '' 48
+'&#x27e6;' '' 49
+'&#x27e6;' '' 50
+'&#x27e6;' '' 51
+'' '1' 52
+'' '1' 53
+'&#x2016;' '' 54
+'' '1' 55
+'&#x27e7;' '' 56
+'&#x27e7;' '' 57
+'&#x27e7;' '' 58
+'&#x27e7;' '' 59
+'' '1' 60
+'' '1' 61
+'&#x2016;' '' 62
+'' '1' 63
+'&#x27e8;' '' 64
+'&#x27e8;' '' 65
+'&#x27e8;' '' 66
+'&#x27e8;' '' 67
+'&#x27e9;' '' 68
+'&#x27e9;' '' 69
+'&#x27e9;' '' 70
+'&#x27e9;' '' 71
+'&#x005c;' '' 72
+'&#x005c;' '' 73
+'&#x005c;' '' 74
+'&#x005c;' '' 75
+'&#x002f;' '' 76
+'&#x002f;' '' 77
+'&#x002f;' '' 78
+'&#x002f;' '' 79
+'&#x23a1;' '' 80
+'&#x23a1;' '' 81
+'&#x23a1;' '' 82
+'&#x23a1;' '' 83
+'&#x23a4;' '' 84
+'&#x23a4;' '' 85
+'&#x23a4;' '' 86
+'&#x23a4;' '' 87
+'&#x23a3;' '' 88
+'&#x23a3;' '' 89
+'&#x23a3;' '' 90
+'&#x23a3;' '' 91
+'&#x23a6;' '' 92
+'&#x23a6;' '' 93
+'&#x23a6;' '' 94
+'&#x23a6;' '' 95
+'&#x221a;' '' 96
+'&#x221a;' '' 97
+'&#x221a;' '' 98
+'&#x221a;' '' 99
+'' '1' 100
+'&#x23b7;' '' 101
+'&#x23b9;' '' 102
+'&#x250c;' '' 103
+'&#x25dc;' '' 104
+'&#x23de;' '' 105
+'&#x25dd;' '' 106
+'&#x23af;' '' 107
+'&#x25df;' '' 108
+'&#x23df;' '' 109
+'&#x25de;' '' 110
+'&#x23af;' '' 111
+'&#x02c6;' '' 112
+'&#x02c7;' '' 113
+'&#x02dc;' '' 114
+'&#x00af;' '' 115
+'&#x2192;' '' 116
+'&#x2040;' '' 117
+'&#x0028;' '' 118
+'&#x0029;' '' 119
+'&#x02c6;' '' 120
+'&#x02c6;' '' 121
+'&#x02c6;' '' 122
+'&#x02c6;' '' 123
+'&#x02c7;' '' 124
+'&#x02c7;' '' 125
+'&#x02c7;' '' 126
+'&#x02c7;' '' 127
+'&#x02dc;' '' 128
+'&#x02dc;' '' 129
+'&#x02dc;' '' 130
+'&#x02dc;' '' 131
+'&#x00af;' '' 132
+'&#x00af;' '' 133
+'&#x00af;' '' 134
+'&#x00af;' '' 135
+'&#x2192;' '' 136
+'&#x2192;' '' 137
+'&#x2192;' '' 138
+'&#x2192;' '' 139
+'&#x2040;' '' 140
+'&#x2040;' '' 141
+'&#x2040;' '' 142
+'&#x2040;' '' 143
+'&#x002b;' '' 144
+'&#x00d7;' '' 145
+'&#x2201;' '' 146
+'&#x22c3;' '' 147
+'&#x22c2;' '' 148
+'&#x2a04;' '' 149
+'&#x2a05;' '' 150
+'&#x2a06;' '' 151
+'' '1' 152
+'&#x22c0;' '' 153
+'&#x22c1;' '' 154
+'&#x22cf;' '' 155
+'&#x22ce;' '' 156
+'&#x2191;' '' 157
+'&#x2193;' '' 158
+'&#x007c;' '' 159
+'&#x002b;' '' 160
+'&#x00d7;' '' 161
+'&#x2201;' '' 162
+'&#x22c3;' '' 163
+'&#x22c2;' '' 164
+'&#x2a04;' '' 165
+'&#x2a05;' '' 166
+'&#x2a06;' '' 167
+'' '1' 168
+'&#x22c0;' '' 169
+'&#x22c1;' '' 170
+'&#x22cf;' '' 171
+'&#x22ce;' '' 172
+'&#x21d1;' '' 173
+'&#x21d3;' '' 174
+'&#x2016;' '' 175
+'&#x03a3;' '' 176
+'&#x03a0;' '' 177
+'&#x2210;' '' 178
+'&#x222b;' '' 179
+'&#x222c;' '' 180
+'&#x222d;' '' 181
+'&#x222e;' '' 182
+'&#x222f;' '' 183
+'&#x03a3;' '' 184
+'&#x03a0;' '' 185
+'&#x2210;' '' 186
+'&#x222b;' '' 187
+'&#x222c;' '' 188
+'&#x222d;' '' 189
+'&#x222e;' '' 190
+'&#x222f;' '' 191
+'&#x2295;' '' 192
+'&#x2296;' '' 193
+'&#x2297;' '' 194
+'&#x2a38;' '' 195
+'&#x2299;' '' 196
+'&#x229a;' '' 197
+'&#x229b;' '' 198
+'&#x229b;' '' 199
+'' '1' 200
+'' '1' 201
+'' '1' 202
+'&#x29ba;' '' 203
+'&#x25cb;' '' 204
+'&#x2298;' '' 205
+'&#x2349;' '' 206
+'&#x1f7d5;' '' 207
+'&#x229e;' '' 208
+'&#x229f;' '' 209
+'&#x22a0;' '' 210
+'' '' 211
+'&#x22a1;' '' 212
+'&#x29c7;' '' 213
+'&#x29c6;' '' 214
+'&#x29c6;' '' 215
+'' '1' 216
+'' '1' 217
+'' '1' 218
+'' '1' 219
+'&#x25a1;' '' 220
+'&#x29c4;' '' 221
+'&#x29c5;' '' 222
+'' '1' 223
+'&#x2295;' '' 224
+'&#x2296;' '' 225
+'&#x2297;' '' 226
+'&#x2a38;' '' 227
+'&#x2299;' '' 228
+'&#x229a;' '' 229
+'&#x229b;' '' 230
+'&#x229b;' '' 231
+'' '1' 232
+'' '1' 233
+'' '1' 234
+'&#x29ba;' '' 235
+'&#x25cb;' '' 236
+'&#x2298;' '' 237
+'&#x2349;' '' 238
+'&#x1f7d5;' '' 239
+'&#x229e;' '' 240
+'&#x229f;' '' 241
+'&#x22a0;' '' 242
+'' '1' 243
+'&#x22a1;' '' 244
+'&#x29c7;' '' 245
+'&#x29c6;' '' 246
+'&#x29c6;' '' 247
+'' '1' 248
+'' '1' 249
+'' '1' 250
+'' '1' 251
+'&#x25a1;' '' 252
+'&#x29c4;' '' 253
+'&#x29c5;' '' 254
+'' '' 255
+mathx 0 255
+>>>
+\AddFont{mathx}{unicode/mathabx/mathx}
diff --git a/Master/texmf-dist/tex/generic/tex4ht/xskak.4ht b/Master/texmf-dist/tex/generic/tex4ht/xskak.4ht
index 9f59aafa149..f18bfba72d9 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/xskak.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/xskak.4ht
@@ -1,5 +1,5 @@
-% xskak.4ht (2022-11-04-13:31), generated from tex4ht-4ht.tex
-% Copyright 2022 TeX Users Group
+% xskak.4ht (2023-07-28-13:49), generated from tex4ht-4ht.tex
+% Copyright 2022-2023 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -16,7 +16,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-11-04-13:31}
+\immediate\write-1{version 2023-07-28-13:49}
\ExplSyntaxOn
\def\:xskakdepth{vertical-align:-\fp_eval:n{
@@ -31,7 +31,10 @@
%\a:mainline\Picture*[\detokenize{#1}]{ style="\:xskakdepth"}\box0\EndPicture\b:mainline%
\a:mainline\box0\b:mainline%
}
-\HLet\mainline\:tempa
+% I've found that mainline redefinition can lead to compilation errors
+% As it prints text and chess symbols are retrieved from SkakNew.htf, maybe we don't need
+% to compile it to image at all, unless we get further bug reports.
+% \HLet\mainline\:tempa
\NewConfigure{xskakget}{2}
\def\:tempa#1{%
@@ -42,15 +45,15 @@
\HLet\xskakget\:tempa
\NewConfigure{chessboard}{2}
-\def\:tempa{%
+\newcommand\:newchessgame[1][]{%
% reset to the original version of \chessboard
\let\:currchesboard\chessboard
\let\chessboard\o:chessboard:%
- \o:newchessgame:%
+ \o:newchessgame:[#1]%
% set the TeX4ht version of \chessboard back
\let\chessboard\:currchesboard
}
-\HLet\newchessgame\:tempa
+\HLet\newchessgame\:newchessgame
\Hinput{xskak}
\endinput
diff --git a/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/matha.htf b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/matha.htf
new file mode 100644
index 00000000000..1bdf3d03c87
--- /dev/null
+++ b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/matha.htf
@@ -0,0 +1,255 @@
+matha 0 251 % matha.htf
+'&#x002b;' '' 0 % Copyright 2023 TeX Users Group
+'&#x2212;' '' 1 %
+'&#x00d7;' '' 2 % This work may be distributed and/or modified under the
+'&#x00f7;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x00b7;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x25e6;' '' 5 % later version. The latest version of this license is in
+'&#x2217;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x2217;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x00b1;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x2213;' '' 9 %
+'&#x22c9;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x22ca;' '' 11 %
+'&#x25c7;' '' 12 % The Current Maintainer of this work
+'&#x2022;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x2605;' '' 14 %
+'&#x2736;' '' 15 % If you modify this program, changing the
+'&#x003d;' '' 16 % version identification would be appreciated.
+'&#x2261;' '' 17
+'&#x223c;' '' 18
+'&#x2248;' '' 19
+'&#x2243;' '' 20
+'&#x2245;' '' 21
+'&#x224d;' '' 22
+'&#x2223;' '' 23
+'&#x2260;' '' 24
+'&#x2262;' '' 25
+'&#x2241;' '' 26
+'&#x2249;' '' 27
+'&#x2244;' '' 28
+'&#x2247;' '' 29
+'&#x226d;' '' 30
+'&#x2224;' '' 31
+'&#x00ac;' '' 32
+'&#x226a;' '' 33
+'&#x226b;' '' 34
+'&#x22d5;' '' 35
+'&#x22a2;' '' 36
+'&#x22a3;' '' 37
+'&#x22ac;' '' 38
+'' '1' 39
+'&#x22a8;' '' 40
+'&#x2ae4;' '' 41
+'&#x22ad;' '' 42
+'' '1' 43
+'&#x22a9;' '' 44
+'&#x2ae3;' '' 45
+'&#x22ae;' '' 46
+'' '1' 47
+'&#x00b0;' '' 48
+'&#x2032;' '' 49
+'&#x2033;' '' 50
+'&#x2034;' '' 51
+'&#x2057;' '' 52
+'&#x266d;' '' 53
+'&#x266e;' '' 54
+'&#x266f;' '' 55
+'&#x221e;' '' 56
+'&#x221d;' '' 57
+'&#x2020;' '' 58
+'&#x2021;' '' 59
+'&#x2211;' '' 60
+'&#x220f;' '' 61
+'&#x2210;' '' 62
+'&#x221a;' '' 63
+'&#x2200;' '' 64
+'&#x2201;' '' 65
+'&#x2202;' '' 66
+'' '1' 67
+'&#x2203;' '' 68
+'&#x2204;' '' 69
+'&#x2132;' '' 70
+'&#x2141;' '' 71
+'&#x2205;' '' 72
+'&#x2300;' '' 73
+'&#x22a4;' '' 74
+'&#x22a5;' '' 75
+'' '1' 76
+'' '1' 77
+'&#x22cf;' '' 78
+'&#x22ce;' '' 79
+'&#x2208;' '' 80
+'&#x220b;' '' 81
+'&#x2209;' '' 82
+'&#x220c;' '' 83
+'&#x2209;' '' 84
+'&#x220c;' '' 85
+'&#x22f6;' '' 86
+'&#x22f8;' '' 87
+'&#x22c2;' '' 88
+'&#x22c3;' '' 89
+'&#x2a04;' '' 90
+'&#x2a05;' '' 91
+'&#x2a06;' '' 92
+'' '1' 93
+'&#x2227;' '' 94
+'&#x2228;' '' 95
+'&#x2295;' '' 96
+'&#x2296;' '' 97
+'&#x2297;' '' 98
+'&#x2a38;' '' 99
+'&#x2299;' '' 100
+'&#x229a;' '' 101
+'&#x229b;' '' 102
+'&#x229b;' '' 103
+'' '1' 104
+'' '1' 105
+'' '1' 106
+'&#x29ba;' '' 107
+'&#x25cb;' '' 108
+'&#x2298;' '' 109
+'&#x2349;' '' 110
+'&#x1f7d5;' '' 111
+'&#x0028;' '' 112
+'&#x0029;' '' 113
+'&#x005b;' '' 114
+'&#x005d;' '' 115
+'&#x007b;' '' 116
+'&#x007d;' '' 117
+'&#x27e6;' '' 118
+'&#x27e7;' '' 119
+'&#x27e8;' '' 120
+'&#x27e9;' '' 121
+'&#x005c;' '' 122
+'&#x002f;' '' 123
+'&#x007c;' '' 124
+'&#x2016;' '' 125
+'&#x2af4;' '' 126
+'&#x007c;' '' 127
+'&#x2282;' '' 128
+'&#x2283;' '' 129
+'&#x2284;' '' 130
+'&#x2285;' '' 131
+'&#x2286;' '' 132
+'&#x2287;' '' 133
+'&#x2288;' '' 134
+'&#x2289;' '' 135
+'&#x228a;' '' 136
+'&#x228b;' '' 137
+'' '1' 138
+'' '1' 139
+'&#x2ac5;' '' 140
+'&#x2ac6;' '' 141
+'' '1' 142
+'' '1' 143
+'&#x2acb;' '' 144
+'&#x2acc;' '' 145
+'' '1' 146
+'' '1' 147
+'&#x22d0;' '' 148
+'&#x22d1;' '' 149
+'' '1' 150
+'' '1' 151
+'&#x22b2;' '' 152
+'&#x22b3;' '' 153
+'&#x22ea;' '' 154
+'&#x22eb;' '' 155
+'&#x22b4;' '' 156
+'&#x22b5;' '' 157
+'&#x22ec;' '' 158
+'&#x22ed;' '' 159
+'&#x003c;' '' 160
+'&#x003e;' '' 161
+'&#x226e;' '' 162
+'&#x226f;' '' 163
+'&#x2a7d;' '' 164
+'&#x2a7e;' '' 165
+'&#x2270;' '' 166
+'&#x2271;' '' 167
+'&#x2264;' '' 168
+'&#x2265;' '' 169
+'&#x2270;' '' 170
+'&#x2271;' '' 171
+'&#x2a87;' '' 172
+'&#x2a88;' '' 173
+'&#x2266;' '' 174
+'&#x2267;' '' 175
+'' '1' 176
+'' '1' 177
+'&#x2268;' '' 178
+'&#x2269;' '' 179
+'&#x2268;' '' 180
+'&#x2269;' '' 181
+'&#x22dc;' '' 182
+'&#x22dd;' '' 183
+'' '1' 184
+'' '1' 185
+'&#x2276;' '' 186
+'&#x2277;' '' 187
+'&#x22da;' '' 188
+'&#x22db;' '' 189
+'&#x2a8b;' '' 190
+'&#x2a8c;' '' 191
+'&#x2272;' '' 192
+'&#x2273;' '' 193
+'&#x2274;' '' 194
+'&#x2275;' '' 195
+'&#x22e6;' '' 196
+'&#x22e7;' '' 197
+'&#x2a85;' '' 198
+'&#x2a86;' '' 199
+'' '1' 200
+'' '1' 201
+'&#x2a89;' '' 202
+'&#x2a8a;' '' 203
+'&#x22d6;' '' 204
+'&#x22d7;' '' 205
+'&#x2aa1;' '' 206
+'&#x2aa2;' '' 207
+'&#x2190;' '' 208
+'&#x2192;' '' 209
+'&#x2191;' '' 210
+'&#x2193;' '' 211
+'&#x2196;' '' 212
+'&#x2197;' '' 213
+'&#x2199;' '' 214
+'&#x2198;' '' 215
+'&#x2194;' '' 216
+'&#x2195;' '' 217
+'&#x219a;' '' 218
+'&#x219b;' '' 219
+'&#x21ae;' '' 220
+'&#x23af;' '' 221
+'&#x22a6;' '' 222
+'&#x2ade;' '' 223
+'&#x21bc;' '' 224
+'&#x21c0;' '' 225
+'&#x21bd;' '' 226
+'&#x21c1;' '' 227
+'&#x21bf;' '' 228
+'&#x21c3;' '' 229
+'&#x21be;' '' 230
+'&#x21c2;' '' 231
+'&#x21cb;' '' 232
+'&#x21cc;' '' 233
+'&#x296e;' '' 234
+'&#x296f;' '' 235
+'' '1' 236
+'' '1' 237
+'' '1' 238
+'' '1' 239
+'&#x21d0;' '' 240
+'&#x21d2;' '' 241
+'&#x21d1;' '' 242
+'&#x21d3;' '' 243
+'&#x21d4;' '' 244
+'&#x21d5;' '' 245
+'&#x21cd;' '' 246
+'&#x21cf;' '' 247
+'&#x21ce;' '' 248
+'&#x2550;' '' 249
+'' '1'
+'' '1'
+matha 0 251
+
diff --git a/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathb.htf b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathb.htf
new file mode 100644
index 00000000000..25613743c6b
--- /dev/null
+++ b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathb.htf
@@ -0,0 +1,259 @@
+mathb 0 255 % mathb.htf
+'&#x2214;' '' 0 % Copyright 2023 TeX Users Group
+'&#x2238;' '' 1 %
+'&#x2a30;' '' 2 % This work may be distributed and/or modified under the
+'&#x2a2a;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x00b7;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x25ab;' '' 5 % later version. The latest version of this license is in
+'&#x002a;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x002a;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x2a22;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x2316;' '' 9 %
+'&#x2733;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x22c7;' '' 11 %
+'&#x2b29;' '' 12 % The Current Maintainer of this work
+'&#x25aa;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x2605;' '' 14 %
+'&#x2736;' '' 15 % If you modify this program, changing the
+'&#x2250;' '' 16 % version identification would be appreciated.
+'&#x2a66;' '' 17
+'&#x2251;' '' 18
+'&#x2253;' '' 19
+'&#x2252;' '' 20
+'&#x2254;' '' 21
+'&#x2255;' '' 22
+'' '1' 23
+'' '1' 24
+'' '1' 25
+'&#x2257;' '' 26
+'&#x2256;' '' 27
+'&#x225c;' '' 28
+'' '1' 29
+'' '1' 30
+'' '1' 31
+'&#x226c;' '' 32
+'&#x23dd;' '' 33
+'&#x23dc;' '' 34
+'&#x29e3;' '' 35
+'&#x22cb;' '' 36
+'&#x22cc;' '' 37
+'&#x22d4;' '' 38
+'&#x2a1d;' '' 39
+'&#x22ab;' '' 40
+'&#x2ae5;' '' 41
+'&#x22af;' '' 42
+'' '1' 43
+'&#x22aa;' '' 44
+'' '1' 45
+'' '1' 46
+'' '1' 47
+'' '1' 48
+'' '1' 49
+'' '1' 50
+'' '1' 51
+'' '1' 52
+'' '1' 53
+'&#x2234;' '' 54
+'&#x2235;' '' 55
+'&#x02da;' '' 56
+'&#x02d9;' '' 57
+'&#x00a8;' '' 58
+'&#x2026;' '' 59
+'' '1' 60
+'&#x2220;' '' 61
+'&#x2221;' '' 62
+'&#x2222;' '' 63
+'&#x2609;' '' 64
+'&#x263f;' '' 65
+'&#x2640;' '' 66
+'&#x1f728;' '' 67
+'&#x2642;' '' 68
+'&#x2643;' '' 69
+'&#x2644;' '' 70
+'&#x26e2;' '' 71
+'&#x2646;' '' 72
+'&#x2647;' '' 73
+'&#x2641;' '' 74
+'&#x263e;' '' 75
+'&#x263d;' '' 76
+'&#x25cb;' '' 77
+'&#x25cf;' '' 78
+'' '1' 79
+'&#x2648;' '' 80
+'&#x2649;' '' 81
+'&#x264a;' '' 82
+'&#x264b;' '' 83
+'&#x264c;' '' 84
+'&#x264d;' '' 85
+'&#x264e;' '' 86
+'&#x264f;' '' 87
+'&#x22bc;' '' 88
+'&#x22bb;' '' 89
+'&#x2a5e;' '' 90
+'&#x2a63;' '' 91
+'&#x22d2;' '' 92
+'&#x22d3;' '' 93
+'&#x2a4e;' '' 94
+'&#x2a4f;' '' 95
+'&#x229e;' '' 96
+'&#x229f;' '' 97
+'&#x22a0;' '' 98
+'' '1' 99
+'&#x22a1;' '' 100
+'&#x29c7;' '' 101
+'&#x29c6;' '' 102
+'&#x29c6;' '' 103
+'' '1' 104
+'' '1' 105
+'' '1' 106
+'' '1' 107
+'&#x25a1;' '' 108
+'&#x29c4;' '' 109
+'&#x29c5;' '' 110
+'' '1' 111
+'&#x0028;' '' 112
+'&#x0029;' '' 113
+'&#x23a1;' '' 114
+'&#x23a4;' '' 115
+'&#x23a3;' '' 116
+'&#x23a6;' '' 117
+'' '1' 118
+'' '1' 119
+'&#x231c;' '' 120
+'&#x231d;' '' 121
+'&#x231e;' '' 122
+'&#x231f;' '' 123
+'&#x005c;' '' 124
+'&#x002f;' '' 125
+'&#x007c;' '' 126
+'&#x002f;' '' 127
+'&#x228f;' '' 128
+'&#x2290;' '' 129
+'' '1' 130
+'' '1' 131
+'&#x2291;' '' 132
+'&#x2292;' '' 133
+'&#x22e2;' '' 134
+'&#x22e3;' '' 135
+'&#x22e4;' '' 136
+'&#x22e5;' '' 137
+'' '1' 138
+'' '1' 139
+'' '1' 140
+'' '1' 141
+'' '1' 142
+'' '1' 143
+'' '1' 144
+'' '1' 145
+'' '1' 146
+'' '1' 147
+'' '1' 148
+'' '1' 149
+'' '1' 150
+'' '1' 151
+'&#x25b5;' '' 152
+'&#x25bf;' '' 153
+'&#x25c3;' '' 154
+'&#x25b9;' '' 155
+'&#x25b4;' '' 156
+'&#x25be;' '' 157
+'&#x25c2;' '' 158
+'&#x25b8;' '' 159
+'&#x227a;' '' 160
+'&#x227b;' '' 161
+'&#x2280;' '' 162
+'&#x2281;' '' 163
+'&#x227c;' '' 164
+'&#x227d;' '' 165
+'' '1' 166
+'' '1' 167
+'&#x2aaf;' '' 168
+'&#x2ab0;' '' 169
+'' '1' 170
+'' '1' 171
+'&#x2ab1;' '' 172
+'&#x2ab2;' '' 173
+'&#x2ab3;' '' 174
+'&#x2ab4;' '' 175
+'' '1' 176
+'' '1' 177
+'&#x2ab5;' '' 178
+'&#x2ab6;' '' 179
+'&#x2ab5;' '' 180
+'&#x2ab6;' '' 181
+'&#x22de;' '' 182
+'&#x22df;' '' 183
+'' '1' 184
+'' '1' 185
+'' '1' 186
+'' '1' 187
+'' '1' 188
+'' '1' 189
+'' '1' 190
+'' '1' 191
+'&#x227e;' '' 192
+'&#x227f;' '' 193
+'' '1' 194
+'' '1' 195
+'&#x22e8;' '' 196
+'&#x22e9;' '' 197
+'&#x2ab7;' '' 198
+'&#x2ab8;' '' 199
+'' '1' 200
+'' '1' 201
+'&#x2ab9;' '' 202
+'&#x2aba;' '' 203
+'' '1' 204
+'' '1' 205
+'&#x2abb;' '' 206
+'&#x2abc;' '' 207
+'&#x21c7;' '' 208
+'&#x21c9;' '' 209
+'&#x21c8;' '' 210
+'&#x21ca;' '' 211
+'&#x21c6;' '' 212
+'&#x21c4;' '' 213
+'&#x21c5;' '' 214
+'&#x21f5;' '' 215
+'&#x2962;' '' 216
+'&#x2964;' '' 217
+'&#x2963;' '' 218
+'&#x2965;' '' 219
+'&#x296a;' '' 220
+'&#x296c;' '' 221
+'&#x296b;' '' 222
+'&#x296d;' '' 223
+'&#x294a;' '' 224
+'&#x294b;' '' 225
+'&#x02be;' '' 226
+'&#x02bf;' '' 227
+'&#x002f;' '' 228
+'&#x005c;' '' 229
+'' '1' 230
+'' '1' 231
+'&#x21b0;' '' 232
+'&#x21b1;' '' 233
+'&#x21b2;' '' 234
+'&#x21b3;' '' 235
+'&#x21ab;' '' 236
+'&#x21ac;' '' 237
+'' '1' 238
+'' '1' 239
+'&#x293a;' '' 240
+'&#x21b7;' '' 241
+'' '1' 242
+'' '1' 243
+'&#x293b;' '' 244
+'' '1' 245
+'&#x21ba;' '' 246
+'&#x21bb;' '' 247
+'&#x21dc;' '' 248
+'&#x21dd;' '' 249
+'' '1' 250
+'' '1' 251
+'' '1' 252
+'&#x27f2;' '' 253
+'' '1' 254
+'' '1' 255
+mathb 0 255
+
diff --git a/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathx.htf b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathx.htf
new file mode 100644
index 00000000000..acc328adb1b
--- /dev/null
+++ b/Master/texmf-dist/tex4ht/ht-fonts/unicode/mathabx/mathx.htf
@@ -0,0 +1,259 @@
+mathx 0 255 % mathx.htf
+'&#x0028;' '' 0 % Copyright 2023 TeX Users Group
+'&#x0028;' '' 1 %
+'&#x0028;' '' 2 % This work may be distributed and/or modified under the
+'&#x0028;' '' 3 % conditions of the LaTeX Project Public License, either
+'&#x239b;' '' 4 % version 1.3c of this license or (at your option) any
+'&#x239d;' '' 5 % later version. The latest version of this license is in
+'&#x007c;' '' 6 % http://www.latex-project.org/lppl.txt
+'&#x007c;' '' 7 % and version 1.3c or later is part of all distributions
+'&#x0029;' '' 8 % of LaTeX version 2005/12/01 or later.
+'&#x0029;' '' 9 %
+'&#x0029;' '' 10 % This work has the LPPL maintenance status "maintained".
+'&#x0029;' '' 11 %
+'&#x239e;' '' 12 % The Current Maintainer of this work
+'&#x23a0;' '' 13 % is the TeX4ht Project <http://tug.org/tex4ht>.
+'&#x007c;' '' 14 %
+'&#x2016;' '' 15 % If you modify this program, changing the
+'&#x005b;' '' 16 % version identification would be appreciated.
+'&#x005b;' '' 17
+'&#x005b;' '' 18
+'&#x005b;' '' 19
+'&#x2308;' '' 20
+'&#x230a;' '' 21
+'&#x007c;' '' 22
+'&#x2af4;' '' 23
+'&#x005d;' '' 24
+'&#x005d;' '' 25
+'&#x005d;' '' 26
+'&#x005d;' '' 27
+'&#x2309;' '' 28
+'&#x230b;' '' 29
+'&#x007c;' '' 30
+'&#x007c;' '' 31
+'&#x007b;' '' 32
+'&#x007b;' '' 33
+'&#x007b;' '' 34
+'&#x007b;' '' 35
+'&#x23a7;' '' 36
+'&#x23a9;' '' 37
+'&#x23a8;' '' 38
+'&#x007c;' '' 39
+'&#x007d;' '' 40
+'&#x007d;' '' 41
+'&#x007d;' '' 42
+'&#x007d;' '' 43
+'&#x23ab;' '' 44
+'&#x23ad;' '' 45
+'&#x23ac;' '' 46
+'&#x007c;' '' 47
+'&#x27e6;' '' 48
+'&#x27e6;' '' 49
+'&#x27e6;' '' 50
+'&#x27e6;' '' 51
+'' '1' 52
+'' '1' 53
+'&#x2016;' '' 54
+'' '1' 55
+'&#x27e7;' '' 56
+'&#x27e7;' '' 57
+'&#x27e7;' '' 58
+'&#x27e7;' '' 59
+'' '1' 60
+'' '1' 61
+'&#x2016;' '' 62
+'' '1' 63
+'&#x27e8;' '' 64
+'&#x27e8;' '' 65
+'&#x27e8;' '' 66
+'&#x27e8;' '' 67
+'&#x27e9;' '' 68
+'&#x27e9;' '' 69
+'&#x27e9;' '' 70
+'&#x27e9;' '' 71
+'&#x005c;' '' 72
+'&#x005c;' '' 73
+'&#x005c;' '' 74
+'&#x005c;' '' 75
+'&#x002f;' '' 76
+'&#x002f;' '' 77
+'&#x002f;' '' 78
+'&#x002f;' '' 79
+'&#x23a1;' '' 80
+'&#x23a1;' '' 81
+'&#x23a1;' '' 82
+'&#x23a1;' '' 83
+'&#x23a4;' '' 84
+'&#x23a4;' '' 85
+'&#x23a4;' '' 86
+'&#x23a4;' '' 87
+'&#x23a3;' '' 88
+'&#x23a3;' '' 89
+'&#x23a3;' '' 90
+'&#x23a3;' '' 91
+'&#x23a6;' '' 92
+'&#x23a6;' '' 93
+'&#x23a6;' '' 94
+'&#x23a6;' '' 95
+'&#x221a;' '' 96
+'&#x221a;' '' 97
+'&#x221a;' '' 98
+'&#x221a;' '' 99
+'' '1' 100
+'&#x23b7;' '' 101
+'&#x23b9;' '' 102
+'&#x250c;' '' 103
+'&#x25dc;' '' 104
+'&#x23de;' '' 105
+'&#x25dd;' '' 106
+'&#x23af;' '' 107
+'&#x25df;' '' 108
+'&#x23df;' '' 109
+'&#x25de;' '' 110
+'&#x23af;' '' 111
+'&#x02c6;' '' 112
+'&#x02c7;' '' 113
+'&#x02dc;' '' 114
+'&#x00af;' '' 115
+'&#x2192;' '' 116
+'&#x2040;' '' 117
+'&#x0028;' '' 118
+'&#x0029;' '' 119
+'&#x02c6;' '' 120
+'&#x02c6;' '' 121
+'&#x02c6;' '' 122
+'&#x02c6;' '' 123
+'&#x02c7;' '' 124
+'&#x02c7;' '' 125
+'&#x02c7;' '' 126
+'&#x02c7;' '' 127
+'&#x02dc;' '' 128
+'&#x02dc;' '' 129
+'&#x02dc;' '' 130
+'&#x02dc;' '' 131
+'&#x00af;' '' 132
+'&#x00af;' '' 133
+'&#x00af;' '' 134
+'&#x00af;' '' 135
+'&#x2192;' '' 136
+'&#x2192;' '' 137
+'&#x2192;' '' 138
+'&#x2192;' '' 139
+'&#x2040;' '' 140
+'&#x2040;' '' 141
+'&#x2040;' '' 142
+'&#x2040;' '' 143
+'&#x002b;' '' 144
+'&#x00d7;' '' 145
+'&#x2201;' '' 146
+'&#x22c3;' '' 147
+'&#x22c2;' '' 148
+'&#x2a04;' '' 149
+'&#x2a05;' '' 150
+'&#x2a06;' '' 151
+'' '1' 152
+'&#x22c0;' '' 153
+'&#x22c1;' '' 154
+'&#x22cf;' '' 155
+'&#x22ce;' '' 156
+'&#x2191;' '' 157
+'&#x2193;' '' 158
+'&#x007c;' '' 159
+'&#x002b;' '' 160
+'&#x00d7;' '' 161
+'&#x2201;' '' 162
+'&#x22c3;' '' 163
+'&#x22c2;' '' 164
+'&#x2a04;' '' 165
+'&#x2a05;' '' 166
+'&#x2a06;' '' 167
+'' '1' 168
+'&#x22c0;' '' 169
+'&#x22c1;' '' 170
+'&#x22cf;' '' 171
+'&#x22ce;' '' 172
+'&#x21d1;' '' 173
+'&#x21d3;' '' 174
+'&#x2016;' '' 175
+'&#x03a3;' '' 176
+'&#x03a0;' '' 177
+'&#x2210;' '' 178
+'&#x222b;' '' 179
+'&#x222c;' '' 180
+'&#x222d;' '' 181
+'&#x222e;' '' 182
+'&#x222f;' '' 183
+'&#x03a3;' '' 184
+'&#x03a0;' '' 185
+'&#x2210;' '' 186
+'&#x222b;' '' 187
+'&#x222c;' '' 188
+'&#x222d;' '' 189
+'&#x222e;' '' 190
+'&#x222f;' '' 191
+'&#x2295;' '' 192
+'&#x2296;' '' 193
+'&#x2297;' '' 194
+'&#x2a38;' '' 195
+'&#x2299;' '' 196
+'&#x229a;' '' 197
+'&#x229b;' '' 198
+'&#x229b;' '' 199
+'' '1' 200
+'' '1' 201
+'' '1' 202
+'&#x29ba;' '' 203
+'&#x25cb;' '' 204
+'&#x2298;' '' 205
+'&#x2349;' '' 206
+'&#x1f7d5;' '' 207
+'&#x229e;' '' 208
+'&#x229f;' '' 209
+'&#x22a0;' '' 210
+'' '' 211
+'&#x22a1;' '' 212
+'&#x29c7;' '' 213
+'&#x29c6;' '' 214
+'&#x29c6;' '' 215
+'' '1' 216
+'' '1' 217
+'' '1' 218
+'' '1' 219
+'&#x25a1;' '' 220
+'&#x29c4;' '' 221
+'&#x29c5;' '' 222
+'' '1' 223
+'&#x2295;' '' 224
+'&#x2296;' '' 225
+'&#x2297;' '' 226
+'&#x2a38;' '' 227
+'&#x2299;' '' 228
+'&#x229a;' '' 229
+'&#x229b;' '' 230
+'&#x229b;' '' 231
+'' '1' 232
+'' '1' 233
+'' '1' 234
+'&#x29ba;' '' 235
+'&#x25cb;' '' 236
+'&#x2298;' '' 237
+'&#x2349;' '' 238
+'&#x1f7d5;' '' 239
+'&#x229e;' '' 240
+'&#x229f;' '' 241
+'&#x22a0;' '' 242
+'' '1' 243
+'&#x22a1;' '' 244
+'&#x29c7;' '' 245
+'&#x29c6;' '' 246
+'&#x29c6;' '' 247
+'' '1' 248
+'' '1' 249
+'' '1' 250
+'' '1' 251
+'&#x25a1;' '' 252
+'&#x29c4;' '' 253
+'&#x29c5;' '' 254
+'' '' 255
+mathx 0 255
+
diff --git a/Master/texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf b/Master/texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf
index 001947877d6..7d205147cde 100644
--- a/Master/texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf
+++ b/Master/texmf-dist/tex4ht/ht-fonts/unicode/misc/SkakNew.htf
@@ -1,5 +1,5 @@
SkakNew 32 121 %
-'' '' 32 % SkakNew.htf 2021-06-20-14:57
+'' '' 32 % SkakNew.htf 2023-07-28-13:50
'!' '' 33 % Copyright 2021 TeX Users Group
'&#x201D;' '' 34 % Released under LPPL 1.3c+.
'#' '' 35 % See tex4ht-cpright.tex for license text.
@@ -75,11 +75,11 @@ SkakNew 32 121 %
'-+' '' 105
'&#x003d;' '' 10
'&#x221e;' '' 107
-'&#9135;' '1' 108
-'&#8983;' '' 109
+'&#x9135;' '1' 108
+'&#xFF03;' '' 109
'=&#x221e;' '1' 110
'o' '1' 111
-'&#9817;' '' 112
+'&#x9817;' '' 112
'q' '1' 113
'r' '1' 114
's' '1' 115
@@ -87,7 +87,7 @@ SkakNew 32 121 %
'u' '1' 117
'v' '1' 118
'w' '1' 119
-'&#9587;' '' 120
-'&#9711;' '' 121
+'&#x9587;' '' 120
+'&#x9711;' '' 121
SkakNew 32 121