summaryrefslogtreecommitdiff
path: root/support/TeX4ht
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-07-12 03:01:20 +0000
committerNorbert Preining <norbert@preining.info>2023-07-12 03:01:20 +0000
commit0a2934080da36226eca1cdccfd08d76f67dca95a (patch)
tree05d9e44daaf23767fc0f7f9b235bed0ee9c98ee4 /support/TeX4ht
parent24bb3e3ee10fe79c39e9202be49c62c4d888f4ae (diff)
CTAN sync 202307120301
Diffstat (limited to 'support/TeX4ht')
-rw-r--r--support/TeX4ht/source/ChangeLog5
-rw-r--r--support/TeX4ht/source/tex4ht-mathml.tex10
2 files changed, 12 insertions, 3 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog
index 1f5eb11e94..4dcd714589 100644
--- a/support/TeX4ht/source/ChangeLog
+++ b/support/TeX4ht/source/ChangeLog
@@ -1,3 +1,8 @@
+2023-07-11 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-mathml.tex (mathml.4ht): fixed \tilde accent in MathML.
+ https://github.com/michal-h21/make4ht/issues/125
+
2023-07-06 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-fonts-noncjk.tex (
diff --git a/support/TeX4ht/source/tex4ht-mathml.tex b/support/TeX4ht/source/tex4ht-mathml.tex
index a85b327f21..eb549a1429 100644
--- a/support/TeX4ht/source/tex4ht-mathml.tex
+++ b/support/TeX4ht/source/tex4ht-mathml.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-mathml.tex 1342 2023-06-16 21:46:57Z karl $$
+% $Id: tex4ht-mathml.tex 1347 2023-07-11 20:48:44Z michal_h21 $$
% compile 3 times: latex tex4ht-mathltx
% or xhlatex tex4ht-mathltx "html,3,sections+"
%
@@ -783,11 +783,15 @@ We reserve code 254 (and 255) for unknown symbols.
\:CheckOption{new-accents} \if:Option \else
\Configure{accent}\widetilde\widetilde{{}{}}
{}
- {\HCode{<\a:mathml mover\Hnewline accent="false"><\a:mathml mrow\Hnewline>}#2\HCode{</\a:mathml mrow>}%
+ {\HCode{<\a:mathml mover\Hnewline accent="true"><\a:mathml mrow\Hnewline>}#2\HCode{</\a:mathml mrow>}%
\:widetilde:over \HCode{</\a:mathml mover>}}
+ \Configure{accent}\tilde\tilde{{}{}}
+ {}
+ {\HCode{<\a:mathml mover\Hnewline accent="true"><\a:mathml mrow\Hnewline>}#2\HCode{</\a:mathml mrow>}%
+ \:tilde:over \HCode{</\a:mathml mover>}}
\Configure{accent}\widehat\widehat{{}{}}
{}
- {\HCode{<\a:mathml mover\Hnewline accent="false"><\a:mathml mrow\Hnewline>}#2\HCode{</\a:mathml mrow>}%
+ {\HCode{<\a:mathml mover\Hnewline accent="true"><\a:mathml mrow\Hnewline>}#2\HCode{</\a:mathml mrow>}%
\:widehat:over \HCode{</\a:mathml mover>}}
\fi
>>>