diff options
author | Norbert Preining <norbert@preining.info> | 2024-11-30 03:02:56 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2024-11-30 03:02:56 +0000 |
commit | 73f974c44a227a9988238fa4a325dfb7bba6e3f2 (patch) | |
tree | 0312dbebfff56f7c959c9ecec047bc0d65c4daf8 /support | |
parent | 67f51674b487fad8e2744bd0ce94fd5250baa7ca (diff) |
CTAN sync 202411300302
Diffstat (limited to 'support')
-rw-r--r-- | support/TeX4ht/source/ChangeLog | 5 | ||||
-rw-r--r-- | support/TeX4ht/source/mktex4ht-cnf.tex | 3 | ||||
-rw-r--r-- | support/TeX4ht/source/tex4ht-4ht.tex | 33 |
3 files changed, 39 insertions, 2 deletions
diff --git a/support/TeX4ht/source/ChangeLog b/support/TeX4ht/source/ChangeLog index 27392b815c..a6af10a1be 100644 --- a/support/TeX4ht/source/ChangeLog +++ b/support/TeX4ht/source/ChangeLog @@ -1,3 +1,8 @@ +2024-11-28 Michal Hoftich <michal.h21@gmail.com> + + * tex4ht-4ht.tex (metalogo.4ht): fixed rendering of \XeTeX and + \XeLaTeX with the Metalogo package. + 2024-11-27 Michal Hoftich <michal.h21@gmail.com> * tex4ht-4ht.tex (fvextra.4ht): disable redefinition of Fancyvrb's diff --git a/support/TeX4ht/source/mktex4ht-cnf.tex b/support/TeX4ht/source/mktex4ht-cnf.tex index ae235a28ec..a95b9e2e9a 100644 --- a/support/TeX4ht/source/mktex4ht-cnf.tex +++ b/support/TeX4ht/source/mktex4ht-cnf.tex @@ -1,4 +1,4 @@ -% $Id: mktex4ht-cnf.tex 1604 2024-11-27 11:56:23Z michal_h21 $ +% $Id: mktex4ht-cnf.tex 1605 2024-11-28 14:57:28Z michal_h21 $ % Manually-maintained file, listing *.4ht files created by tex4ht-4ht.tex. % Read by tex4ht-cond4ht. % @@ -43,6 +43,7 @@ \AddFile{9}{hypcap} \AddFile{9}{draftwatermark} \AddFile{9}{draftwatermark-hooks} +\AddFile{9}{metalogo} \AddFile{8}{fleqn} \AddFile{7}{supertabular} \AddFile{7}{array} diff --git a/support/TeX4ht/source/tex4ht-4ht.tex b/support/TeX4ht/source/tex4ht-4ht.tex index 67d143647a..6abad35043 100644 --- a/support/TeX4ht/source/tex4ht-4ht.tex +++ b/support/TeX4ht/source/tex4ht-4ht.tex @@ -1,4 +1,4 @@ -% $Id: tex4ht-4ht.tex 1604 2024-11-27 11:56:23Z michal_h21 $ +% $Id: tex4ht-4ht.tex 1605 2024-11-28 14:57:28Z michal_h21 $ % tex tex4ht-4ht or ht tex tex4ht-4ht % % Copyright 2009-2024 TeX Users Group @@ -6710,6 +6710,37 @@ slow compilation. } >>> +%%%%%%%%%%%%%%%%%%%%%%%% +\Section{metalogo} +%%%%%%%%%%%%%%%%%%%%%%%% + +\<metalogo.4ht\><<< +% metalogo.4ht (|version), generated from |jobname.tex +% Copyright 2024 TeX Users Group +|<TeX4ht license text|> + +|<metalogo xetex|> + +\Hinput{metalogo} +\endinput +>>> \AddFile{9}{metalogo} + +The metalogo package provides alternative formatting for various variants +of the \''\TeX' command. They mostly work out of the box, but in the +case of XeTeX and XeLaTeX, they produce rubbish. So we will redefine them. + +\<metalogo xetex\><<< +\NewConfigure{XeLaTeX}{1} +\Configure{XeLaTeX}{Xe\LaTeX} +\def\:tempa{\a:XeLaTeX} +\HLet\XeLaTeX\:tempa + +\NewConfigure{XeTeX}{1} +\Configure{XeTeX}{Xe\TeX} +\def\:tempa{\a:XeTeX} +\HLet\XeTeX\:tempa +>>> + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \Chapter{Miscellaneous Environments} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |