summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-07-25 20:47:07 +0000
committerKarl Berry <karl@freefriends.org>2022-07-25 20:47:07 +0000
commitde3064c12cb86e396c3315db65c28f3d89f925bb (patch)
treed11b5f5da915cf08138cd81433957ec935b33228 /Master/texmf-dist/source
parent733cfe79b2ceaac5698fb02f398fe4cc13b89d5a (diff)
do not redefine \MakeUppercase,\MakeLowercase in biblatex
git-svn-id: svn://tug.org/texlive/trunk@63978 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source')
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog5
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex45
2 files changed, 31 insertions, 19 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index 7dc4ce3b8fd..7c41010bb14 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,8 @@
+2022-07-25 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (biblatex.4ht): don't redefine \MakeUppercase and
+ \MakeLowercase in BibLaTeX.
+
2022-07-24 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-4ht.tex (babel.4ht): don't redefine \ref in Babel.
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
index 355df13c57e..dbd0b1c60d6 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-4ht.tex 1178 2022-07-24 17:04:30Z michal_h21 $
+% $Id: tex4ht-4ht.tex 1179 2022-07-25 20:40:57Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2022 TeX Users Group
@@ -2215,6 +2215,31 @@ We put the hook ourselves thanks to Configure{ifthenelse}.
% Biblatex 3.0
%
% Hacks for biblatex
+
+% I don't really understand this, but language processing is broken by default
+% with biblatex. It loads language file, but it executes code which should be
+% executed only in the case if the language file fails, it displays an error message
+% and language handling doesn't work. When we execute following code, the language
+% files are loaded before checking of the success and it seems to work.
+
+\AtBeginDocument{%
+\@ifpackageloaded{babel}
+ {% This is required for languages which are never explicitly selected
+ % It seems this code was executed also with Polyglossia, where it caused compilation error
+ \@ifpackageloaded{polyglossia}{}{%
+ \def\do#1{\blx@lbxinput{#1}{}{}}%
+ \ifx\@empty\bbl@loaded\else%
+ \expandafter\docsvlist\expandafter{\bbl@loaded}%
+ \fi}}{}%
+}
+\fi % end of version boolean
+>>>
+
+2022/07/25: It seems that we don't need to redefine MakeUppercase and MakeLowercase, BiBLaTeX works without these
+redefinitions, and on the contrary, we get compilation error with these, as they were changed in the LaTeX kernel.
+So I think it is best to remove them.
+
+\<biblatex dont use\><<<
% MakeUppercase is redefined by tex4ht, biblatex tries to redefine it as well, but it relies on original
% LaTeX version:
\DeclareRobustCommand{\MakeUppercase}[1]{{%
@@ -2237,24 +2262,6 @@ We put the hook ourselves thanks to Configure{ifthenelse}.
\blx@hook@lc\protected@edef\reserved@a{\lowercase{#1}}%
\reserved@a
}}
-
-% I don't really understand this, but language processing is broken by default
-% with biblatex. It loads language file, but it executes code which should be
-% executed only in the case if the language file fails, it displays an error message
-% and language handling doesn't work. When we execute following code, the language
-% files are loaded before checking of the success and it seems to work.
-
-\AtBeginDocument{%
-\@ifpackageloaded{babel}
- {% This is required for languages which are never explicitly selected
- % It seems this code was executed also with Polyglossia, where it caused compilation error
- \@ifpackageloaded{polyglossia}{}{%
- \def\do#1{\blx@lbxinput{#1}{}{}}%
- \ifx\@empty\bbl@loaded\else%
- \expandafter\docsvlist\expandafter{\bbl@loaded}%
- \fi}}{}%
-}
-\fi % end of version boolean
>>>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%