summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-04-26 22:00:14 +0000
committerKarl Berry <karl@freefriends.org>2022-04-26 22:00:14 +0000
commit008d30cf1d5af7a4a3e35458a39ad79bd19eec55 (patch)
tree338565ad2f6e27c85faec7142f0fcc4d4638677e /Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
parent39c08dab84a8de6742f3432f0cc2cdf8aecbc223 (diff)
xr subdirs r1118; tex4ht ulem fixes, tex4ht r1119
git-svn-id: svn://tug.org/texlive/trunk@63150 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex')
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex52
1 files changed, 39 insertions, 13 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
index 95b77afb6b4..d9d3ae88ada 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-html4.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-html4.tex 1113 2022-04-17 10:39:05Z michal_h21 $
+% $Id: tex4ht-html4.tex 1119 2022-04-26 15:53:45Z michal_h21 $
% Compile 4 times: latex tex4ht-html4
% Copy html4.4ht into the work directory before all but the last compilation.
%
@@ -22054,22 +22054,48 @@ gets something wrong there.
\<configure html4 ulem\><<<
\Configure{uline}
- {\HCode{<span class="uline">}} {\HCode{</span>}}
-\Css{.uline{ text-decoration:underline; }}
+ {\HCode{<span class="uline">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Configure{uline-math}
+ {\HCode{<span class="uline">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Css{.uline,.uline-math{ text-decoration:underline; }}
\Configure{uuline}
- {\HCode{<span class="uuline">}} {\HCode{</span>}}
-\Css{.uuline{ text-decoration:underline; }}
+ {\HCode{<span class="uuline">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Configure{uuline-math}
+ {\HCode{<span class="uuline">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Css{.uuline,.uuline-math{ text-decoration:underline double; }}
\Configure{sout}
- {\HCode{<span class="sout">}} {\HCode{</span>}}
-\Css{span.sout {text-decoration: line-through }}
+ {\HCode{<span class="sout">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Configure{sout-math}
+ {\HCode{<span class="sout">}\NoFonts} {\EndNoFonts\HCode{</span>}}
+\Css{span.sout, .sout-math {text-decoration: line-through }}
\Configure{xout}
- {\HCode{<span class="xout"><span class="underline">}}
- {\HCode{</span></span>}}
-\Css{span.xout {text-decoration: line-through }}
+ {\HCode{<span class="xout">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Configure{xout-math}
+ {\HCode{<span class="xout">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Css{span.xout, .xout-math {text-decoration: line-through underline }}
\Configure{uwave}
- {\HCode{<span class="uwave">}}
- {\HCode{</span>}}
-\Css{span.uwave {text-decoration:underline }}
+ {\HCode{<span class="uwave">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Configure{uwave-math}
+ {\HCode{<span class="uwave">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Css{span.uwave, .uwave-math {text-decoration:underline wavy; }}
+\Configure{dashuline}
+ {\HCode{<span class="dashuline">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Configure{dashuline-math}
+ {\HCode{<span class="dashuline">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Css{span.dashuline, .dashuline-math {text-decoration:underline dashed;}}
+\Configure{dotuline}
+ {\HCode{<span class="dotuline">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Configure{dotuline-math}
+ {\HCode{<span class="dotuline">}\NoFonts}
+ {\EndNoFonts\HCode{</span>}}
+\Css{span.dotuline, .dotuline-math {text-decoration:underline dotted;}}
>>>