summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-03-10 22:37:21 +0000
committerKarl Berry <karl@freefriends.org>2023-03-10 22:37:21 +0000
commit58e636d68c3af83871a132dee242551076374ce4 (patch)
tree3179583a0ae2f72895cf5455c15906cde8bd5d3c
parent79ab7f3c70ece804bd6af516a62d306be4d696db (diff)
cleveref/xr clash, tex4ht r1305 (branch)
git-svn-id: svn://tug.org/texlive/branches/branch2022.final@66531 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog7
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex18
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/cleveref.4ht7
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/xr-hyper.4ht14
-rw-r--r--Master/texmf-dist/tex/generic/tex4ht/xr.4ht14
5 files changed, 42 insertions, 18 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index f172361dba2..474e3c98d62 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,10 @@
+2023-03-10 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-4ht.tex (xr.4ht, xr-hyper.4ht, cleveref.4ht): fixed clash
+ between Cleveref and Xr.
+ https://github.com/michal-h21/make4ht/issues/113
+ https://tex.stackexchange.com/q/678730/2891
+
2023-03-07 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-4ht.tex (physics.4ht): fixed MathML issues with the Physics
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-4ht.tex
index 4d36f3a4723..ffc1469088a 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 1304 2023-03-07 12:50:09Z michal_h21 $
+% $Id: tex4ht-4ht.tex 1305 2023-03-10 16:01:24Z michal_h21 $
% tex tex4ht-4ht or ht tex tex4ht-4ht
%
% Copyright 2009-2023 TeX Users Group
@@ -3631,7 +3631,7 @@ definitions.
\<cleveref.4ht\><<<
% cleveref.4ht (|version), generated from |jobname.tex
-% Copyright 2018-2022 TeX Users Group
+% Copyright 2018-2023 TeX Users Group
|<TeX4ht license text|>
|<cleveref refstepcounter|>
@@ -3692,6 +3692,7 @@ Support for links from the \Verb|\cref| command.
\fi
\def\:tempa#1#2{\bgroup%
\def\rEfLiNK##1##2{\Link{##1}{}}%
+ \def\XRrEfLiNK[##1]##2##3{\Link[##1]{##2}{}}% handle links from Xr and Xr-hyper
\expandafter\expandafter\expandafter\@firstoffive\csname r@#2\endcsname{}{}{}{}{}%
\cref@getlabel{#2}{\@templabel}%
#1{\@templabel}{}{}%
@@ -3845,7 +3846,7 @@ before \''\begin{document}'.
\<xr.4ht\><<<
% xr.4ht (|version), generated from |jobname.tex
-% Copyright |CopyYear.1997. Eitan M. Gurari
+% Copyright 1997-2023 TeX Users Group
|<TeX4ht copywrite|>
|<fix xr|>
|<fix xr-nonhyper|>
@@ -3933,11 +3934,17 @@ For xref file
\`'-'. The if acts on \`')F1F-' to get the file name. Where the \`'x'
got into the picture? Did \''\aXrefFile' introduced it? where?
+We must also test for references with the @cref suffix - these are automatically
+created by Cleveref and contain meta info about reference types.
+
\<xr newlabel\><<<
-\expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}%
+\regex_match:nnTF{@cref}{#2}% we must handle cleveref meta references
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{#3}}%
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}}%
>>>
\<fix xr\><<<
+\ExplSyntaxOn
\long\def\XR@test#1#2#3#4\XR@{%
\ifx#1\newlabel
|<xr newlabel|>%
@@ -3946,6 +3953,7 @@ got into the picture? Did \''\aXrefFile' introduced it? where?
\fi\fi
\ifeof\@inputcheck\expandafter\XR@aux
\else\expandafter\XR@read\fi}
+\ExplSyntaxOff
>>>
%%%%%%%%%%%%%%%%%%%%%
@@ -3954,7 +3962,7 @@ got into the picture? Did \''\aXrefFile' introduced it? where?
\<xr-hyper.4ht\><<<
% xr-hyper.4ht (|version), generated from |jobname.tex
-% Copyright |CopyYear.2003. Eitan M. Gurari
+% Copyright 2003-2023 TeX Users Group
|<TeX4ht copywrite|>
|<fix xr|>
|<fix xr-hyper|>
diff --git a/Master/texmf-dist/tex/generic/tex4ht/cleveref.4ht b/Master/texmf-dist/tex/generic/tex4ht/cleveref.4ht
index a54f2e5d57e..1ffa05dcdf1 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/cleveref.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/cleveref.4ht
@@ -1,5 +1,5 @@
-% cleveref.4ht (2022-11-04-13:31), generated from tex4ht-4ht.tex
-% Copyright 2018-2022 TeX Users Group
+% cleveref.4ht (2023-03-10-14:19), generated from tex4ht-4ht.tex
+% Copyright 2018-2023 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-11-04-13:31}
+\immediate\write-1{version 2023-03-10-14:19}
@@ -62,6 +62,7 @@
\fi
\def\:tempa#1#2{\bgroup%
\def\rEfLiNK##1##2{\Link{##1}{}}%
+ \def\XRrEfLiNK[##1]##2##3{\Link[##1]{##2}{}}% handle links from Xr and Xr-hyper
\expandafter\expandafter\expandafter\@firstoffive\csname r@#2\endcsname{}{}{}{}{}%
\cref@getlabel{#2}{\@templabel}%
#1{\@templabel}{}{}%
diff --git a/Master/texmf-dist/tex/generic/tex4ht/xr-hyper.4ht b/Master/texmf-dist/tex/generic/tex4ht/xr-hyper.4ht
index bfa0d0e5ce9..b10470531a9 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/xr-hyper.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/xr-hyper.4ht
@@ -1,6 +1,6 @@
-% xr-hyper.4ht (2022-05-23-13:42), generated from tex4ht-4ht.tex
-% Copyright 2003-2009 Eitan M. Gurari
-% Copyright 2009-2022 TeX Users Group
+% xr-hyper.4ht (2023-03-10-14:19), generated from tex4ht-4ht.tex
+% Copyright 2003-2023 TeX Users Group
+% Copyright 2009-2023 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-05-23-13:42}
+\immediate\write-1{version 2023-03-10-14:19}
\let\XR:loop=\XR@loop
\def\XR@loop#1{%
@@ -42,15 +42,19 @@
\catcode`\:=12
\XR:loop{#1}%
}
+\ExplSyntaxOn
\long\def\XR@test#1#2#3#4\XR@{%
\ifx#1\newlabel
- \expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}%
+ \regex_match:nnTF{@cref}{#2}% we must handle cleveref meta references
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{#3}}%
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}}%
%
\else\ifx#1\@input
\edef\XR@list{\XR@list#2\relax}%
\fi\fi
\ifeof\@inputcheck\expandafter\XR@aux
\else\expandafter\XR@read\fi}
+\ExplSyntaxOff
\def\XRrEfLiNK[#1]#2#3{%
\filename@parse{#1}% Get basename of the linked html file,
diff --git a/Master/texmf-dist/tex/generic/tex4ht/xr.4ht b/Master/texmf-dist/tex/generic/tex4ht/xr.4ht
index 66e4fe0d122..e317a1d7698 100644
--- a/Master/texmf-dist/tex/generic/tex4ht/xr.4ht
+++ b/Master/texmf-dist/tex/generic/tex4ht/xr.4ht
@@ -1,6 +1,6 @@
-% xr.4ht (2022-04-26-14:00), generated from tex4ht-4ht.tex
-% Copyright 1997-2009 Eitan M. Gurari
-% Copyright 2009-2022 TeX Users Group
+% xr.4ht (2023-03-10-14:19), generated from tex4ht-4ht.tex
+% Copyright 1997-2023 TeX Users Group
+% Copyright 2009-2023 TeX Users Group
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either
@@ -17,7 +17,7 @@
%
% If you modify this program, changing the
% version identification would be appreciated.
-\immediate\write-1{version 2022-04-26-14:00}
+\immediate\write-1{version 2023-03-10-14:19}
\let\XR:loop=\XR@loop
\def\XR@loop#1{%
@@ -42,15 +42,19 @@
\catcode`\:=12
\XR:loop{#1}%
}
+\ExplSyntaxOn
\long\def\XR@test#1#2#3#4\XR@{%
\ifx#1\newlabel
- \expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}%
+ \regex_match:nnTF{@cref}{#2}% we must handle cleveref meta references
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{#3}}%
+{\expandafter\xdef\csname r@\XR@prefix#2\endcsname{\XR:rEfLiNK #3}}%
%
\else\ifx#1\@input
\edef\XR@list{\XR@list#2\relax}%
\fi\fi
\ifeof\@inputcheck\expandafter\XR@aux
\else\expandafter\XR@read\fi}
+\ExplSyntaxOff
\def\XRrEfLiNK[#1]#2#3{%
\filename@parse{#1}% Get basename of the linked html file,