summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-05-18 20:05:40 +0000
committerKarl Berry <karl@freefriends.org>2022-05-18 20:05:40 +0000
commit56df62e7398bd4f305c2a6fdd299f7b94d9cc66d (patch)
tree71b8b5d9ec07dfecce9a0499aab4744bab59cf23
parent962a8106e245c2c413cead0a91a63f7d1bae4fd7 (diff)
\over{right,left}arrow, tex4ht r1134
git-svn-id: svn://tug.org/texlive/trunk@63332 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog6
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex66
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex10
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/mathml.4ht20
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht6
5 files changed, 89 insertions, 19 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index ea07fe881e5..4de6c1d8dc4 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,9 @@
+2022-05-18 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-mathml.tex (mathml.4ht): fixed support for \overrightarrow
+ and \overleftarrow.
+ https://github.com/michal-h21/make4ht/issues/76
+
2022-05-13 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-html4.tex (html4.4ht): added option "cut-fullname", to
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex
index b0ff2041f82..bbffa7db8fe 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-modern.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-fonts-modern.tex 769 2020-07-10 14:16:58Z michal_h21 $
+% $Id: tex4ht-fonts-modern.tex 1132 2022-05-09 08:32:38Z michal_h21 $
% Included from tex4ht-fonts-noncjk.tex, not run on its own.
%
% Copyright 2009-2020 TeX Users Group
@@ -2114,6 +2114,70 @@ htfcss: lmmib font_weight:bold;
\AddFont{lmsy}{alias/lm/lmsy}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\SubSection{ML Modern}
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+\<rm-mlm\><<<
+.lm-ec
+htfcss: rm-mlmbo font-style: oblique;
+htfcss: rm-mlmbx font-weight: bold;
+htfcss: rm-mlmbxi font-style:italic; font-weight: bold;
+htfcss: rm-mlmbxo font-style: oblique; font-weight: bold;
+htfcss: rm-mlmri font-style:italic;
+htfcss: rm-mlmro font-style: oblique;
+htfcss: rm-mlmss font-family: sans-serif;
+htfcss: rm-mlmssbo font-family: sans-serif; font-style: oblique; font-weight: bold;
+htfcss: rm-mlmssbx font-family: sans-serif; font-weight: bold;
+htfcss: rm-mlmssdc font-family: sans-serif;
+htfcss: rm-mlmssdo font-family: sans-serif; font-style: oblique;
+htfcss: rm-mlmsso font-family: sans-serif; font-style: oblique;
+htfcss: rm-mlmssq font-family: sans-serif;
+htfcss: rm-mlmssqbo font-family: sans-serif; font-style: oblique; font-weight: bold;
+htfcss: rm-mlmssqbx font-family: sans-serif; font-weight: bold;
+htfcss: rm-mlmssqo font-family: sans-serif; font-style: oblique;
+htfcss: rm-mlmcsc font-variant: small-caps;
+>>>
+\AddFont{rm-mlm}{alias/mlm/rm-mlm}
+
+\<rm-mlmvt\><<<
+.lm-ec
+htfcss: rm-mlmvtk font-family: monospace,monospace;
+htfcss: rm-mlmvtko font-style: oblique; font-family: monospace,monospace;
+htfcss: rm-mlmvtl font-weight: light; font-family: monospace,monospace;
+htfcss: rm-mlmvtlo font-weight: light; font-style: oblique; font-family: monospace,monospace;
+htfcss: rm-mlmvtt font-family: monospace,monospace;
+htfcss: rm-mlmvtto font-style: oblique; font-family: monospace,monospace;
+>>>
+\AddFont{rm-mlmvt}{alias/mlm/rm-mlmvt}
+
+
+\<mlmbsy\><<<
+.plbsy
+htfcss: mlmbsy font-weight:bold;
+>>>
+
+\AddFont{mlmbsy}{alias/mlm/mlmbsy}
+
+\<mlmex\><<<
+.cmex
+>>>
+
+
+\AddFont{mlmex}{alias/mlm/mlmex}
+
+\<mlmmi\><<<
+.cmmi
+htfcss: mlmmib font_weight:bold;
+>>>
+
+\AddFont{mlmmi}{alias/mlm/mlmmi}
+
+\<mlmsy\><<<
+.plbsy
+>>>
+
+\AddFont{mlmsy}{alias/mlm/mlmsy}
%%%%%%%%%%%%%
\SubSection{EC}
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex
index 14c4006b1ec..607a9d56258 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 1129 2022-05-05 10:45:51Z michal_h21 $$
+% $Id: tex4ht-mathml.tex 1134 2022-05-18 13:57:59Z michal_h21 $$
% compile 3 times: latex tex4ht-mathltx
% or xhlatex tex4ht-mathltx "html,3,sections+"
%
@@ -2248,14 +2248,14 @@ reduced.)
\<mathml plain,fontmath\><<<
\Configure{overrightarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overrightarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overrightarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D7;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2192;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
\Configure{overleftarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overleftarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overleftarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D6;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2190;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
>>>
diff --git a/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht b/Master/texmf-dist/tex/generic/tex4ht/mathml.4ht
index 531179b0742..27a76b95bfb 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-05-05-13:42), generated from tex4ht-mathml.tex
+% mathml.4ht (2022-05-18-13:01), 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-05-05-13:42}
+\immediate\write-1{version 2022-05-18-13:01}
\exit:ifnot{Preamble,%
accents,%
@@ -1553,14 +1553,14 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
}
\Configure{overrightarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overrightarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overrightarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D7;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2192;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
\Configure{overleftarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overleftarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overleftarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D6;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2190;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
\Configure{big}
{}{}
@@ -2547,14 +2547,14 @@ accent="true">&\#x0332;</\a:mathml mo></\a:mathml munder>}%
}
\Configure{overrightarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overrightarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overrightarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D7;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2192;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
\Configure{overleftarrow}
- {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover class="overleftarrow">%
+ {\leavevmode\hbox\bgroup$\Tg<\a:mathml mover accent="true" class="overleftarrow">%
\Tg<\a:mathml mrow\Hnewline>\:gobble}
- {\Tg</\a:mathml mrow>\mathop{\HCode{&\#x20D6;}}%
+ {\Tg</\a:mathml mrow>\HCode{<\a:mathml mo>&\#x2190;</\a:mathml mo>}%
\Tg</\a:mathml mover>$\egroup}
\Configure{big}
{}{}
diff --git a/Master/texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht b/Master/texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht
index aac2f48868f..85061937345 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/xrhyper-hooks.4ht
@@ -1,5 +1,5 @@
-% xrhyper-hooks.4ht (2022-05-02-13:15), generated from tex4ht-4ht.tex
-% Copyright 2020 TeX Users Group
+% xrhyper-hooks.4ht (2022-05-09-13:33), generated from tex4ht-4ht.tex
+% Copyright 2020-2022 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-05-02-13:15}
+\immediate\write-1{version 2022-05-09-13:33}
\ExplSyntaxOn
% detect )F[number]F- using l3regex