summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/generic
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-07-11 20:50:38 +0000
committerKarl Berry <karl@freefriends.org>2023-07-11 20:50:38 +0000
commit8c1b11f78e29bcf27a4efabe59eefa3854a7e438 (patch)
tree57e756faaa5e0a1a217513dd5650e9824746a1a8 /Master/texmf-dist/source/generic
parent41a8e9dc8677a454dff5fce4c9553d85aecf0147 (diff)
\tilde accent in mathml, tex4ht r1347
git-svn-id: svn://tug.org/texlive/trunk@67610 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic')
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog5
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex10
2 files changed, 12 insertions, 3 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index 1f5eb11e941..4dcd7145892 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/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/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex
index a85b327f216..eb549a14294 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 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
>>>