diff options
author | Karl Berry <karl@freefriends.org> | 2023-09-07 22:15:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-09-07 22:15:40 +0000 |
commit | 808a2a22b612d0dfc8de38d0a69611d03187f6de (patch) | |
tree | bb680e0b543f61531bd7ac78f0de52b53ecc126e /Master/texmf-dist/source | |
parent | 0cedb239a501561b2f723ae02754b3cc9ff6a15a (diff) |
dcases* inline math, tex4ht r1366
git-svn-id: svn://tug.org/texlive/trunk@68203 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r-- | Master/texmf-dist/source/generic/tex4ht/ChangeLog | 6 | ||||
-rw-r--r-- | Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog index 0a560ca3b67..32140d2938b 100644 --- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog +++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog @@ -1,3 +1,9 @@ +2023-09-07 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-mathml.tex (mathml.4ht): fixed handling of inline math + inside the dcases* environment. + https://github.com/michal-h21/make4ht/issues/135 + 2023-09-04 Michal Hoftich <michal.h21@gmail.com> * tex4ht-mathml.tex (mathml.4ht): fixed spacing in \limsup, diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-mathml.tex index a8cc0ec955f..869396ddec0 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 1365 2023-09-04 14:49:39Z michal_h21 $$ +% $Id: tex4ht-mathml.tex 1366 2023-09-07 10:32:15Z michal_h21 $$ % compile 3 times: latex tex4ht-mathltx % or xhlatex tex4ht-mathltx "html,3,sections+" % @@ -2578,6 +2578,10 @@ The following CSS caused too large whitespace around functions \ifnum\HCol=2 \PauseMathClass \HCode{<\a:mathml mtext>}% + % the content of this environment is displayed as text, we must switch back to the normal math processing + % in inline math + \Configure{$}{\EndPauseMathClass\HCode{</\a:mathml mtext>}}{\PauseMathClass\HCode{<\a:mathml mtext>}}{}% + \Configure{()}{\HCode{</\a:mathml mtext>}\EndPauseMathClass$}{$\PauseMathClass\HCode{<\a:mathml mtext>}}{}% \fi } {\ifnum\HCol=2 |