summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2022-10-28 03:01:22 +0000
committerNorbert Preining <norbert@preining.info>2022-10-28 03:01:22 +0000
commit577cb5a42c6f06b209011b90703e7809ea47d43f (patch)
tree7244eb3e1cbf04e31d65467fcf27e05fdfa4c2f9 /support
parent876d640726265ada7e067f22dda368dd49ed9ad1 (diff)
CTAN sync 202210280301
Diffstat (limited to 'support')
-rw-r--r--support/TeX4ht/source/ChangeLog15
-rw-r--r--support/TeX4ht/source/tex4ht-4ht.tex12
-rw-r--r--support/TeX4ht/source/tex4ht-html4.tex4
-rw-r--r--support/TeX4ht/source/tex4ht-mathml.tex8
4 files changed, 29 insertions, 10 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog
index dddf63f672..2bc7ae0d33 100644
--- a/support/TeX4ht/source/ChangeLog
+++ b/support/TeX4ht/source/ChangeLog
@@ -1,3 +1,18 @@
+2022-10-27 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (cleveref.4ht): removed spurious spaces produced by
+ non-commented end lines.
+ https://github.com/michal-h21/make4ht/issues/89
+
+ * tex4ht-html4.tex (html4.4ht),
+ * tex4ht-mathml.tex (mathml.4ht): fixed wrong horizontal lines in
+ tables.
+ https://github.com/michal-h21/make4ht/issues/87
+
+ * tex4ht-html4.tex (html4.4ht): remove extra vertical lines after
+ last \hline in a table.
+ https://github.com/michal-h21/make4ht/issues/88
+
2022-10-26 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-4ht.tex (subfiles.4ht): fixed handling of environments
diff --git a/support/TeX4ht/source/tex4ht-4ht.tex b/support/TeX4ht/source/tex4ht-4ht.tex
index d7c9840d4a..ca0a0fb863 100644
--- a/support/TeX4ht/source/tex4ht-4ht.tex
+++ b/support/TeX4ht/source/tex4ht-4ht.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-4ht.tex 1224 2022-10-26 14:03:21Z michal_h21 $
+% $Id: tex4ht-4ht.tex 1227 2022-10-27 15:02:31Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2022 TeX Users Group
@@ -3650,7 +3650,7 @@ This is basic support for the cleveref package.
{\def\@tempa{\csname cref@#1@alias\endcsname}}%
\protected@xdef\cref@currentlabel{%
[\@tempa][\arabic{#1}][\cref@result]%
- \csname p@#1\endcsname\csname the#1\endcsname}
+ \csname p@#1\endcsname\csname the#1\endcsname}%
\cref:currentlabel{#1}%
}%
\def\refstepcounter@optarg[#1]#2{%
@@ -3661,7 +3661,7 @@ This is basic support for the cleveref package.
{\def\@tempa{\csname cref@#1@alias\endcsname}}%
\protected@xdef\cref@currentlabel{%
[\@tempa][\arabic{#2}][\cref@result]%
- \csname p@#2\endcsname\csname the#2\endcsname}
+ \csname p@#2\endcsname\csname the#2\endcsname}%
\cref:currentlabel{#2}%
}%
>>>
@@ -3671,7 +3671,7 @@ Support for links from the \Verb|\cref| command.
\<cleveref links\><<<
\ifdefined\@firstoffive\else%
- \def\@firstoffive#1#2#3#4#5{#1}
+ \def\@firstoffive#1#2#3#4#5{#1}%
\fi
\def\:tempa#1#2{\bgroup%
\def\rEfLiNK##1##2{\Link{##1}{}}%
@@ -3694,11 +3694,11 @@ Fixes for the amsthm cleveref redefinitions.
\def\:tempb[#1]#2#3#4{%
% call original amsthm theorem definition, but
% disable \:thm in order to prevent infinite loop
- \let\:thm\:gobble
+ \let\:thm\:gobble%
\cref@thmnoarg{#2}%
\o:cref@thmoptarg:[#1]{#2}{#3}{#4}
}%
- \HLet\cref@thmoptarg\:tempb
+ \HLet\cref@thmoptarg\:tempb%
}{}%
>>>
diff --git a/support/TeX4ht/source/tex4ht-html4.tex b/support/TeX4ht/source/tex4ht-html4.tex
index 91b14dac02..b9119693d3 100644
--- a/support/TeX4ht/source/tex4ht-html4.tex
+++ b/support/TeX4ht/source/tex4ht-html4.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 1223 2022-10-25 20:53:26Z michal_h21 $
+% $Id: tex4ht-html4.tex 1226 2022-10-27 14:19:24Z michal_h21 $
% Compile 4 times: latex tex4ht-html4
% Copy html4.4ht into the work directory before all but the last compilation.
%
@@ -7717,6 +7717,8 @@ Currently, we either have empty \verb'\VBorder', or one defined to
\Css{.hline td, .cline td{ padding: 0; }}
\Css{.hline hr, .cline hr{border:none;border-top:1px solid black;}}
\Css{.hline {border-top: 1px solid black;}}
+\Css{.hline + .vspace:last-child{display:none;}}
+\Css{.hline:first-child{border-bottom:1px solid black;border-top:none;}}
>>>
When \verb'\putVBorder' is call in \verb'\VBorder'
diff --git a/support/TeX4ht/source/tex4ht-mathml.tex b/support/TeX4ht/source/tex4ht-mathml.tex
index 5d5e11e944..2118e986e3 100644
--- a/support/TeX4ht/source/tex4ht-mathml.tex
+++ b/support/TeX4ht/source/tex4ht-mathml.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-mathml.tex 1221 2022-10-25 11:32:47Z michal_h21 $$
+% $Id: tex4ht-mathml.tex 1226 2022-10-27 14:19:24Z michal_h21 $$
% compile 3 times: latex tex4ht-mathltx
% or xhlatex tex4ht-mathltx "html,3,sections+"
%
@@ -1292,13 +1292,15 @@ rows produced by hline.
\<configure html-mml latex\><<<
\Css{.array-hline,.array-cline{
- border-bottom:black solid 1px;
+ border-top: 1px solid black;
height:0px;
}}
-\Css{.hline-mtd{
+\Css{.array-hline + .array-vspace:last-child{display:none;}}
+\Css{.hline-mtd, .array-hline td{
display:none
}}
\Css{.array-hline + .array-row:last-child{display:none;}}
+\Css{.array-hline:first-child{border-bottom:1px solid black;border-top:none;}}
>>>
\<td save EndP\><<<