diff --git a/base/changes.txt b/base/changes.txt index 95adae156..5f0a4f501 100644 --- a/base/changes.txt +++ b/base/changes.txt @@ -25,6 +25,17 @@ not part of the distribution. * lttagging.dtx: dummy for \tag_suspend:n and \tag_resume:n * lttagging.dtx: declare tagging sockets for floats and caption. + +2024-09-21 Ulrike Fischer + + * ltcounts.dtx (subsection{Environment Counter Macros}): + extend \@definecounter and \@addtoreset so that they define also \theH + * ltxref.dtx (subsection{Cross Referencing}): + Use sockets in \refstepcounter for target and tagging support. + * ltmeta.dtx: move patches and change of \MakeLinkTarget from latex-lab. + * lttagging.dtx: add tagging socket for targets. + + 2024-09-15 Joseph Wright * lttemplates-doc.tex, lttemplates-code.tex: New files diff --git a/base/doc/ltnews40.tex b/base/doc/ltnews40.tex index 1da57e17e..a1067731d 100644 --- a/base/doc/ltnews40.tex +++ b/base/doc/ltnews40.tex @@ -176,6 +176,8 @@ \section{Switch to T1 as default encoding in documents using \cs{DocumentMetadat \texttt{OT1} encoding in their document can do so with \verb+\usepackage[OT1]{fontenc}+. + + \section{News from the \enquote{\LaTeX{} Tagged PDF} project} The tagging of tabulars has been extended: it is now possible to tag @@ -300,6 +302,26 @@ \subsection{Improved error raised by empty hook} % \githubissue{1423} +\subsection{Provide counter representations for link targets} + +To create unique target names for links the package +\pkg{hyperref} uses a special counter representation +\verb+\theH+\meta{counter}. To ensure that this +counter representation exists, \pkg{hyperref} redefined the +commands \verb+\@definecounter+, \verb+\@addtoreset+ +and \verb+\refstepcounter+. This counter representation is also +needed for the Tagged PDF project and and so these augmented command definitions +have now been incorporated +into the kernel. +Thus from now on every \verb+\newcounter{+\meta{counter}\verb+}+ will not +only define \verb+\the+\meta{counter} but also \verb+\theH+\meta{counter}. + +\subsection{Extending \cs{refstepcounter}} + +The package \pkg{hyperref} redefines since many years \verb+\refstepcounter+ and +adds code that creates link targets. The kernel definition has now been extended +with socket interfaces that will allow \pkg{hyperref} to avoid the redefinitions. The new interfaces are also used by the Tagged PDF code that needs target names to resolve +references between structures. \section{Bug fixes} diff --git a/base/ltcounts.dtx b/base/ltcounts.dtx index 006486d23..9417769d7 100644 --- a/base/ltcounts.dtx +++ b/base/ltcounts.dtx @@ -33,7 +33,7 @@ %<*driver> % \fi \ProvidesFile{ltcounts.dtx} - [2021/11/08 v1.1n LaTeX Kernel (Counters)] + [2024/09/20 v1.1o LaTeX Kernel (Counters)] % \iffalse \documentclass{ltxdoc} \GetFileInfo{ltcounts.dtx} @@ -171,13 +171,15 @@ % % |\refstepcounter|\marg{foo}\\ % Same as |\stepcounter|, but it also defines -% |\@currentreference| so that a subsequent +% |\@currentlabel|, |\@currentHref| and |\@currentcounter| +% and so that a subsequent % |\label|\marg{bar} command causes |\ref|\marg{bar} to % generate the current value of counter \meta{foo}. % % |\@definecounter|\marg{foo}\\ % Initializes counter \marg{foo} (with empty reset list), defines -% |\p@foo| and |\thefoo| to be null. Also adds \meta{foo} +% |\p@foo| and |\thefoo| to be null and |\theHfoo| to be +% |\number\value{foo}|. Also adds \meta{foo} % to |\cl@@ckpt| -- % the reset list of a dummy counter |@ckpt| used for taking % checkpoints for the |\include| system. @@ -306,13 +308,18 @@ % \changes{v1.1b}{1995/05/20}{Streamlined code} % \changes{v1.1c}{1995/05/20}{And do it right} % \changes{v1.1n}{2023/11/07}{Do not change \cs{the...} if already defined (gh/823)} -% +% \changes{v1.1o}{2024/09/20}{define theHfoo (used for internal links)} % \begin{macrocode} +% +%\IncludeInRelease{2024/11/01}{\@definecounter} +% {provide theHfoo commands}% +%<*2ekernel|latexrelease> \def\@definecounter#1{\expandafter\newcount\csname c@#1\endcsname \setcounter{#1}\z@ \global\expandafter\let\csname cl@#1\endcsname\@empty \@addtoreset{#1}{@ckpt}% \global\expandafter\let\csname p@#1\endcsname\@empty + \expandafter\gdef\csname theH#1\endcsname{\the\value{#1}}% % \end{macrocode} % If \cs{the\#1} is undefined or \cs{relax} we define it with the % standard definition for counters, otherwise we warn. This will @@ -328,12 +335,51 @@ \@latex@warning{Command `\string\the#1' already defined -- not changed}% \fi} +%\EndIncludeInRelease +% +%\IncludeInRelease{0000/00/00}{\@definecounter} +% {provide theHfoo commands}%% +%\def\@definecounter#1{\expandafter\newcount\csname c@#1\endcsname +% \setcounter{#1}\z@ +% \global\expandafter\let\csname cl@#1\endcsname\@empty +% \@addtoreset{#1}{@ckpt}% +% \global\expandafter\let\csname p@#1\endcsname\@empty +% \expandafter +% \ifx\csname the#1\endcsname\relax +% \expandafter +% \gdef\csname the#1\expandafter\endcsname\expandafter +% {\expandafter\@arabic\csname c@#1\endcsname}% +% \else +% \@latex@warning{Command `\string\the#1' already +% defined -- not changed}% +% \fi} +%\EndIncludeInRelease +%<*2ekernel> % \end{macrocode} % \end{macro} % % \begin{macro}{\@addtoreset} +% \changes{v1.1o}{2024/09/20}{add the parent theHfoo if a counter is reset} +% If a counter is reset when a parent counter changes it no longer has an unique value +% across the document. As |\theH| should be unique +% this representation is changed to include also the +% representation of the parent. This is not 100\% guaranteed to work +% but has been used this way by hyperref for many years without causing problems. % \begin{macrocode} -\def\@addtoreset#1#2{\expandafter\@cons\csname cl@#2\endcsname {{#1}}} +% +%\IncludeInRelease{2024/11/01}{\@addtoreset} +% {provide theHfoo commands}% +%<*2ekernel|latexrelease> +\def\@addtoreset#1#2{\expandafter\@cons\csname cl@#2\endcsname {{#1}}% + \expandafter\gdef\csname theH#1\endcsname{\csname theH#2\endcsname.\the\value{#1}}% +} +%\EndIncludeInRelease +% +%\IncludeInRelease{0000/00/00}{\@addtoreset} +% {provide theHfoo commands}%% +%\def\@addtoreset#1#2{\expandafter\@cons\csname cl@#2\endcsname {{#1}}} +%\EndIncludeInRelease +%<*2ekernel> % \end{macrocode} % \end{macro} % @@ -423,7 +469,7 @@ }% } % \end{macrocode} -% +% % \begin{macrocode} \NewDocumentCommand \counterwithin {sO{\arabic}mm}{% \@ifbothcounters{#3}{#4}{% diff --git a/base/ltmeta.dtx b/base/ltmeta.dtx index cc3e62811..410f6459f 100644 --- a/base/ltmeta.dtx +++ b/base/ltmeta.dtx @@ -16,7 +16,7 @@ %<*driver> % \fi \ProvidesFile{ltmeta.dtx} - [2024/05/16 v1.0b LaTeX Kernel (Document Metadata)] + [2024/09/21 v1.0c LaTeX Kernel (Document Metadata)] % \iffalse % \documentclass{l3doc} @@ -152,11 +152,16 @@ % we provide also the new interface commands of the hyperref package % for the creation of targets. % \changes{v1.0b}{2022/05/17}{Default definition for targets added} +% \changes{v1.0c}{2024/09/21}{Added tagging support} % \begin{macro}{\MakeLinkTarget} % \begin{macro}{\LinkTargetOn} % \begin{macro}{\LinkTargetOff} % \begin{macro}{\NextLinkTarget} % \begin{macrocode} +%\IncludeInRelease{2024/11/01}% +% {\MakeLinkTarget}{Record target name for tagging support}% +\ExplSyntaxOn +\int_new:N\g__kernel_target_int \NewDocumentCommand\MakeLinkTarget{sO{}m}{% \ifvmode \special{}% @@ -164,8 +169,31 @@ \@savsf\spacefactor \smash{}% \spacefactor\@savsf - \fi} -\NewDocumentCommand\LinkTargetOn{}{} + \fi + \IfBooleanTF {#1} + { + \tl_gset:Ne \@currentHref {#3} + } + { + \int_gincr:N\g__kernel_target_int + \tl_gset:Ne \@currentHref {target*.\int_use:N\g__kernel_target_int} + } + \UseTaggingSocket{recordtarget} + } +\ExplSyntaxOff +%\EndIncludeInRelease +%\IncludeInRelease{2022/06/01}% +% {\MakeLinkTarget}{Record target name for tagging support}% +%\NewDocumentCommand\MakeLinkTarget{sO{}m}{% +% \ifvmode +% \special{}% +% \else +% \@savsf\spacefactor +% \smash{}% +% \spacefactor\@savsf +% \fi} +%\EndIncludeInRelease + \NewDocumentCommand\LinkTargetOn{}{} \NewDocumentCommand\LinkTargetOff{}{} \NewDocumentCommand\NextLinkTarget{m}{} % \end{macrocode} diff --git a/base/lttagging.dtx b/base/lttagging.dtx index fa915e01b..74735a376 100644 --- a/base/lttagging.dtx +++ b/base/lttagging.dtx @@ -33,7 +33,7 @@ %<*driver> % \fi \ProvidesFile{lttagging.dtx} - [2024/10/09 v1.0i LaTeX Kernel (tagging support)] + [2024/10/11 v1.0j LaTeX Kernel (tagging support)] % \iffalse \documentclass{l3doc} \GetFileInfo{lttagging.dtx} @@ -253,7 +253,6 @@ \bool_set_true:N \l__tag_para_bool } \AssignSocketPlug{tagsupport/para/restore}{default} -\ExplSyntaxOff % \end{macrocode} % \end{plugdecl} % @@ -264,6 +263,34 @@ % TODO: move this into lttagging. % \end{socketdecl} +% \subsubsection{Tagging socket for targets} + +% \begin{socketdecl}{tagsupport/refstepcounter} +% When tagging is active we want to track the current structure number +% when targets are set. This will be mostly used in \cs{refstepcounter} +% but also if targets are set manually. +% \begin{macrocode} +\NewSocket{tagsupport/recordtarget}{0} +% \end{macrocode} +% \end{socketdecl} +% +% \begin{plugdecl}{kernel (tagsupport/recordtarget)} +% \begin{macrocode} +% +\NewSocketPlug{tagsupport/recordtarget}{kernel} + { + \tl_if_blank:VF \@currentHref + { + \prop_gput:Nee + \g__tag_struct_dest_num_prop + {\@currentHref} + {\tag_get:n{struct_num}} + } + } +\AssignSocketPlug{tagsupport/recordtarget}{kernel} +\ExplSyntaxOff +% \end{macrocode} +% \end{plugdecl} % \subsubsection{Tagging sockets for toc} % \begin{socketdecl}{tagsupport/toc/contentsline/before, @@ -898,14 +925,10 @@ %<@@=> % \end{macrocode} % +% \changes{v1.0h}{2024/09/20}{moved \cs{@kernel@refstepcounter} into ltxref} % This is needed for \pkg{longtable} because \cs{refstepcounter} is % setting up a target when \pkg{hyperref} is loaded and we don't -% want that in \pkg{longtable}. -% -% TODO: move to right .dtx file -% \begin{macrocode} -\let\@kernel@refstepcounter\refstepcounter -% \end{macrocode} +% want that in \pkg{longtable}.%% % Prevent longtable patching by hyperref until hyperref does so automatically: % \begin{macrocode} \def\hyper@nopatch@longtable{} diff --git a/base/ltxref.dtx b/base/ltxref.dtx index 79cf01be7..4464409ab 100644 --- a/base/ltxref.dtx +++ b/base/ltxref.dtx @@ -33,7 +33,7 @@ %<*driver> % \fi \ProvidesFile{ltxref.dtx} - [2023/05/16 v1.1q LaTeX Kernel (Cross Referencing)] + [2024/09/20 v1.1r LaTeX Kernel (Cross Referencing)] % \iffalse \documentclass{ltxdoc} \GetFileInfo{ltxref.dtx} @@ -56,6 +56,9 @@ % % \fi % +% \ProvideDocElement[printtype=\textit{socket},idxtype=socket,idxgroup=Sockets]{Socket}{socketdecl} +% \ProvideDocElement[printtype=\textit{hook},idxtype=hook,idxgroup=Hooks]{Hook}{hookdecl} +% \ProvideDocElement[printtype=\textit{plug},idxtype=plug,idxgroup=Plugs]{Plug}{plugdecl} % % \changes{v1.0c}{1994/03/29} % {Create file ltcntlen from parts of ltmiscen and ltherest.} @@ -413,18 +416,55 @@ % \end{macrocode} % \end{macro} % -% \begin{macrocode} -%\IncludeInRelease{2022/06/01}% -% {\Ref}{Add starred version}% -% \end{macrocode} % % \begin{macro}{\refstepcounter} % Step the counter and allow for labels to point to its current value. % \changes{v1.1n}{2020/05/05}{record the counter name in \cs{@currentcounter}} % \changes{v1.1o}{2020/08/23}{add default definition of \cs{@currentcounter}} +% \changes{v1.1r}{2024/09/20}{set also \@currentHref} +% \changes{v1.1r}{2024/09/20}{provide a kernel copy \@kernel@refstepcounter} +% \changes{v1.1r}{2024/09/20}{add sockets} % \begin{macrocode} +%\IncludeInRelease{2022/06/01}% +% {\Ref}{Add starred version}% \def\@currentcounter{} -\def\refstepcounter#1{\stepcounter{#1}% +%\EndIncludeInRelease +%\IncludeInRelease{2024/11/01}% +% {\@currentHref}{set theHcounter representation}% +% \end{macrocode} +% \begin{socketdecl}{refstepcounter} +% This socket takes the whole code as argument. +% The default kernel plug is identity. By changing +% the plug hyperref can add a conditional and e.g. +% suppress the processing in a PDF context. +% \begin{macrocode} +\NewSocket{refstepcounter}{1} +% \end{macrocode} +% \end{socketdecl} +% \begin{socketdecl}{refstepcounter/target} +% This socket takes an argument, the counter name, and +% should at least set from it the target name |\@currentHref|. +% With hyperref it sets also the actual target. +% This is done with a socket so that the target name +% is not set more than once to (possibly) different names. +% The socket is not used in |\@kernel@refstepcounter|. +% The tagging code needs the target name so it is added after +% this socket. +% \begin{macrocode} +\NewSocket{refstepcounter/target}{1} +% \end{macrocode} +% \end{socketdecl} +% \begin{plugdecl}{kernel (refstepcounter/target)} +% \begin{macrocode} +\NewSocketPlug{refstepcounter/target}{kernel} + {\xdef\@currentHref {#1.\csname theH#1\endcsname}}% +\AssignSocketPlug{refstepcounter/target}{kernel} +% \end{macrocode} +% \end{plugdecl} +% \begin{macrocode} +\def\refstepcounter#1{% + \UseSocket{refstepcounter}{% + \stepcounter{#1}% \edef\@currentcounter{#1}% \protected@edef\@currentlabel % \end{macrocode} @@ -449,10 +489,41 @@ % argument} % \begin{macrocode} {\csname p@#1\expandafter\endcsname\csname the#1\endcsname}% + \UseSocket{refstepcounter/target}{#1}% + \UseTaggingSocket{recordtarget}% + }% } % \end{macrocode} -% \end{macro} +% \begin{macro}{\@kernel@refstepcounter} +% This is a version of \cs{refstepcounter} which does not set and use +% targets. +% \begin{macrocode} +\def\@kernel@refstepcounter#1{% + \UseSocket{refstepcounter}{% + \stepcounter{#1}% + \edef\@currentcounter{#1}% + \protected@edef\@currentlabel + {\csname p@#1\expandafter\endcsname\csname the#1\endcsname}}}% +% \end{macrocode} +% \end{macro} +% \begin{macrocode} +%\EndIncludeInRelease +%\IncludeInRelease{2022/06/01}% +% {\@currentHref}{set theHcounter representation}% +%\def\refstepcounter#1{\stepcounter{#1}% +% \edef\@currentcounter{#1}% +% \protected@edef\@currentlabel +% {\csname p@#1\expandafter\endcsname\csname the#1\endcsname}% +%} +%\let\@kernel@refstepcounter\refstepcounter +%\EndIncludeInRelease +% \end{macrocode} % +% \end{macro} +% \begin{macrocode} +%\IncludeInRelease{2022/06/01}% +% {\Ref}{Add starred version}% +% \end{macrocode} % \begin{macro}{\labelformat} % A shortcut to set the |\p@...| macro for a counter. It will pick % up the counter representation as an argument so that it can be diff --git a/base/testfiles-lthooks/lthooks-rollback-args.tlg b/base/testfiles-lthooks/lthooks-rollback-args.tlg index a33252abd..cc67014ba 100644 --- a/base/testfiles-lthooks/lthooks-rollback-args.tlg +++ b/base/testfiles-lthooks/lthooks-rollback-args.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles-lthooks2/ltpara-006.tlg b/base/testfiles-lthooks2/ltpara-006.tlg index a4befa59b..b6480355c 100644 --- a/base/testfiles-lthooks2/ltpara-006.tlg +++ b/base/testfiles-lthooks2/ltpara-006.tlg @@ -55,7 +55,7 @@ Completed box being shipped out [1] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{Euler}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Euler}{{1}{\thepage }{}{equation.1}{}}} ....\kern140.21014 ....\hbox(7.5+2.5)x12.77782, display .....\hbox(7.5+2.5)x12.77782 diff --git a/base/testfiles/github-0479-often.luatex.tlg b/base/testfiles/github-0479-often.luatex.tlg index a340a3fce..d0ebcb8a8 100644 --- a/base/testfiles/github-0479-often.luatex.tlg +++ b/base/testfiles/github-0479-often.luatex.tlg @@ -287,6 +287,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -364,6 +366,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -508,6 +514,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/github-0479-often.tlg b/base/testfiles/github-0479-often.tlg index a9da7d350..a4c275022 100644 --- a/base/testfiles/github-0479-often.tlg +++ b/base/testfiles/github-0479-often.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/github-0479-often.xetex.tlg b/base/testfiles/github-0479-often.xetex.tlg index 6850917d3..1e599de7c 100644 --- a/base/testfiles/github-0479-often.xetex.tlg +++ b/base/testfiles/github-0479-often.xetex.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/github-0881a.tlg b/base/testfiles/github-0881a.tlg index eec4508c9..bc6f1f6eb 100644 --- a/base/testfiles/github-0881a.tlg +++ b/base/testfiles/github-0881a.tlg @@ -22,7 +22,7 @@ LaTeX Font Info: External font `cmex10' loaded for size .\hbox(0.0+0.0)x0.0 .\OT1/cmr/m/n/10 ) .\glue 3.33333 plus 1.66666 minus 1.11111 -.\write1{\newlabel{lower}{{1}{\thepage }{}{}{}}} +.\write1{\newlabel{lower}{{1}{\thepage }{}{equation.1}{}}} .\penalty 10000 .\glue 0.0 .\glue 3.33333 plus 1.66666 minus 1.11111 diff --git a/base/testfiles/properties-004-predeclare.tlg b/base/testfiles/properties-004-predeclare.tlg index 2d48a1c81..c2dae5e64 100644 --- a/base/testfiles/properties-004-predeclare.tlg +++ b/base/testfiles/properties-004-predeclare.tlg @@ -27,6 +27,7 @@ TEST 5: Property title ============================================================ TEST 6: Property target ============================================================ +section.1 ============================================================ ============================================================ TEST 7: Property counter diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg index 9a43c1bcc..c5084eb8b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.luatex.tlg @@ -269,6 +269,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -338,6 +340,10 @@ Skipping: [....-..-..] comma above on input line .... Applying: [....-..-..] comma above on input line .... Skipping: [....-..-..] Reset nested counters on input line .... Applying: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Skipping: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -471,6 +477,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Skipping: [....-..-..] Add \labelformat and \Ref on input line .... @@ -1087,6 +1096,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -1165,6 +1176,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -1303,6 +1318,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg index b2067edcf..2fa735635 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.tlg @@ -263,6 +263,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -332,6 +334,10 @@ Skipping: [....-..-..] comma above on input line .... Applying: [....-..-..] comma above on input line .... Skipping: [....-..-..] Reset nested counters on input line .... Applying: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Skipping: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -465,6 +471,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Skipping: [....-..-..] Add \labelformat and \Ref on input line .... @@ -1071,6 +1080,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -1149,6 +1160,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -1287,6 +1302,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg index dbb2be447..31c87f9f4 100644 --- a/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-003-often.xetex.tlg @@ -263,6 +263,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Skipping: [....-..-..] Make commands robust on input line .... @@ -332,6 +334,10 @@ Skipping: [....-..-..] comma above on input line .... Applying: [....-..-..] comma above on input line .... Skipping: [....-..-..] Reset nested counters on input line .... Applying: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Skipping: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -465,6 +471,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Skipping: [....-..-..] Add \labelformat and \Ref on input line .... @@ -1080,6 +1089,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -1158,6 +1169,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -1296,6 +1311,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg index 166c72c62..78e117545 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.luatex.tlg @@ -287,6 +287,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -364,6 +366,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -508,6 +514,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg index 3692eafad..6a8904df9 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg index 9a1225f91..07a90e848 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2020-10-01.xetex.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg index 8e7481e7b..ff867a336 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.luatex.tlg @@ -288,6 +288,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -365,6 +367,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -509,6 +515,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg index 1e2af874b..11913a52b 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg index ef79f0429..8dcd26dd7 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-06-01.xetex.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg index d38d71ae8..dc29a3993 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.luatex.tlg @@ -288,6 +288,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -365,6 +367,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -509,6 +515,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg index a36eb7c3c..1a8b8cacf 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg index 166376e54..abdb957d9 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2021-11-15.xetex.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -498,6 +504,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg index 20dc90e67..17ace9488 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.luatex.tlg @@ -289,6 +289,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -366,6 +368,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -510,6 +516,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg index c0f264f21..23c4da9fe 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg index d93a454b3..819e7a3a9 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-06-01.xetex.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg index 8445e8703..c90966e41 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.luatex.tlg @@ -289,6 +289,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -366,6 +368,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -510,6 +516,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg index 1926fb0b4..4f1adce4f 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg index 8cb4e2c38..dd350ef20 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2022-11-01.xetex.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg index 82b54df9c..3a6ac451e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.luatex.tlg @@ -289,6 +289,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -366,6 +368,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -510,6 +516,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg index 1b6c57529..9268980f4 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg index 4f8dc24b3..9e40a7078 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-06-01.xetex.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg index 1c5d21115..de642b04a 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.luatex.tlg @@ -289,6 +289,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -366,6 +368,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -510,6 +516,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg index 6c359296f..85ac003c6 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg index 0c572a723..da05d2c5a 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2023-11-01.xetex.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg index e93aa059e..470b70659 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.luatex.tlg @@ -289,6 +289,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -366,6 +368,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -510,6 +516,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg index 3daa95a6e..112e5164c 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg index 4e7276c74..03e0d071e 100644 --- a/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg +++ b/base/testfiles/tlb-latexrelease-rollback-2024-06-01.xetex.tlg @@ -278,6 +278,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Applying: [....-..-..] Record target name for tagging support on input line .... Skipping: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -355,6 +357,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Applying: [....-..-..] counter without/within on input line .... @@ -499,6 +505,9 @@ Applying: [....-..-..] Add starred reference commands on input line .... Already applied: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Applying: [....-..-..] set theHcounter representation on input line .... +Already applied: [....-..-..] Add starred version on input line .... Already applied: [....-..-..] store five label arguments on input line .... Already applied: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.luatex.tlg b/base/testfiles/tlb-rollback-004-often.luatex.tlg index 148d1a865..27e2894ae 100644 --- a/base/testfiles/tlb-rollback-004-often.luatex.tlg +++ b/base/testfiles/tlb-rollback-004-often.luatex.tlg @@ -288,6 +288,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -365,6 +367,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -508,6 +514,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.tlg b/base/testfiles/tlb-rollback-004-often.tlg index 5b8250220..02a2f30cc 100644 --- a/base/testfiles/tlb-rollback-004-often.tlg +++ b/base/testfiles/tlb-rollback-004-often.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -497,6 +503,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-004-often.xetex.tlg b/base/testfiles/tlb-rollback-004-often.xetex.tlg index cbfde6906..698bffef8 100644 --- a/base/testfiles/tlb-rollback-004-often.xetex.tlg +++ b/base/testfiles/tlb-rollback-004-often.xetex.tlg @@ -277,6 +277,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -354,6 +356,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -497,6 +503,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] Add \labelformat and \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-005.luatex.tlg b/base/testfiles/tlb-rollback-005.luatex.tlg index 7e53204d3..fbf74ec25 100644 --- a/base/testfiles/tlb-rollback-005.luatex.tlg +++ b/base/testfiles/tlb-rollback-005.luatex.tlg @@ -291,6 +291,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -368,6 +370,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -512,6 +518,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-005.tlg b/base/testfiles/tlb-rollback-005.tlg index 1353af586..ad4babf08 100644 --- a/base/testfiles/tlb-rollback-005.tlg +++ b/base/testfiles/tlb-rollback-005.tlg @@ -281,6 +281,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -358,6 +360,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -502,6 +508,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-rollback-005.xetex.tlg b/base/testfiles/tlb-rollback-005.xetex.tlg index 44370f880..0655f7aa5 100644 --- a/base/testfiles/tlb-rollback-005.xetex.tlg +++ b/base/testfiles/tlb-rollback-005.xetex.tlg @@ -281,6 +281,8 @@ END module: ltpara (....-..-..) on input line .... BEGIN module: ltmeta (....-..-..) on input line .... Document Metadata handling. Skipping module ltmeta on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... +Skipping: [....-..-..] Record target name for tagging support on input line .... Applying: [....-..-..] Undo Document Metadata handling on input line .... END module: ltmeta (....-..-..) on input line .... Applying: [....-..-..] Make commands robust on input line .... @@ -358,6 +360,10 @@ Applying: [....-..-..] comma above on input line .... Already applied: [....-..-..] comma above on input line .... Applying: [....-..-..] Reset nested counters on input line .... Already applied: [....-..-..] Reset nested counters on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... +Skipping: [....-..-..] provide theHfoo commands on input line .... +Applying: [....-..-..] provide theHfoo commands on input line .... Applying: [....-..-..] Add interfaces on input line .... Already applied: [....-..-..] Add interfaces on input line .... Skipping: [....-..-..] counter without/within on input line .... @@ -502,6 +508,9 @@ Skipping: [....-..-..] Add starred reference commands on input line .... Applying: [....-..-..] Add starred reference commands on input line .... Skipping: [....-..-..] store five label arguments on input line .... Skipping: [....-..-..] Add starred version on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] set theHcounter representation on input line .... +Skipping: [....-..-..] Add starred version on input line .... Applying: [....-..-..] store five label arguments on input line .... Applying: [....-..-..] Add starred version on input line .... LaTeX Info: Redefining \Ref on input line .... diff --git a/base/testfiles/tlb-theHcounter-001.lvt b/base/testfiles/tlb-theHcounter-001.lvt new file mode 100644 index 000000000..a64462f3e --- /dev/null +++ b/base/testfiles/tlb-theHcounter-001.lvt @@ -0,0 +1,30 @@ +% +% Tests for \@removefromreset + +\documentclass{article} + +% Input the test macros for LaTeX2e +\input{test2e} +\START + +\makeatletter + +\@definecounter{foo} +\show\theHfoo + +\newcounter{baz} +\show\theHbaz + +\@addtoreset{foo}{baz} +\show\theHfoo +\show\theHbaz + +\@removefromreset{foo}{baz} +\show\theHfoo +\show\theHbaz + +\refstepcounter{foo} +\show\@currentHref + +\END + diff --git a/base/testfiles/tlb-theHcounter-001.tlg b/base/testfiles/tlb-theHcounter-001.tlg new file mode 100644 index 000000000..5d6470c0e --- /dev/null +++ b/base/testfiles/tlb-theHcounter-001.tlg @@ -0,0 +1,25 @@ +This is a generated file for the LaTeX2e validation system. +Don't change this file in any respect. +\c@foo=\count... +> \theHfoo=macro: +->\the \value {foo}. +l. ...\show\theHfoo +\c@baz=\count... +> \theHbaz=macro: +->\the \value {baz}. +l. ...\show\theHbaz +> \theHfoo=macro: +->\csname theHbaz\endcsname .\the \value {foo}. +l. ...\show\theHfoo +> \theHbaz=macro: +->\the \value {baz}. +l. ...\show\theHbaz +> \theHfoo=macro: +->\csname theHbaz\endcsname .\the \value {foo}. +l. ...\show\theHfoo +> \theHbaz=macro: +->\the \value {baz}. +l. ...\show\theHbaz +> \@currentHref=macro: +->foo.0.1. +l. ...\show\@currentHref diff --git a/base/testfiles/tltc001.luatex.tlg b/base/testfiles/tltc001.luatex.tlg index 333f55298..4feb7a512 100644 --- a/base/testfiles/tltc001.luatex.tlg +++ b/base/testfiles/tltc001.luatex.tlg @@ -1592,8 +1592,8 @@ Completed box being shipped out [9] ...\write-{} ...\write-{} ...\write-{} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} ...\glue(\topskip) 0.0 ...\hbox(12.85818+2.79999)x345.0, glue set 223.77994fil, direction TLT ....\localpar diff --git a/base/testfiles/tltc001.tlg b/base/testfiles/tltc001.tlg index a1e5e8a10..7e0d981bd 100644 --- a/base/testfiles/tltc001.tlg +++ b/base/testfiles/tltc001.tlg @@ -1391,8 +1391,8 @@ Completed box being shipped out [9] ...\write-{} ...\write-{} ...\write-{} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} ...\glue(\topskip) 0.0 ...\hbox(13.03418+2.79999)x345.0, glue set 223.77994fil ....\hbox(13.03418+1.94177)x37.82016 diff --git a/base/testfiles/tltx001.luatex.tlg b/base/testfiles/tltx001.luatex.tlg index f641ec6e5..6222afd15 100644 --- a/base/testfiles/tltx001.luatex.tlg +++ b/base/testfiles/tltx001.luatex.tlg @@ -1518,8 +1518,8 @@ Completed box being shipped out [9] ...\write-{} ...\write-{} ...\write-{} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} ...\glue(\topskip) 0.0 ...\hbox(12.85818+2.79999)x345.0, glue set 223.77994fil, direction TLT ....\localpar diff --git a/base/testfiles/tltx001.tlg b/base/testfiles/tltx001.tlg index e620c1578..adf3a1600 100644 --- a/base/testfiles/tltx001.tlg +++ b/base/testfiles/tltx001.tlg @@ -1317,8 +1317,8 @@ Completed box being shipped out [9] ...\write-{} ...\write-{} ...\write-{} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} ...\glue(\topskip) 0.0 ...\hbox(13.03418+2.79999)x345.0, glue set 223.77994fil ....\hbox(13.03418+1.94177)x37.82016 diff --git a/base/testfiles/tltx001.xetex.tlg b/base/testfiles/tltx001.xetex.tlg index 88b0e971d..0fb479723 100644 --- a/base/testfiles/tltx001.xetex.tlg +++ b/base/testfiles/tltx001.xetex.tlg @@ -1317,8 +1317,8 @@ Completed box being shipped out [9] ...\write-{} ...\write-{} ...\write-{} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} -...\write1{\newlabel{bla}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} +...\write1{\newlabel{bla}{{1.1}{\thepage }{}{enumiv.1}{}}} ...\glue(\topskip) 0.0 ...\hbox(13.03418+2.79999)x345.0, glue set 223.77994fil ....\hbox(13.03418+1.94177)x37.82016 diff --git a/base/testfiles/vlatex01.luatex.tlg b/base/testfiles/vlatex01.luatex.tlg index f9b8fed8d..1e061c042 100644 --- a/base/testfiles/vlatex01.luatex.tlg +++ b/base/testfiles/vlatex01.luatex.tlg @@ -1252,7 +1252,7 @@ l. ...\showbox0 ..\OT1/cmr/m/n/10 n ..\kern-0.27779 (font) ..\OT1/cmr/m/n/10 t -..\write1{\newlabel{tab1}{{}{\thepage }{}{}{}}} +..\write1{\newlabel{tab1}{{}{\thepage }{}{enumiv.3}{}}} ..\penalty 10000 ..\glue 0.0 plus 1.0fil ..\penalty -10000 @@ -1292,7 +1292,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab2}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab2}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff @@ -1385,7 +1385,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab3}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab3}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff diff --git a/base/testfiles/vlatex01.tlg b/base/testfiles/vlatex01.tlg index 226a21e8a..92ffa6062 100644 --- a/base/testfiles/vlatex01.tlg +++ b/base/testfiles/vlatex01.tlg @@ -1085,7 +1085,7 @@ l. ...\showbox0 ..\OT1/cmr/m/n/10 n ..\kern-0.27779 ..\OT1/cmr/m/n/10 t -..\write1{\newlabel{tab1}{{}{\thepage }{}{}{}}} +..\write1{\newlabel{tab1}{{}{\thepage }{}{enumiv.3}{}}} ..\penalty 10000 ..\glue 0.0 plus 1.0fil ..\penalty -10000 @@ -1125,7 +1125,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab2}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab2}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff @@ -1214,7 +1214,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab3}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab3}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff diff --git a/base/testfiles/vlatex02.luatex.tlg b/base/testfiles/vlatex02.luatex.tlg index 7889d52fe..64441fb88 100644 --- a/base/testfiles/vlatex02.luatex.tlg +++ b/base/testfiles/vlatex02.luatex.tlg @@ -161,7 +161,7 @@ Completed box being shipped out [1] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{Euler}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Euler}{{1}{\thepage }{}{equation.1}{}}} ....\kern140.21014 (font) ....\hbox(7.5+2.5)x12.77782, direction TLT .....\hbox(7.5+2.5)x12.77782, direction TLT @@ -705,7 +705,7 @@ Completed box being shipped out [3] ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(83.47943+0.0)x345.0, direction TLT ....\vbox(83.47943+0.0)x345.0, direction TLT -.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} .....\penalty -51 .....\glue 10.0 plus 3.0 minus 5.0 .....\glue(\parskip) 0.0 diff --git a/base/testfiles/vlatex02.tlg b/base/testfiles/vlatex02.tlg index 18a45c88a..770fb59ed 100644 --- a/base/testfiles/vlatex02.tlg +++ b/base/testfiles/vlatex02.tlg @@ -142,7 +142,7 @@ Completed box being shipped out [1] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{Euler}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Euler}{{1}{\thepage }{}{equation.1}{}}} ....\kern140.21014 ....\hbox(7.5+2.5)x12.77782, display .....\hbox(7.5+2.5)x12.77782 @@ -615,7 +615,7 @@ Completed box being shipped out [3] ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(83.47943+0.0)x345.0 ....\vbox(83.47943+0.0)x345.0 -.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} .....\penalty -51 .....\glue 10.0 plus 3.0 minus 5.0 .....\glue(\parskip) 0.0 diff --git a/base/testfiles/vlatex03-2015.luatex.tlg b/base/testfiles/vlatex03-2015.luatex.tlg index 8f7ed406b..b297bf001 100644 --- a/base/testfiles/vlatex03-2015.luatex.tlg +++ b/base/testfiles/vlatex03-2015.luatex.tlg @@ -411,7 +411,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(84.47943+0.0)x167.5, direction TLT .......\vbox(84.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -581,7 +581,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(83.47943+0.0)x167.5, direction TLT .......\vbox(83.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig2}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig2}{{1}{\thepage }{}{figure.1}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -738,7 +738,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(84.47943+0.0)x167.5, direction TLT .......\vbox(84.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig3}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig3}{{1}{\thepage }{}{figure.2}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -954,7 +954,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(83.47943+0.0)x167.5, direction TLT .......\vbox(83.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig4}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig4}{{1}{\thepage }{}{figure.3}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -3051,7 +3051,7 @@ Completed box being shipped out [5] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\write1{\newlabel{last}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{last}{{1}{\thepage }{}{figure.4}{}}} ...\glue 0.0 plus 1.0fil ...\glue 0.0 ...\glue 0.0 plus 0.0001fil diff --git a/base/testfiles/vlatex03-2015.tlg b/base/testfiles/vlatex03-2015.tlg index 38b9608fb..6f84647e9 100644 --- a/base/testfiles/vlatex03-2015.tlg +++ b/base/testfiles/vlatex03-2015.tlg @@ -354,7 +354,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(84.47943+0.0)x167.5 .......\vbox(84.47943+0.0)x167.5 -........\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -504,7 +504,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(83.47943+0.0)x167.5 .......\vbox(83.47943+0.0)x167.5 -........\write1{\newlabel{Fig2}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig2}{{1}{\thepage }{}{figure.1}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -645,7 +645,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(84.47943+0.0)x167.5 .......\vbox(84.47943+0.0)x167.5 -........\write1{\newlabel{Fig3}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig3}{{1}{\thepage }{}{figure.2}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -836,7 +836,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(83.47943+0.0)x167.5 .......\vbox(83.47943+0.0)x167.5 -........\write1{\newlabel{Fig4}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig4}{{1}{\thepage }{}{figure.3}{}}} ........\penalty -51 ........\glue 10.0 plus 3.0 minus 5.0 ........\glue(\parskip) 0.0 @@ -2706,7 +2706,7 @@ Completed box being shipped out [5] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\write1{\newlabel{last}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{last}{{1}{\thepage }{}{figure.4}{}}} ...\glue 0.0 plus 1.0fil ...\glue 0.0 ...\glue 0.0 plus 0.0001fil diff --git a/base/testfiles/vlatex05.luatex.tlg b/base/testfiles/vlatex05.luatex.tlg index 3e05f7353..ace93bf0e 100644 --- a/base/testfiles/vlatex05.luatex.tlg +++ b/base/testfiles/vlatex05.luatex.tlg @@ -1588,7 +1588,7 @@ Completed box being shipped out [2] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{}{}}} +.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{equation.1}{}}} ....\kern138.54347 (font) ....\hbox(7.5+2.5)x14.44449, direction TLT .....\hbox(7.5+2.5)x14.44449, direction TLT @@ -2118,7 +2118,7 @@ Completed box being shipped out [3] ....\OML/cmm/m/it/10 y ....\kern0.35878 (italic) ....\glue 1.66663 -....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{}{}}} +....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{equation.1}{}}} ....\mathoff ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/base/testfiles/vlatex05.tlg b/base/testfiles/vlatex05.tlg index b6bde28af..249d394be 100644 --- a/base/testfiles/vlatex05.tlg +++ b/base/testfiles/vlatex05.tlg @@ -1374,7 +1374,7 @@ Completed box being shipped out [2] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{}{}}} +.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{equation.1}{}}} ....\kern138.54347 ....\hbox(7.5+2.5)x14.44449, display .....\hbox(7.5+2.5)x14.44449 @@ -1836,7 +1836,7 @@ Completed box being shipped out [3] ....\OML/cmm/m/it/10 y ....\kern0.35878 ....\glue 1.66663 -....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{}{}}} +....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{equation.1}{}}} ....\mathoff ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/base/testfiles/vlatex06-2015.luatex.tlg b/base/testfiles/vlatex06-2015.luatex.tlg index 0700d1cdd..6dfa34b1d 100644 --- a/base/testfiles/vlatex06-2015.luatex.tlg +++ b/base/testfiles/vlatex06-2015.luatex.tlg @@ -3263,7 +3263,7 @@ Completed box being shipped out [5] ....\OT1/cmr/bx/n/14.4 l ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 ? -....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{}{}}} +....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{section.1.5}{}}} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 diff --git a/base/testfiles/vlatex06-2015.tlg b/base/testfiles/vlatex06-2015.tlg index 94a3f8b46..e1c784f01 100644 --- a/base/testfiles/vlatex06-2015.tlg +++ b/base/testfiles/vlatex06-2015.tlg @@ -2868,7 +2868,7 @@ Completed box being shipped out [5] ....\OT1/cmr/bx/n/14.4 l ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 ? -....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{}{}}} +....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{section.1.5}{}}} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 diff --git a/base/testfiles/vtl2e01.luatex.tlg b/base/testfiles/vtl2e01.luatex.tlg index 0b3013fd6..e21a8446e 100644 --- a/base/testfiles/vtl2e01.luatex.tlg +++ b/base/testfiles/vtl2e01.luatex.tlg @@ -1253,7 +1253,7 @@ l. ...\showbox0 ..\OT1/cmr/m/n/10 n ..\kern-0.27779 (font) ..\OT1/cmr/m/n/10 t -..\write1{\newlabel{tab1}{{}{\thepage }{}{}{}}} +..\write1{\newlabel{tab1}{{}{\thepage }{}{enumiv.3}{}}} ..\penalty 10000 ..\glue 0.0 plus 1.0fil ..\penalty -10000 @@ -1293,7 +1293,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab2}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab2}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff @@ -1386,7 +1386,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab3}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab3}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff diff --git a/base/testfiles/vtl2e01.tlg b/base/testfiles/vtl2e01.tlg index 01fc247e5..2a6691f65 100644 --- a/base/testfiles/vtl2e01.tlg +++ b/base/testfiles/vtl2e01.tlg @@ -1086,7 +1086,7 @@ l. ...\showbox0 ..\OT1/cmr/m/n/10 n ..\kern-0.27779 ..\OT1/cmr/m/n/10 t -..\write1{\newlabel{tab1}{{}{\thepage }{}{}{}}} +..\write1{\newlabel{tab1}{{}{\thepage }{}{enumiv.3}{}}} ..\penalty 10000 ..\glue 0.0 plus 1.0fil ..\penalty -10000 @@ -1126,7 +1126,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab2}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab2}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff @@ -1215,7 +1215,7 @@ l. ...\showbox0 ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c ......\OT1/cmr/m/n/10 c -......\write1{\newlabel{tab3}{{}{\thepage }{}{}{}}} +......\write1{\newlabel{tab3}{{}{\thepage }{}{enumiv.3}{}}} ......\glue 6.0 .....\glue(\tabskip) 0.0 ...\mathoff diff --git a/base/testfiles/vtl2e02.luatex.tlg b/base/testfiles/vtl2e02.luatex.tlg index 4d310fa77..793d4b7ae 100644 --- a/base/testfiles/vtl2e02.luatex.tlg +++ b/base/testfiles/vtl2e02.luatex.tlg @@ -137,7 +137,7 @@ Completed box being shipped out [1] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{Euler}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Euler}{{1}{\thepage }{}{equation.1}{}}} ....\kern140.21014 (font) ....\hbox(7.5+2.5)x12.77782, direction TLT .....\hbox(7.5+2.5)x12.77782, direction TLT @@ -641,7 +641,7 @@ Completed box being shipped out [3] ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(73.47943+0.0)x345.0, direction TLT ....\vbox(73.47943+0.0)x345.0, direction TLT -.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(39.53499+3.4)x345.0, glue set 27.96fil, direction TLT diff --git a/base/testfiles/vtl2e02.tlg b/base/testfiles/vtl2e02.tlg index 5c42a5ec0..45203aa03 100644 --- a/base/testfiles/vtl2e02.tlg +++ b/base/testfiles/vtl2e02.tlg @@ -119,7 +119,7 @@ Completed box being shipped out [1] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{Euler}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Euler}{{1}{\thepage }{}{equation.1}{}}} ....\kern140.21014 ....\hbox(7.5+2.5)x12.77782, display .....\hbox(7.5+2.5)x12.77782 @@ -556,7 +556,7 @@ Completed box being shipped out [3] ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(73.47943+0.0)x345.0 ....\vbox(73.47943+0.0)x345.0 -.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(39.53499+3.4)x345.0, glue set 27.96fil diff --git a/base/testfiles/vtl2e03-2015.luatex.tlg b/base/testfiles/vtl2e03-2015.luatex.tlg index 5e40f5398..84f9ff554 100644 --- a/base/testfiles/vtl2e03-2015.luatex.tlg +++ b/base/testfiles/vtl2e03-2015.luatex.tlg @@ -409,7 +409,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(74.47943+0.0)x167.5, direction TLT .......\vbox(74.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(0.0+0.0)x167.5, glue set 83.75fil, direction TLT @@ -577,7 +577,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(73.47943+0.0)x167.5, direction TLT .......\vbox(73.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig2}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig2}{{1}{\thepage }{}{figure.1}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(39.53499+3.4)x167.5, glue set 47.615fil, direction TLT @@ -732,7 +732,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(74.47943+0.0)x167.5, direction TLT .......\vbox(74.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig3}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig3}{{1}{\thepage }{}{figure.2}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(0.0+0.0)x167.5, glue set 83.75fil, direction TLT @@ -955,7 +955,7 @@ Completed box being shipped out [2] ......\glue 8.0 plus 2.0fil ......\vbox(73.47943+0.0)x167.5, direction TLT .......\vbox(73.47943+0.0)x167.5, direction TLT -........\write1{\newlabel{Fig4}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig4}{{1}{\thepage }{}{figure.3}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(39.53499+3.4)x167.5, glue set 47.615fil, direction TLT @@ -3068,7 +3068,7 @@ Completed box being shipped out [5] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\write1{\newlabel{last}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{last}{{1}{\thepage }{}{figure.4}{}}} ...\glue 0.0 plus 1.0fil ...\glue 0.0 ...\glue 0.0 plus 0.0001fil diff --git a/base/testfiles/vtl2e03-2015.tlg b/base/testfiles/vtl2e03-2015.tlg index 31885c857..11b45cb1f 100644 --- a/base/testfiles/vtl2e03-2015.tlg +++ b/base/testfiles/vtl2e03-2015.tlg @@ -352,7 +352,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(74.47943+0.0)x167.5 .......\vbox(74.47943+0.0)x167.5 -........\write1{\newlabel{Fig1}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig1}{{1}{\thepage }{}{section.1}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(0.0+0.0)x167.5, glue set 83.75fil @@ -500,7 +500,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(73.47943+0.0)x167.5 .......\vbox(73.47943+0.0)x167.5 -........\write1{\newlabel{Fig2}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig2}{{1}{\thepage }{}{figure.1}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(39.53499+3.4)x167.5, glue set 47.615fil @@ -639,7 +639,7 @@ Completed box being shipped out [2] ......\glue 12.0 plus 2.0 minus 2.0 ......\vbox(74.47943+0.0)x167.5 .......\vbox(74.47943+0.0)x167.5 -........\write1{\newlabel{Fig3}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig3}{{1}{\thepage }{}{figure.2}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(0.0+0.0)x167.5, glue set 83.75fil @@ -837,7 +837,7 @@ Completed box being shipped out [2] ......\glue 8.0 plus 2.0fil ......\vbox(73.47943+0.0)x167.5 .......\vbox(73.47943+0.0)x167.5 -........\write1{\newlabel{Fig4}{{1}{\thepage }{}{}{}}} +........\write1{\newlabel{Fig4}{{1}{\thepage }{}{figure.3}{}}} ........\glue(\parskip) 0.0 ........\glue(\parskip) 0.0 ........\hbox(39.53499+3.4)x167.5, glue set 47.615fil @@ -2723,7 +2723,7 @@ Completed box being shipped out [5] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\write1{\newlabel{last}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{last}{{1}{\thepage }{}{figure.4}{}}} ...\glue 0.0 plus 1.0fil ...\glue 0.0 ...\glue 0.0 plus 0.0001fil diff --git a/base/testfiles/vtl2e05.luatex.tlg b/base/testfiles/vtl2e05.luatex.tlg index 2cc2fcf29..bd7e030ce 100644 --- a/base/testfiles/vtl2e05.luatex.tlg +++ b/base/testfiles/vtl2e05.luatex.tlg @@ -1810,7 +1810,7 @@ Completed box being shipped out [2] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{}{}}} +.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{equation.1}{}}} ....\kern138.54347 (font) ....\hbox(7.5+2.5)x14.44449, direction TLT .....\hbox(7.5+2.5)x14.44449, direction TLT @@ -2238,7 +2238,7 @@ Completed box being shipped out [2] ....\OML/cmm/m/it/10 y ....\kern0.35878 (italic) ....\glue 1.66663 -....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{}{}}} +....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{equation.1}{}}} ....\mathoff ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/base/testfiles/vtl2e05.tlg b/base/testfiles/vtl2e05.tlg index c9fc6fe32..a3ee52f84 100644 --- a/base/testfiles/vtl2e05.tlg +++ b/base/testfiles/vtl2e05.tlg @@ -1578,7 +1578,7 @@ Completed box being shipped out [2] .....\glue(\thickmuskip) 2.77771 plus 2.77771 .....\OMS/cmsy/m/n/10 ^^@ .....\OT1/cmr/m/n/10 1 -.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{}{}}} +.....\write1{\newlabel{euler}{{{\protect \sf A}}{\thepage }{}{equation.1}{}}} ....\kern138.54347 ....\hbox(7.5+2.5)x14.44449, display .....\hbox(7.5+2.5)x14.44449 @@ -1960,7 +1960,7 @@ Completed box being shipped out [2] ....\OML/cmm/m/it/10 y ....\kern0.35878 ....\glue 1.66663 -....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{}{}}} +....\write1{\newlabel{E1}{{1.1.1}{\thepage }{}{equation.1}{}}} ....\mathoff ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/base/testfiles/vtl2e06.luatex.tlg b/base/testfiles/vtl2e06.luatex.tlg index fe5a5cdb1..ae7440281 100644 --- a/base/testfiles/vtl2e06.luatex.tlg +++ b/base/testfiles/vtl2e06.luatex.tlg @@ -3329,7 +3329,7 @@ Completed box being shipped out [5] ....\OT1/cmr/bx/n/14.4 l ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 ? -....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{}{}}} +....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{section.1.5}{}}} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 diff --git a/base/testfiles/vtl2e06.tlg b/base/testfiles/vtl2e06.tlg index 5ed070861..252c3299a 100644 --- a/base/testfiles/vtl2e06.tlg +++ b/base/testfiles/vtl2e06.tlg @@ -2926,7 +2926,7 @@ Completed box being shipped out [5] ....\OT1/cmr/bx/n/14.4 l ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 ? -....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{}{}}} +....\write1{\newlabel{last:section}{{1.5}{\thepage }{}{section.1.5}{}}} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 diff --git a/required/amsmath/testfiles/amsldoc-1.luatex.tlg b/required/amsmath/testfiles/amsldoc-1.luatex.tlg index 956cf535d..f13cefd5c 100644 --- a/required/amsmath/testfiles/amsldoc-1.luatex.tlg +++ b/required/amsmath/testfiles/amsldoc-1.luatex.tlg @@ -267,7 +267,7 @@ Completed box being shipped out [1] ..........\OT1/cmr/m/n/10 2 ..........\kern0.0 (italic) ..........\OT1/cmr/m/n/10 ) -.........\write1{\newlabel{xx}{{2}{\thepage }{}{}{}}} +.........\write1{\newlabel{xx}{{2}{\thepage }{}{equation.2}{}}} ......\glue(\tabskip) 0.0 .....\penalty 10000 .....\glue 0.0 diff --git a/required/amsmath/testfiles/amsldoc-1.tlg b/required/amsmath/testfiles/amsldoc-1.tlg index fcd1a640b..fb52028c7 100644 --- a/required/amsmath/testfiles/amsldoc-1.tlg +++ b/required/amsmath/testfiles/amsldoc-1.tlg @@ -247,7 +247,7 @@ Completed box being shipped out [1] ..........\OT1/cmr/m/n/10 2 ..........\kern 0.0 ..........\OT1/cmr/m/n/10 ) -.........\write1{\newlabel{xx}{{2}{\thepage }{}{}{}}} +.........\write1{\newlabel{xx}{{2}{\thepage }{}{equation.2}{}}} ......\glue(\tabskip) 0.0 .....\penalty 10000 .....\glue 0.0 diff --git a/required/amsmath/testfiles/amsldoc-2.luatex.tlg b/required/amsmath/testfiles/amsldoc-2.luatex.tlg index 8f4ceb2f9..9060bd59f 100644 --- a/required/amsmath/testfiles/amsldoc-2.luatex.tlg +++ b/required/amsmath/testfiles/amsldoc-2.luatex.tlg @@ -543,7 +543,7 @@ Completed box being shipped out [1] ..........\OT1/cmr/m/n/10 2 ..........\kern0.0 (italic) ..........\OT1/cmr/m/n/10 ) -.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{}{}}} +.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{equation.2}{}}} ......\glue(\tabskip) 0.0 .....\penalty 10000 .....\glue 0.0 diff --git a/required/amsmath/testfiles/amsldoc-2.tlg b/required/amsmath/testfiles/amsldoc-2.tlg index 1c4491a64..637fe9fb0 100644 --- a/required/amsmath/testfiles/amsldoc-2.tlg +++ b/required/amsmath/testfiles/amsldoc-2.tlg @@ -510,7 +510,7 @@ Completed box being shipped out [1] ..........\OT1/cmr/m/n/10 2 ..........\kern 0.0 ..........\OT1/cmr/m/n/10 ) -.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{}{}}} +.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{equation.2}{}}} ......\glue(\tabskip) 0.0 .....\penalty 10000 .....\glue 0.0 diff --git a/required/amsmath/testfiles/amsldoc-2.xetex.tlg b/required/amsmath/testfiles/amsldoc-2.xetex.tlg index cbfbbe5ed..ea09f08ea 100644 --- a/required/amsmath/testfiles/amsldoc-2.xetex.tlg +++ b/required/amsmath/testfiles/amsldoc-2.xetex.tlg @@ -531,7 +531,7 @@ Completed box being shipped out [1] ..........\OT1/cmr/m/n/10 2 ..........\kern 0.0 ..........\OT1/cmr/m/n/10 ) -.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{}{}}} +.........\write1{\newlabel{e:barwq}{{2}{\thepage }{}{equation.2}{}}} ......\glue(\tabskip) 0.0 .....\penalty 10000 .....\glue 0.0 diff --git a/required/amsmath/testfiles/amsldoc-4-fleqn.luatex.tlg b/required/amsmath/testfiles/amsldoc-4-fleqn.luatex.tlg index 547b55ff2..5f1aa75b3 100644 --- a/required/amsmath/testfiles/amsldoc-4-fleqn.luatex.tlg +++ b/required/amsmath/testfiles/amsldoc-4-fleqn.luatex.tlg @@ -328,7 +328,7 @@ Completed box being shipped out [1] .......\OT1/cmr/m/n/10 1 .......\kern0.0 (italic) .......\OT1/cmr/m/n/10 ) -......\write1{\newlabel{eq:C}{{1}{\thepage }{}{}{}}} +......\write1{\newlabel{eq:C}{{1}{\thepage }{}{equation.1}{}}} ...\penalty 0 ...\glue(\belowdisplayskip) 10.0 plus 2.0 minus 5.0 ...\glue(\parskip) 0.0 plus 1.0 @@ -955,7 +955,7 @@ Completed box being shipped out [1] .......\OT1/cmr/m/n/10 5 .......\kern0.0 (italic) .......\OT1/cmr/m/n/10 ) -......\write1{\newlabel{eq:D}{{5}{\thepage }{}{}{}}} +......\write1{\newlabel{eq:D}{{5}{\thepage }{}{equation.5}{}}} ...\penalty 0 ...\glue(\belowdisplayskip) 10.0 plus 2.0 minus 5.0 ...\glue -5.0 diff --git a/required/amsmath/testfiles/amsldoc-4-fleqn.tlg b/required/amsmath/testfiles/amsldoc-4-fleqn.tlg index 6db9dfd00..9344a777c 100644 --- a/required/amsmath/testfiles/amsldoc-4-fleqn.tlg +++ b/required/amsmath/testfiles/amsldoc-4-fleqn.tlg @@ -316,7 +316,7 @@ Completed box being shipped out [1] .......\OT1/cmr/m/n/10 1 .......\kern 0.0 .......\OT1/cmr/m/n/10 ) -......\write1{\newlabel{eq:C}{{1}{\thepage }{}{}{}}} +......\write1{\newlabel{eq:C}{{1}{\thepage }{}{equation.1}{}}} ...\penalty 0 ...\glue(\belowdisplayskip) 10.0 plus 2.0 minus 5.0 ...\glue(\parskip) 0.0 plus 1.0 @@ -913,7 +913,7 @@ Completed box being shipped out [1] .......\OT1/cmr/m/n/10 5 .......\kern 0.0 .......\OT1/cmr/m/n/10 ) -......\write1{\newlabel{eq:D}{{5}{\thepage }{}{}{}}} +......\write1{\newlabel{eq:D}{{5}{\thepage }{}{equation.5}{}}} ...\penalty 0 ...\glue(\belowdisplayskip) 10.0 plus 2.0 minus 5.0 ...\glue -5.0 diff --git a/required/amsmath/testfiles/amsldoc-4.luatex.tlg b/required/amsmath/testfiles/amsldoc-4.luatex.tlg index 0706bc70f..06ce4cda0 100644 --- a/required/amsmath/testfiles/amsldoc-4.luatex.tlg +++ b/required/amsmath/testfiles/amsldoc-4.luatex.tlg @@ -320,7 +320,7 @@ Completed box being shipped out [1] ......\OT1/cmr/m/n/10 1 ......\kern0.0 (italic) ......\OT1/cmr/m/n/10 ) -.....\write1{\newlabel{eq:C}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{eq:C}{{1}{\thepage }{}{equation.1}{}}} ...\penalty 0 ...\glue(\belowdisplayshortskip) 6.0 plus 3.0 minus 3.0 ...\glue(\parskip) 0.0 plus 1.0 @@ -944,7 +944,7 @@ Completed box being shipped out [1] ......\OT1/cmr/m/n/10 5 ......\kern0.0 (italic) ......\OT1/cmr/m/n/10 ) -.....\write1{\newlabel{eq:D}{{5}{\thepage }{}{}{}}} +.....\write1{\newlabel{eq:D}{{5}{\thepage }{}{equation.5}{}}} ...\penalty 0 ...\glue(\belowdisplayshortskip) 6.0 plus 3.0 minus 3.0 ...\glue -5.0 diff --git a/required/amsmath/testfiles/amsldoc-4.tlg b/required/amsmath/testfiles/amsldoc-4.tlg index 7eb2b5919..972d62e30 100644 --- a/required/amsmath/testfiles/amsldoc-4.tlg +++ b/required/amsmath/testfiles/amsldoc-4.tlg @@ -307,7 +307,7 @@ Completed box being shipped out [1] ......\OT1/cmr/m/n/10 1 ......\kern 0.0 ......\OT1/cmr/m/n/10 ) -.....\write1{\newlabel{eq:C}{{1}{\thepage }{}{}{}}} +.....\write1{\newlabel{eq:C}{{1}{\thepage }{}{equation.1}{}}} ...\penalty 0 ...\glue(\belowdisplayshortskip) 6.0 plus 3.0 minus 3.0 ...\glue(\parskip) 0.0 plus 1.0 @@ -900,7 +900,7 @@ Completed box being shipped out [1] ......\OT1/cmr/m/n/10 5 ......\kern 0.0 ......\OT1/cmr/m/n/10 ) -.....\write1{\newlabel{eq:D}{{5}{\thepage }{}{}{}}} +.....\write1{\newlabel{eq:D}{{5}{\thepage }{}{equation.5}{}}} ...\penalty 0 ...\glue(\belowdisplayshortskip) 6.0 plus 3.0 minus 3.0 ...\glue -5.0 diff --git a/required/latex-lab/changes.txt b/required/latex-lab/changes.txt index 802e6adaf..c6a55ee6a 100644 --- a/required/latex-lab/changes.txt +++ b/required/latex-lab/changes.txt @@ -1,6 +1,10 @@ -2024-10-04 Joseph Wright +2024-10-12 Joseph Wright * latex-lab-math.dtx: Sync with protected-begin status +2024-10-11 Ulrike Fischer + * latex-lab-toc.dtx, latex-lab-sec.dtx, latex-lab-toc-kernel-changes: move target + handling (\MakeLinkTarget patches) into the kernel. + 2024-10-11 Frank Mittelbach * latex-lab-block.dtx (subsubsection{verse environment}): diff --git a/required/latex-lab/config-LM-tagging.lua b/required/latex-lab/config-LM-tagging.lua index 4b0bcb14a..e0670f105 100644 --- a/required/latex-lab/config-LM-tagging.lua +++ b/required/latex-lab/config-LM-tagging.lua @@ -4,7 +4,7 @@ stdengine = "pdftex" checkengines = {"pdftex"} checksearch = true testfiledir = "testfiles-LM" - +recordstatus = true checkruns = 3 forcecheckruns = true --- for tagged stuff diff --git a/required/latex-lab/latex-lab-float.dtx b/required/latex-lab/latex-lab-float.dtx index ccdc0c97e..536aa09cf 100644 --- a/required/latex-lab/latex-lab-float.dtx +++ b/required/latex-lab/latex-lab-float.dtx @@ -16,8 +16,8 @@ % % for those people who are interested or want to report an issue. % -\def\ltlabfloatdate{2024-07-05} -\def\ltlabfloatversion{0.81e} +\def\ltlabfloatdate{2024-09-20} +\def\ltlabfloatversion{0.81f} %<*driver> \documentclass{l3doc} \EnableCrossrefs diff --git a/required/latex-lab/latex-lab-sec.dtx b/required/latex-lab/latex-lab-sec.dtx index f69e613d8..936eee9ed 100644 --- a/required/latex-lab/latex-lab-sec.dtx +++ b/required/latex-lab/latex-lab-sec.dtx @@ -198,28 +198,31 @@ % We must ensure that manual targets (e.g. in unnumbered sections) % correctly update \cs{@currentHref}. For this we extend the kernel definition of % \cs{MakeLinkTarget} -% +% TODO: remove after release 2024/11 % \begin{macrocode} %<*kernelchange> \ExplSyntaxOn -\int_new:N\g__kernel_target_int -\RenewDocumentCommand\MakeLinkTarget{sO{}m} - {% - \ifvmode - \special{}% - \else - \@savsf\spacefactor - \smash{}% - \spacefactor\@savsf - \fi - \IfBooleanTF {#1} - { - \tl_gset:Ne \@currentHref {#3} +\str_if_exist:cF { l__socket_tagsupport/recordtarget_plug_str } + { + \int_new:N\g__kernel_target_int + \RenewDocumentCommand\MakeLinkTarget{sO{}m} + {% + \ifvmode + \special{}% + \else + \@savsf\spacefactor + \smash{}% + \spacefactor\@savsf + \fi + \IfBooleanTF {#1} + { + \tl_gset:Ne \@currentHref {#3} + } + { + \int_gincr:N\g__kernel_target_int + \tl_gset:Ne \@currentHref {target*.\int_use:N\g__kernel_target_int} + } } - { - \int_gincr:N\g__kernel_target_int - \tl_gset:Ne \@currentHref {target*.\int_use:N\g__kernel_target_int} - } } \ExplSyntaxOff % diff --git a/required/latex-lab/latex-lab-toc-kernel-changes.dtx b/required/latex-lab/latex-lab-toc-kernel-changes.dtx index bf10bf4f2..2934a2616 100644 --- a/required/latex-lab/latex-lab-toc-kernel-changes.dtx +++ b/required/latex-lab/latex-lab-toc-kernel-changes.dtx @@ -73,67 +73,14 @@ % \end{macrocode} % % \subsection{Providing the counter representation \cs{theHxx} generally} -% [kernel?] -% -% The \cs{theHxx} representation allows to create a unique representation of a counter -% that is for example used to create destination names. It will also be needed -% to add |/Ref| keys to various tagging structures. It makes therefore sense -% to provide it by default as soon as a counter is created. The |\@addtoreset| change -% (taken also from hyperref) tries to ensure the counter stays unique if it is reset. -% -% At first we suppress the patches from hyperref: +% +% This has been moved to base. +% +% We still suppress the patches from hyperref: % \begin{macrocode} \def\hyper@nopatch@counter{} % \end{macrocode} -% -% \begin{macrocode} -\def\@definecounter#1{\expandafter\newcount\csname c@#1\endcsname - \setcounter{#1}\z@ - \global\expandafter\let\csname cl@#1\endcsname\@empty - \@addtoreset{#1}{@ckpt}% - \global\expandafter\let\csname p@#1\endcsname\@empty - \expandafter\gdef\csname theH#1\endcsname{\the\value{#1}}%new - \expandafter - \gdef\csname the#1\expandafter\endcsname\expandafter - {\expandafter\@arabic\csname c@#1\endcsname}} -\def\@addtoreset#1#2{\expandafter\@cons\csname cl@#2\endcsname {{#1}}% - \expandafter\gdef\csname theH#1\endcsname{\csname theH#2\endcsname.\the\value{#1}}% -} -% \end{macrocode} -% The following counters are defined in the kernel -% \begin{macrocode} -\gdef\theHenumi{\the\value{enumi}} -\gdef\theHenumii{\the\value{enumii}} -\gdef\theHenumiii{\the\value{enumiii}} -\gdef\theHenumiv{\the\value{enumiv}} -\gdef\theHequation{\the\value{equation}} -\gdef\theHfootnote{\the\value{footnote}} -\gdef\theHmpfootnote{\the\value{mpfootnote}} -% \end{macrocode} -% -% \subsection{Providing and updating \cs{@currentHref}} -% [kernel?] -% -% \cs{@currentHref} contains the current unique representation of a counter. -% It is useful also without hyperref as it allows to connect with a |/Ref| -% key a toc entry with the heading it refers too. So \cs{refstepcounter} -% is extended to update the command. This is done at the begin so that the -% hyperref code can still adapt it later (using the cmd/refstepcounter/after hook -% would be too late, and could also break with cleverref.) -% -% We also provide a kernel version that hyperref doesn't touch and so will never -% set a target. -% \begin{macrocode} -\def\@currentHref{} -\def\refstepcounter#1{\stepcounter{#1}% - \edef\@currentcounter{#1}% - \xdef\@currentHref {#1.\csname theH#1\endcsname}% - \protected@edef\@currentlabel - {\csname p@#1\expandafter\endcsname\csname the#1\endcsname}% -} -\let\@kernel@refstepcounter\refstepcounter -% \end{macrocode} -% + % \subsection{Assigning the headings level numbers} % [kernel?] % @@ -165,17 +112,21 @@ % catch as much as possible, see also tagging issue \#20. This should work also % without hyperref. The property is defined in tagpdf-base, so the code would % work also without tagging but we add a test anyway, this is probably faster. +% TODO: remove % \begin{macrocode} \ExplSyntaxOn -\AddToHookWithArguments{cmd/MakeLinkTarget/after} - { - \tag_if_active:T - { - \tl_if_blank:VF \@currentHref - { - \prop_gput:Nee \g__tag_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} - } - } +\str_if_exist:cF { l__socket_tagsupport/recordtarget_str } + { + \AddToHookWithArguments{cmd/MakeLinkTarget/after} + { + \tag_if_active:T + { + \tl_if_blank:VF \@currentHref + { + \prop_gput:Nee \g__tag_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} + } + } + } } \ExplSyntaxOff % \end{macrocode} diff --git a/required/latex-lab/latex-lab-toc.dtx b/required/latex-lab/latex-lab-toc.dtx index 37fde1e17..15dd403bd 100644 --- a/required/latex-lab/latex-lab-toc.dtx +++ b/required/latex-lab/latex-lab-toc.dtx @@ -16,8 +16,8 @@ % % for those people who are interested or want to report an issue. % -\def\ltlabtocdate{2024-09-19} -\def\ltlabtocversion{0.85d} +\def\ltlabtocdate{2024-09-26} +\def\ltlabtocversion{0.85e} %<*driver> \documentclass{l3doc} \EnableCrossrefs @@ -114,27 +114,31 @@ % Defined by tagpdf. % \end{variable} % -% \cs{refstepcounter} doesn't use \cs{MakeLinkTarget} (yet) so -% we have to patch it too to store the relation between -% destination names/\cs{@currentHref} and structure numbers +% We have to to store the relation between +% destination names/\cs{@currentHref} and structure numbers. +% With a current kernel this is done in \cs{refstepcounter} +% through the |recordtarget| socket. If that doesn't exist yet +% we patch: % -% The property is set up in tagpdf-test so that one -% doesn't has to check if the prop exists or not. +% TODO remove after release 2024/11 % \begin{macrocode} -\AddToHook{cmd/refstepcounter/after} - { - \tl_if_blank:VF \@currentHref - { - \prop_gput:Nee \g_@@_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} - } - } -\AddToHook{cmd/H@refstepcounter/after} - { - \tl_if_blank:VF \@currentHref - { - \prop_gput:Nee \g_@@_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} - } - } +\str_if_exist:cF { l__socket_tagsupport/recordtarget_plug_str } + { + \AddToHook{cmd/refstepcounter/after} + { + \tl_if_blank:VF \@currentHref + { + \prop_gput:Nee \g_@@_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} + } + } + \AddToHook{cmd/H@refstepcounter/after} + { + \tl_if_blank:VF \@currentHref + { + \prop_gput:Nee \g_@@_struct_dest_num_prop {\@currentHref}{\tag_get:n{struct_num}} + } + } + } % \end{macrocode} % % \section{Toc code} diff --git a/required/latex-lab/resave.bat b/required/latex-lab/resave.bat index 669406599..8d60938d8 100644 --- a/required/latex-lab/resave.bat +++ b/required/latex-lab/resave.bat @@ -10,5 +10,7 @@ REM l3build save -c config-title title-008 title-004 title-005 title-007 title-0 REM l3build save -c config-firstaid test-ltugboat test-amsart-title REM l3build save -c config-toc -e luatex toc-ex-article-hyperref-2 toc-ex-book-tocdepth toc-ex-article-no-hyperref toc-ex-article-hyperref-3 toc-ex-book-no-hyperref toc-ex-article-hyperref-1 toc-ex-book-hyperref-1 toc-manual-addcontentsline toc-debug REM l3build save -c config-title -e luatex title-003 title-009 title-007 title-005 title-006 title-004 title-008 title-002 -l3build save -c config-bib -e luatex bib-009 bib-008-natbib bib-006 bib-007-natbib bib-005 bib-010-natbib -l3build check --show-saves -c config-OR memoir-001 scrartcl-001 + +l3build save -c config-block -e luatex blocks-hyperref-01 +l3build save -c config-block blocks-000 + l3build check --show-saves -c config-block blocks-000 diff --git a/required/latex-lab/testfiles-LM/LM-2-2.tlg b/required/latex-lab/testfiles-LM/LM-2-2.tlg index af5d7d624..d438ad989 100644 --- a/required/latex-lab/testfiles-LM/LM-2-2.tlg +++ b/required/latex-lab/testfiles-LM/LM-2-2.tlg @@ -1586,3 +1586,7 @@ The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces) > {125} > {201}. [4] +*************** +Compilation 1 of test file completed with exit status 0 +Compilation 2 of test file completed with exit status 0 +Compilation 3 of test file completed with exit status 0 diff --git a/required/latex-lab/testfiles-LM/LM-3-1+2.tlg b/required/latex-lab/testfiles-LM/LM-3-1+2.tlg index 99c594b6c..6c44588b8 100644 --- a/required/latex-lab/testfiles-LM/LM-3-1+2.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-1+2.tlg @@ -126,3 +126,7 @@ The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces) > {5} > {9}. [1] +*************** +Compilation 1 of test file completed with exit status 0 +Compilation 2 of test file completed with exit status 0 +Compilation 3 of test file completed with exit status 0 diff --git a/required/latex-lab/testfiles-LM/LM-3-3.tlg b/required/latex-lab/testfiles-LM/LM-3-3.tlg index 634e2686b..e2b0ed8b7 100644 --- a/required/latex-lab/testfiles-LM/LM-3-3.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-3.tlg @@ -607,3 +607,7 @@ The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces) > {57} > {74}. [2] +*************** +Compilation 1 of test file completed with exit status 0 +Compilation 2 of test file completed with exit status 0 +Compilation 3 of test file completed with exit status 0 diff --git a/required/latex-lab/testfiles-LM/LM-3-4.tlg b/required/latex-lab/testfiles-LM/LM-3-4.tlg index 63deb5324..f0778fb05 100644 --- a/required/latex-lab/testfiles-LM/LM-3-4.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-4.tlg @@ -494,3 +494,7 @@ The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces) > {5} > {9}. [1] +*************** +Compilation 1 of test file completed with exit status 0 +Compilation 2 of test file completed with exit status 0 +Compilation 3 of test file completed with exit status 0 diff --git a/required/latex-lab/testfiles-LM/shorthands.lvt b/required/latex-lab/testfiles-LM/shorthands.lvt new file mode 100644 index 000000000..d7119cdd2 --- /dev/null +++ b/required/latex-lab/testfiles-LM/shorthands.lvt @@ -0,0 +1,32 @@ +\ExplSyntaxOn \sys_gset_rand_seed:n{1000} \ExplSyntaxOff +\DocumentMetadata + { + lang=en-US, + pdfversion=2.0, + pdfstandard=ua-2, + testphase={phase-III,math,title,table,firstaid} + } +\input{regression-test} +\documentclass{article} +\usepackage[ngerman]{babel} +\makeatletter +%from french +% https://github.com/latex3/tagging-project/issues/414 +\initiate@active@char{:}% +\initiate@active@char{;}% +\initiate@active@char{!}% +\initiate@active@char{?}% +%from ethiop +%https://github.com/latex3/tagging-project/issues/656 +\initiate@active@char{~} +\initiate@active@char{^} +\initiate@active@char{'} +\initiate@active@char{_} +\initiate@active@char{.} +\initiate@active@char{:} +\makeatother +\title{active shorthand tagging test} + +\begin{document} +\START blub +\end{document} diff --git a/required/latex-lab/testfiles-LM/shorthands.tlg b/required/latex-lab/testfiles-LM/shorthands.tlg new file mode 100644 index 000000000..5c001c3f2 --- /dev/null +++ b/required/latex-lab/testfiles-LM/shorthands.tlg @@ -0,0 +1,19 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +[1 +] (shorthands.aux) +Package tagpdf Info: Finalizing the tagging structure: +(tagpdf) Writing out ~6 structure objects +(tagpdf) with ~3 'MC' leaf nodes. +(tagpdf) Be patient if there are lots of objects! +Package tagpdf Info: writing ParentTree +Package tagpdf Info: writing IDTree +Package tagpdf Info: writing RoleMap +Package tagpdf Info: writing ClassMap +Package tagpdf Info: writing NameSpaces +Package tagpdf Info: writing StructElems +Package tagpdf Info: writing Root +*************** +Compilation 1 of test file completed with exit status 0 +Compilation 2 of test file completed with exit status 0 +Compilation 3 of test file completed with exit status 0 diff --git a/required/latex-lab/testfiles-OR-luatex/footmisc-009-multiple.tlg b/required/latex-lab/testfiles-OR-luatex/footmisc-009-multiple.tlg index 4315d40e4..0a0b57795 100644 --- a/required/latex-lab/testfiles-OR-luatex/footmisc-009-multiple.tlg +++ b/required/latex-lab/testfiles-OR-luatex/footmisc-009-multiple.tlg @@ -231,7 +231,7 @@ Completed box being shipped out [1] ....\hbox(6.65+0.0)x0.0, direction TLT .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ....\OT1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace-tagging.tlg b/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace-tagging.tlg index a0631039b..e1bf154ba 100644 --- a/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace-tagging.tlg +++ b/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace-tagging.tlg @@ -1280,7 +1280,7 @@ Completed box being shipped out [1] .....\pdfliteral page .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{13}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.13}{}}} ....\OT1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace.tlg b/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace.tlg index f5cd00faa..080f80d3a 100644 --- a/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace.tlg +++ b/required/latex-lab/testfiles-OR-luatex/footmisc-010-setspace.tlg @@ -1133,7 +1133,7 @@ Completed box being shipped out [1] ....\hbox(6.65+0.0)x0.0, direction TLT .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ....\OT1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR-luatex/footmisc-011-para.tlg b/required/latex-lab/testfiles-OR-luatex/footmisc-011-para.tlg index 8f537279b..75276069e 100644 --- a/required/latex-lab/testfiles-OR-luatex/footmisc-011-para.tlg +++ b/required/latex-lab/testfiles-OR-luatex/footmisc-011-para.tlg @@ -188,7 +188,7 @@ Completed box being shipped out [1] ....\TU/lmr/m/n/10 ....\glue -1.63 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{9}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.9}{}}} ....\penalty 10000 ....\glue 0.0 ....\OT1/cmr/m/n/8 B diff --git a/required/latex-lab/testfiles-OR-luatex/footmisc-012-side.tlg b/required/latex-lab/testfiles-OR-luatex/footmisc-012-side.tlg index 0544532ca..1677f9a55 100644 --- a/required/latex-lab/testfiles-OR-luatex/footmisc-012-side.tlg +++ b/required/latex-lab/testfiles-OR-luatex/footmisc-012-side.tlg @@ -206,7 +206,7 @@ Completed box being shipped out [1] ...........\OT1/cmr/m/n/6 2 ..........\mathoff ........\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -........\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +........\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ........\OT1/cmr/m/n/8 B ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg b/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg index 74f02dae4..d1696cbfc 100644 --- a/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg +++ b/required/latex-lab/testfiles-OR/footmisc-009-multiple.tlg @@ -330,7 +330,7 @@ Completed box being shipped out [1] ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ....\T1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR/footmisc-010-setspace-tagging.tlg b/required/latex-lab/testfiles-OR/footmisc-010-setspace-tagging.tlg index b9b087615..93eb84d12 100644 --- a/required/latex-lab/testfiles-OR/footmisc-010-setspace-tagging.tlg +++ b/required/latex-lab/testfiles-OR/footmisc-010-setspace-tagging.tlg @@ -1360,7 +1360,7 @@ Completed box being shipped out [1] ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{13}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.13}{}}} ....\T1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg b/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg index 2648929ee..e6acc36dd 100644 --- a/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg +++ b/required/latex-lab/testfiles-OR/footmisc-010-setspace.tlg @@ -1148,7 +1148,7 @@ Completed box being shipped out [1] ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ....\T1/cmr/m/n/8 B ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 diff --git a/required/latex-lab/testfiles-OR/footmisc-011-para.tlg b/required/latex-lab/testfiles-OR/footmisc-011-para.tlg index 08712fa0b..45ab2bfb1 100644 --- a/required/latex-lab/testfiles-OR/footmisc-011-para.tlg +++ b/required/latex-lab/testfiles-OR/footmisc-011-para.tlg @@ -368,7 +368,7 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue 1.69955 ....\write1{\new@label@record{__fnote/foo}{{fnote/struct}{9}}} -....\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +....\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.9}{}}} ....\penalty 10000 ....\glue 0.0 ....\T1/cmr/m/n/8 B diff --git a/required/latex-lab/testfiles-OR/footmisc-012-side.tlg b/required/latex-lab/testfiles-OR/footmisc-012-side.tlg index c2b62ce11..0c9f52ca4 100644 --- a/required/latex-lab/testfiles-OR/footmisc-012-side.tlg +++ b/required/latex-lab/testfiles-OR/footmisc-012-side.tlg @@ -279,7 +279,7 @@ Completed box being shipped out [1] ........\special{} ........\special{} ........\write1{\new@label@record{__fnote/foo}{{fnote/struct}{6}}} -........\write1{\newlabel{foo}{{2}{\thepage }{}{}{}}} +........\write1{\newlabel{foo}{{2}{\thepage }{}{footnote*.6}{}}} ........\T1/cmr/m/n/8 B ........\special{} ........\penalty 10000 diff --git a/required/latex-lab/testfiles-block/blocks-000.luatex.tlg b/required/latex-lab/testfiles-block/blocks-000.luatex.tlg index d82fbbd7b..8645f87f5 100644 --- a/required/latex-lab/testfiles-block/blocks-000.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-000.luatex.tlg @@ -4,9 +4,7 @@ Don't change this file in any respect. Package: latex-lab-testphase-block ....-..-.. v... blockenv implementation (latex-lab-kernel-changes.sty Package: latex-lab-kernel-changes ....-..-.. v... General kernel and class changes -(glyphtounicode.tex) (glyphtounicode-cmex.tex) -\g__kernel_target_int=\count... -) +(glyphtounicode.tex) (glyphtounicode-cmex.tex)) LaTeX template Info: Declaring template type 'blockenv' taking 1 argument(s) on line .... LaTeX template Info: Declaring template type 'block' taking 1 argument(s) on line .... LaTeX template Info: Declaring template type 'para' taking 1 argument(s) on line .... diff --git a/required/latex-lab/testfiles-block/blocks-000.tlg b/required/latex-lab/testfiles-block/blocks-000.tlg index 38ad0d450..d1d395aef 100644 --- a/required/latex-lab/testfiles-block/blocks-000.tlg +++ b/required/latex-lab/testfiles-block/blocks-000.tlg @@ -4,9 +4,7 @@ Don't change this file in any respect. Package: latex-lab-testphase-block ....-..-.. v... blockenv implementation (latex-lab-kernel-changes.sty Package: latex-lab-kernel-changes ....-..-.. v... General kernel and class changes -(glyphtounicode-cmex.tex) -\g__kernel_target_int=\count... -) +(glyphtounicode-cmex.tex)) LaTeX template Info: Declaring template type 'blockenv' taking 1 argument(s) on line .... LaTeX template Info: Declaring template type 'block' taking 1 argument(s) on line .... LaTeX template Info: Declaring template type 'para' taking 1 argument(s) on line .... diff --git a/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg b/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg index 5e4fe59b9..651958e6e 100644 --- a/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg @@ -316,7 +316,7 @@ Completed box being shipped out [1] .............\OT1/cmr/m/n/10 b .............\kern0.27779 (font) .............\OT1/cmr/m/n/10 c -.............\write1{\newlabel{a}{{1}{\thepage }{}{enumi.1}{}}} +.............\write1{\newlabel{a}{{1}{\thepage }{}{Doc-Start}{}}} .............\penalty 10000 .............\glue(\parfillskip) 0.0 plus 1.0fil .............\glue(\rightskip) 0.0 diff --git a/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg b/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg index 636474ac7..7b9cd1145 100644 --- a/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg @@ -311,7 +311,7 @@ Completed box being shipped out [1] .............\T1/cmr/m/n/10 b .............\kern0.27771 .............\T1/cmr/m/n/10 c -.............\write1{\newlabel{a}{{1}{\thepage }{}{enumi.1}{}}} +.............\write1{\newlabel{a}{{1}{\thepage }{}{Doc-Start}{}}} .............\pdfliteral page{EMC} .............\penalty 10000 .............\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.lvt b/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.lvt index 98a1dd67c..a1ee2a2d9 100644 --- a/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.lvt +++ b/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.lvt @@ -8,6 +8,7 @@ pdfstandard=ua-2, testphase={phase-III,title,math,table} } +\input{regression-test} \documentclass{article} \begin{document} \START diff --git a/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.tlg b/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.tlg index e69de29bb..d617cf6c2 100644 --- a/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.tlg +++ b/required/latex-lab/testfiles-math-luatex/math-suspended-gh661.tlg @@ -0,0 +1,192 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +Completed box being shipped out [1] +\vbox(633.0+0.0)x407.0, direction TLT +.\hbox(0.0+0.0)x0.0, direction TLT +..\kern-72.26999 +..\vbox(0.0+0.0)x0.0, glue set 72.26999fil, direction TLT +...\kern-72.26999 +...\hbox(0.0+0.0)x0.0, direction TLT +....\pdfliteral page +....\latelua0{ltx.__pdf.backend_ThisPage_gpush(tex.count["g_shipout_readonly_int"])} +....\glue 0.0 plus 1.0fil minus 1.0fil +...\glue 0.0 plus 1.0fil minus 1.0fil +.\glue 16.0 +.\vbox(617.0+0.0)x345.0, shifted 62.0, direction TLT +..\vbox(12.0+0.0)x345.0, glue set 12.0fil, direction TLT +...\glue 0.0 plus 1.0fil +...\pdflinkstate 1 +...\hbox(0.0+0.0)x345.0, direction TLT +....\hbox(0.0+0.0)x345.0, direction TLT +...\pdflinkstate 0 +..\glue 25.0 +..\glue(\lineskip) 0.0 +..\vbox(550.0+0.0)x345.0, glue set 473.94937fil, direction TLT +...\latelua0{ltx.__pdf.Page.Resources.ExtGState=true} +...\latelua0{ltx.pdf.Page_Resources_gpush(tex.count["g_shipout_readonly_int"])} +...\write-{} +...\glue(\topskip) 5.0 +...\hbox(5.0+0.0)x345.0, glue set 325.0fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x15.0, direction TLT +....\pdfliteral page +....\pdfliteral page +....\savepos +....\write1{\new@label@record{__tag_graphic_1}{{xpos}{\__property_code_xpos: }{ypos}{\__property_code_ypos: }{abspage}{\__property_code_abspage: }}} +....\savepos +....\hbox(5.0+0.0)x5.0, direction TLT +.....\hbox(5.0+0.0)x5.0, glue set - 21.54865fil, direction TLT +......\glue 0.0 +......\hbox(6.15079+0.0)x26.54865, direction TLT +.......\OT1/cmr/m/n/10 t +.......\OT1/cmr/m/n/10 e +.......\OT1/cmr/m/n/10 x +.......\OT1/cmr/m/n/10 t +.......\mathon +.......\OML/cmm/m/it/10 x +.......\mathoff +.......\glue(\spaceskip) 3.33333 plus 1.66666 minus 1.11111 +......\glue 0.0 plus 1.0fil minus 1.0fil +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 5.05556 +...\hbox(6.94444+0.0)x345.0, glue set 257.92245fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x15.0, direction TLT +....\pdfliteral page +....\pdfliteral page +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\TU/lmr/m/n/10 +....\glue(\spaceskip) 0.00333 plus 1.66666 minus 1.11111 +....\glue(\spaceskip) 3.33333 plus 1.66666 minus 1.11111 +....\mathon +....\OML/cmm/m/it/10 a +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OT1/cmr/m/n/10 = +....\penalty 500 +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OML/cmm/m/it/10 b +....\mathoff +....\glue(\spaceskip) 3.33333 plus 1.66666 minus 1.11111 +....\TU/lmr/m/n/10 +....\glue(\spaceskip) 0.00333 plus 1.66666 minus 1.11111 +....\OT1/cmr/m/n/10 a +....\OT1/cmr/m/n/10 a +....\OT1/cmr/m/n/10 a +....\OT1/cmr/m/n/10 a +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.69446 +...\hbox(4.30554+0.0)x345.0, glue set 314.1666fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x15.0, direction TLT +....\pdfliteral page +....\pdfliteral page +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.69446 +...\hbox(4.30554+0.0)x345.0, glue set 314.1666fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x15.0, direction TLT +....\pdfliteral page +....\pdfliteral page +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\penalty 10000 +...\glue(\abovedisplayshortskip) 0.0 plus 3.0 +...\glue(\baselineskip) 5.05556 +...\hbox(6.94444+0.0)x22.91077, shifted 161.04462, direction TLT +....\OML/cmm/m/it/10 a +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OT1/cmr/m/n/10 = +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OML/cmm/m/it/10 b +...\penalty 10000 +...\glue(\belowdisplayshortskip) -6.0 plus -3.0 minus -3.0 +...\penalty 10000 +...\glue 6.0 plus 3.0 minus 3.0 +...\penalty 0 +...\glue 6.0 plus 3.0 minus 3.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.69446 +...\hbox(4.30554+0.0)x345.0, glue set 329.1666fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 x +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue 0.0 plus 1.0fil +...\glue 0.0 plus -1.0fil +...\glue 0.0 plus 1.0fil +...\glue 0.0 +...\glue 0.0 plus 0.0001fil +..\pdflinkstate 1 +..\glue(\baselineskip) 23.55556 +..\hbox(6.44444+0.0)x345.0, direction TLT +...\hbox(6.44444+0.0)x345.0, glue set 170.0fil, direction TLT +....\glue 0.0 plus 1.0fil +....\pdfliteral page +....\pdfliteral page +....\OT1/cmr/m/n/10 1 +....\glue 0.0 plus 1.0fil +..\pdfliteral page +..\pdfliteral page +..\pdflinkstate 0 +.\kern0.0 +.\kern-633.0 +.\hbox(0.0+0.0)x0.0, direction TLT +.\kern633.0 +.\pdfliteral page +(math-suspended-gh661.aux) +Package tagpdf Info: Finalizing the tagging structure: +(tagpdf) Writing out ~11 structure objects +(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) Be patient if there are lots of objects! +Package tagpdf Info: writing ParentTree +Package tagpdf Info: writing IDTree +Package tagpdf Info: writing RoleMap +Package tagpdf Info: writing ClassMap +Package tagpdf Info: writing NameSpaces +Package tagpdf Info: writing StructElems +Package tagpdf Info: writing Root diff --git a/required/latex-lab/testfiles-math/math-suspended-gh661.lvt b/required/latex-lab/testfiles-math/math-suspended-gh661.lvt index 98a1dd67c..a1ee2a2d9 100644 --- a/required/latex-lab/testfiles-math/math-suspended-gh661.lvt +++ b/required/latex-lab/testfiles-math/math-suspended-gh661.lvt @@ -8,6 +8,7 @@ pdfstandard=ua-2, testphase={phase-III,title,math,table} } +\input{regression-test} \documentclass{article} \begin{document} \START diff --git a/required/latex-lab/testfiles-math/math-suspended-gh661.tlg b/required/latex-lab/testfiles-math/math-suspended-gh661.tlg index e69de29bb..32b304ee8 100644 --- a/required/latex-lab/testfiles-math/math-suspended-gh661.tlg +++ b/required/latex-lab/testfiles-math/math-suspended-gh661.tlg @@ -0,0 +1,201 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +Completed box being shipped out [1] +\vbox(633.0+0.0)x407.0 +.\hbox(0.0+0.0)x0.0 +..\pdfinterwordspaceon +.\hbox(0.0+0.0)x0.0 +..\kern -72.26999 +..\vbox(0.0+0.0)x0.0, glue set 72.26999fil +...\kern -72.26999 +...\hbox(0.0+0.0)x0.0 +....\glue 0.0 plus 1.0fil minus 1.0fil +...\glue 0.0 plus 1.0fil minus 1.0fil +.\glue 16.0 +.\vbox(617.0+0.0)x345.0, shifted 62.0 +..\vbox(12.0+0.0)x345.0, glue set 12.0fil +...\glue 0.0 plus 1.0fil +...\pdfrunninglinkoff +...\pdfliteral page{/Artifact BMC} +...\marks4{b-,6,-1,} +...\marks4{b+,6,-1,} +...\hbox(0.0+0.0)x345.0 +....\hbox(0.0+0.0)x345.0 +...\pdfliteral page{EMC} +...\marks4{e-,6,2,} +...\marks4{e+,6,2,} +...\pdfrunninglinkon +..\glue 25.0 +..\glue(\lineskip) 0.0 +..\vbox(550.0+0.0)x345.0, glue set 473.94937fil +...\hbox(0.0+0.0)x0.0 +...\write-{} +...\glue(\topskip) 5.0 +...\hbox(5.0+0.0)x345.0, glue set 325.0fil +....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text <> BDC} +....\hbox(0.0+0.0)x15.0 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/Figure <> BDC} +....\pdfsavepos +....\write1{\new@label@record{__tag_graphic_1}{{xpos}{\__property_code_xpos: }{ypos}{\__property_code_ypos: }{abspage}{\__property_code_abspage: }}} +....\pdfsavepos +....\hbox(5.0+0.0)x5.0 +.....\hbox(5.0+0.0)x5.0, glue set - 21.54352fil +......\glue 0.0 +......\hbox(6.1493+0.0)x26.54352 +.......\T1/cmr/m/n/10 t +.......\T1/cmr/m/n/10 e +.......\T1/cmr/m/n/10 x +.......\T1/cmr/m/n/10 t +.......\mathon +.......\OML/cmm/m/it/10 x +.......\mathoff +.......\glue 3.33252 plus 1.66626 minus 1.11084 +......\glue 0.0 plus 1.0fil minus 1.0fil +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text <> BDC} +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,1,6,text,,,} +...\marks4{b+,1,6,text,,,} +...\marks4{e-,1,6,} +...\marks4{e+,1,6,} +...\marks4{b-,2,7,Figure,,,} +...\marks4{b+,2,7,Figure,,,} +...\marks4{e-,2,7,} +...\marks4{e+,2,7,} +...\marks4{b-,3,6,text,,,} +...\marks4{b+,3,6,text,,,} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 5.05556 +...\hbox(6.94444+0.0)x345.0, glue set 257.93457fil +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text <> BDC} +....\hbox(0.0+0.0)x15.0 +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\glue 3.33252 plus 1.66626 minus 1.11084 +....\glue 3.33252 plus 1.66626 minus 1.11084 +....\mathon +....\OML/cmm/m/it/10 a +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OT1/cmr/m/n/10 = +....\penalty 500 +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OML/cmm/m/it/10 b +....\mathoff +....\glue 3.33252 plus 1.66626 minus 1.11084 +....\glue 3.33252 plus 1.66626 minus 1.11084 +....\T1/cmr/m/n/10 a +....\T1/cmr/m/n/10 a +....\T1/cmr/m/n/10 a +....\T1/cmr/m/n/10 a +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,4,9,text,,,} +...\marks4{b+,4,9,text,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.6955 +...\hbox(4.3045+0.0)x345.0, glue set 314.17053fil +....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text <> BDC} +....\hbox(0.0+0.0)x15.0 +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,5,11,text,,,} +...\marks4{b+,5,11,text,,,} +...\marks4{e-,5,11,} +...\marks4{e+,5,11,} +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.6955 +...\hbox(4.3045+0.0)x345.0, glue set 314.17053fil +....\hbox(0.0+0.0)x15.0 +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\penalty 10000 +...\glue(\abovedisplayshortskip) 0.0 plus 3.0 +...\glue(\baselineskip) 5.05556 +...\hbox(6.94444+0.0)x22.91077, shifted 161.04462, display +....\OML/cmm/m/it/10 a +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OT1/cmr/m/n/10 = +....\glue(\thickmuskip) 2.77771 plus 2.77771 +....\OML/cmm/m/it/10 b +...\penalty 10000 +...\glue(\belowdisplayshortskip) -6.0 plus -3.0 minus -3.0 +...\penalty 10000 +...\glue 6.0 plus 3.0 minus 3.0 +...\penalty 0 +...\glue 6.0 plus 3.0 minus 3.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 7.6955 +...\hbox(4.3045+0.0)x345.0, glue set 329.17053fil +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 x +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue 0.0 plus 1.0fil +...\glue 0.0 plus -1.0fil +...\kern 0.0 +...\hbox(0.0+0.0)x0.0 +...\glue 0.0 plus 1.0fil +...\glue 0.0 +...\glue 0.0 plus 0.0001fil +..\pdfrunninglinkoff +..\pdfliteral page{/Artifact BMC} +..\marks4{b-,7,-1,} +..\marks4{b+,7,-1,} +..\glue(\baselineskip) 23.5849 +..\hbox(6.4151+0.0)x345.0 +...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil +....\glue 0.0 plus 1.0fil +....\T1/cmr/m/n/10 1 +....\glue 0.0 plus 1.0fil +..\pdfliteral page{EMC} +..\marks4{e-,7,2,} +..\marks4{e+,7,2,} +..\pdfrunninglinkon +.\kern 0.0 +.\kern 0.0 +.\kern -633.0 +.\hbox(0.0+0.0)x0.0 +.\kern 633.0 +(math-suspended-gh661.aux) +Package tagpdf Info: Finalizing the tagging structure: +(tagpdf) Writing out ~11 structure objects +(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) Be patient if there are lots of objects! +Package tagpdf Info: writing ParentTree +Package tagpdf Info: writing IDTree +Package tagpdf Info: writing RoleMap +Package tagpdf Info: writing ClassMap +Package tagpdf Info: writing NameSpaces +Package tagpdf Info: writing StructElems +Package tagpdf Info: writing Root diff --git a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg index cd7a05631..3a4c663e3 100644 --- a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg @@ -222,7 +222,7 @@ Completed box being shipped out [1] .............\OT1/cmr/m/n/10 b .............\kern0.27779 (font) .............\OT1/cmr/m/n/10 c -.............\write1{\newlabel{a}{{1}{\thepage }{}{Doc-Start}{}}} +.............\write1{\newlabel{a}{{1}{\thepage }{}{enumi.1}{}}} .............\penalty 10000 .............\glue(\parfillskip) 0.0 plus 1.0fil .............\glue(\rightskip) 0.0 diff --git a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg index 1224ec62e..38eb3c892 100644 --- a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg @@ -201,7 +201,7 @@ Completed box being shipped out [1] .............\T1/cmr/m/n/10 b .............\kern0.27771 .............\T1/cmr/m/n/10 c -.............\write1{\newlabel{a}{{1}{\thepage }{}{Doc-Start}{}}} +.............\write1{\newlabel{a}{{1}{\thepage }{}{enumi.1}{}}} .............\pdfliteral page{EMC} .............\penalty 10000 .............\glue(\parfillskip) 0.0 plus 1.0fil diff --git a/required/latex-lab/testfiles-table-luatex/table-006-longtable.tlg b/required/latex-lab/testfiles-table-luatex/table-006-longtable.tlg index 6a183fef3..8e23bb600 100644 --- a/required/latex-lab/testfiles-table-luatex/table-006-longtable.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-006-longtable.tlg @@ -13,6 +13,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -2055,6 +2056,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 21 row: 22 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket '@makecol/outputbox' containing plug 'footnotes-floats' used. diff --git a/required/latex-lab/testfiles-table-luatex/table-007-longtable.tlg b/required/latex-lab/testfiles-table-luatex/table-007-longtable.tlg index 321578bf0..fb9abea7f 100644 --- a/required/latex-lab/testfiles-table-luatex/table-007-longtable.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-007-longtable.tlg @@ -13,6 +13,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -1162,6 +1163,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 11 row: 12 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket '@makecol/outputbox' containing plug 'footnotes-floats' used. diff --git a/required/latex-lab/testfiles-table-luatex/table-016.tlg b/required/latex-lab/testfiles-table-luatex/table-016.tlg index b39585c77..8a7b66925 100644 --- a/required/latex-lab/testfiles-table-luatex/table-016.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-016.tlg @@ -1,4 +1,5 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [1 Non-PDF special ignored!] (table-016.aux) diff --git a/required/latex-lab/testfiles-table-luatex/table-019.tlg b/required/latex-lab/testfiles-table-luatex/table-019.tlg index 32464083e..c902320af 100644 --- a/required/latex-lab/testfiles-table-luatex/table-019.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-019.tlg @@ -4,6 +4,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. @@ -65,6 +66,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tagsupport/tbl/cell/begin' containing plug 'TD' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/cell/end' containing plug 'TD' used. +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. diff --git a/required/latex-lab/testfiles-table-luatex/table-020.tlg b/required/latex-lab/testfiles-table-luatex/table-020.tlg index 725fd461a..405c02722 100644 --- a/required/latex-lab/testfiles-table-luatex/table-020.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-020.tlg @@ -4,6 +4,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. @@ -30,6 +31,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tagsupport/tbl/cell/end' containing plug 'TD' used. [Sockets] ==> Socket 'tagsupport/tbl/row/end' containing plug 'TR' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. @@ -38,6 +40,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. @@ -64,6 +67,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/cell/end' containing plug 'TD' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. @@ -72,6 +76,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. @@ -110,6 +115,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/cell/end' containing plug 'TD' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. diff --git a/required/latex-lab/testfiles-table-luatex/table-021-longtable.tlg b/required/latex-lab/testfiles-table-luatex/table-021-longtable.tlg index 13c15536b..247977a8c 100644 --- a/required/latex-lab/testfiles-table-luatex/table-021-longtable.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-021-longtable.tlg @@ -8,6 +8,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -70,6 +71,7 @@ Don't change this file in any respect. ==> structure stored for row 3: 17,18,19 [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 3 row: 4 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. diff --git a/required/latex-lab/testfiles-table-pdftex/table-006-longtable.tlg b/required/latex-lab/testfiles-table-pdftex/table-006-longtable.tlg index 866fa8202..a0051456e 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-006-longtable.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-006-longtable.tlg @@ -13,6 +13,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -2181,6 +2182,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 21 row: 22 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. tagpdf DEBUG Info: MC begin inserted with options: artifact [on line ...] tagpdf DEBUG Info: MC end inserted [on line ...] diff --git a/required/latex-lab/testfiles-table-pdftex/table-007-longtable.tlg b/required/latex-lab/testfiles-table-pdftex/table-007-longtable.tlg index dedc916fc..9e17b0277 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-007-longtable.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-007-longtable.tlg @@ -13,6 +13,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -1234,6 +1235,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Root}{StructTreeRoot}}. [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 11 row: 12 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. tagpdf DEBUG Info: MC begin inserted with options: artifact [on line ...] tagpdf DEBUG Info: MC end inserted [on line ...] diff --git a/required/latex-lab/testfiles-table-pdftex/table-016.tlg b/required/latex-lab/testfiles-table-pdftex/table-016.tlg index ef836bb10..00786b234 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-016.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-016.tlg @@ -1,11 +1,13 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 --longtable--> chunk row: 1 row: 1 column: 1 --longtable--> chunk row: 2 row: 2 column: 3 --longtable--> chunk row: 2 row: 3 column: 1 --longtable--> chunk row: 2 row: 4 column: 0 +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 --longtable--> chunk row: 1 row: 1 column: 1 diff --git a/required/latex-lab/testfiles-table-pdftex/table-019.tlg b/required/latex-lab/testfiles-table-pdftex/table-019.tlg index 51cfc3bd8..f673d8b18 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-019.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-019.tlg @@ -4,6 +4,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -99,6 +100,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tagsupport/tbl/cell/end' containing plug 'TD' used. ==> structure stored for row 5: 23,24,25 --longtable--> chunk row: 5 row: 5 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. --longtable--> chunk row: 0 row: 5 column: 0 [Sockets] ==> Socket 'tagsupport/tbl/row/begin' containing plug 'TR' used. diff --git a/required/latex-lab/testfiles-table-pdftex/table-020.tlg b/required/latex-lab/testfiles-table-pdftex/table-020.tlg index c12c2a297..f25c15286 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-020.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-020.tlg @@ -4,6 +4,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -48,6 +49,7 @@ Don't change this file in any respect. ==> structure stored for row 2: 11,12,13 [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 0 row: 3 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. @@ -56,6 +58,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -102,6 +105,7 @@ Don't change this file in any respect. ==> structure stored for row 2: 20,21,22 [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 0 row: 3 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. @@ -110,6 +114,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -178,6 +183,7 @@ Don't change this file in any respect. ==> structure stored for row 3: 33,34,35 [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 0 row: 4 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. diff --git a/required/latex-lab/testfiles-table-pdftex/table-021-longtable.tlg b/required/latex-lab/testfiles-table-pdftex/table-021-longtable.tlg index 37a3a189b..0015eef7a 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-021-longtable.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-021-longtable.tlg @@ -8,6 +8,7 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used. [Sockets] ==> Socket 'tagsupport/tbl/init' containing plug 'Table' used. [Sockets] ==> Replacing plug 'default' with 'Table' in socket 'tagsupport/para/restore'. +[Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/init' containing plug 'Table' used. ==> Table has 3 columns --longtable--> chunk row: 0 row: 0 column: 0 @@ -81,6 +82,7 @@ Don't change this file in any respect. --longtable--> chunk row: 2 row: 4 column: 0 [Sockets] ==> Socket 'tagsupport/tbl/longtable/finalize' containing plug 'Table' used. --longtable--> chunk row: 2 row: 4 column: 0 +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/head' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/longtable/foot' containing plug 'Table' used. [Sockets] ==> Socket 'tagsupport/tbl/vmode/end' containing plug 'Table' used. diff --git a/required/tools/testfiles-search/github-1123.tlg b/required/tools/testfiles-search/github-1123.tlg index b62cefcd3..733dbfcf7 100644 --- a/required/tools/testfiles-search/github-1123.tlg +++ b/required/tools/testfiles-search/github-1123.tlg @@ -12,7 +12,7 @@ Completed box being shipped out [1] ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set 519.94446fil ...\write-{} -...\write1{\newlabel{firstlabel}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{firstlabel}{{1}{\thepage }{}{theorem.1}{}}} ...\glue(\topskip) 2.5 ...\hbox(7.5+2.5)x345.0, glue set 253.11134fil ....\hbox(0.0+0.0)x0.0, glue set - 65.04944fil diff --git a/required/tools/testfiles-search/tlb-varioref-001.luatex.tlg b/required/tools/testfiles-search/tlb-varioref-001.luatex.tlg index be141e0cf..2428c73f6 100644 --- a/required/tools/testfiles-search/tlb-varioref-001.luatex.tlg +++ b/required/tools/testfiles-search/tlb-varioref-001.luatex.tlg @@ -37,7 +37,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{}{}}} +...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{section.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -1512,7 +1512,7 @@ Completed box being shipped out [4] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}B-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{}{}}} +...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{section.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 diff --git a/required/tools/testfiles-search/tlb-varioref-001.tlg b/required/tools/testfiles-search/tlb-varioref-001.tlg index e8881f654..7489a9829 100644 --- a/required/tools/testfiles-search/tlb-varioref-001.tlg +++ b/required/tools/testfiles-search/tlb-varioref-001.tlg @@ -31,7 +31,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{}{}}} +...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{section.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -1341,7 +1341,7 @@ Completed box being shipped out [4] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}B-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{}{}}} +...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{section.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 diff --git a/required/tools/testfiles-search/tlb-varioref-002.luatex.tlg b/required/tools/testfiles-search/tlb-varioref-002.luatex.tlg index c10a0a7ca..c9ef6d942 100644 --- a/required/tools/testfiles-search/tlb-varioref-002.luatex.tlg +++ b/required/tools/testfiles-search/tlb-varioref-002.luatex.tlg @@ -37,7 +37,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{}{}}} +...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{section.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -1460,7 +1460,7 @@ Completed box being shipped out [4] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}B-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{}{}}} +...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{section.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 diff --git a/required/tools/testfiles-search/tlb-varioref-002.tlg b/required/tools/testfiles-search/tlb-varioref-002.tlg index f6b5f67ef..418d4658a 100644 --- a/required/tools/testfiles-search/tlb-varioref-002.tlg +++ b/required/tools/testfiles-search/tlb-varioref-002.tlg @@ -31,7 +31,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{}{}}} +...\write1{\newlabel{A}{{sect: 1}{\thepage }{}{section.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -1289,7 +1289,7 @@ Completed box being shipped out [4] ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}B-head}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90276 plus 0.86108 -...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{}{}}} +...\write1{\newlabel{B}{{sect: 2}{\thepage }{}{section.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 diff --git a/required/tools/testfiles/tlb4159.luatex.tlg b/required/tools/testfiles/tlb4159.luatex.tlg index c0c3e5902..e0b4e118a 100644 --- a/required/tools/testfiles/tlb4159.luatex.tlg +++ b/required/tools/testfiles/tlb4159.luatex.tlg @@ -200,7 +200,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1}Definitions}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45831 plus 0.86108 -...\write1{\newlabel{sec-def}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{sec-def}{{1.1}{\thepage }{}{subsection.1.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -293,7 +293,7 @@ Completed box being shipped out [1] ...\penalty 10000 ...\penalty 10000 ...\glue 6.45831 plus 0.86108 -...\write1{\newlabel{subsec-parity}{{1.1.2}{\thepage }{}{}{}}} +...\write1{\newlabel{subsec-parity}{{1.1.2}{\thepage }{}{subsubsection.1.1.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue -1.94444 diff --git a/required/tools/testfiles/tlb4159.tlg b/required/tools/testfiles/tlb4159.tlg index 2c5a62c69..a953b7d60 100644 --- a/required/tools/testfiles/tlb4159.tlg +++ b/required/tools/testfiles/tlb4159.tlg @@ -163,7 +163,7 @@ Completed box being shipped out [1] ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1}Definitions}{\thepage }{}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45831 plus 0.86108 -...\write1{\newlabel{sec-def}{{1.1}{\thepage }{}{}{}}} +...\write1{\newlabel{sec-def}{{1.1}{\thepage }{}{subsection.1.1}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 @@ -230,7 +230,7 @@ Completed box being shipped out [1] ...\penalty 10000 ...\penalty 10000 ...\glue 6.45831 plus 0.86108 -...\write1{\newlabel{subsec-parity}{{1.1.2}{\thepage }{}{}{}}} +...\write1{\newlabel{subsec-parity}{{1.1.2}{\thepage }{}{subsubsection.1.1.2}{}}} ...\penalty 10000 ...\penalty 10000 ...\glue -1.94444 diff --git a/required/tools/testfiles/tlb4173.luatex.tlg b/required/tools/testfiles/tlb4173.luatex.tlg index 8679d3514..6e7d746da 100644 --- a/required/tools/testfiles/tlb4173.luatex.tlg +++ b/required/tools/testfiles/tlb4173.luatex.tlg @@ -14,7 +14,7 @@ Completed box being shipped out [2] ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set 328.9927fil, direction TLT ...\write-{} -...\write1{\newlabel{T:1}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{T:1}{{1}{\thepage }{}{target*.1}{}}} ...\glue(\topskip) 3.05556 ...\hbox(6.94444+1.94444)x345.0, glue set 159.81227fil, direction TLT ....\localpar @@ -157,7 +157,7 @@ Completed box being shipped out [2] ...\penalty -51 ...\glue 1.94444 ...\glue 10.0 plus 3.0 minus 5.0 -...\write1{\newlabel{T:2}{{2}{\thepage }{}{}{}}} +...\write1{\newlabel{T:2}{{2}{\thepage }{}{target*.2}{}}} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.55556 @@ -454,7 +454,7 @@ Completed box being shipped out [2] ....\glue(\rightskip) 0.0 ...\penalty -51 ...\glue 10.0 plus 4.0 minus 5.0 -...\write1{\newlabel{T:3}{{3}{\thepage }{}{}{}}} +...\write1{\newlabel{T:3}{{3}{\thepage }{}{target*.3}{}}} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.5 diff --git a/required/tools/testfiles/tlb4173.tlg b/required/tools/testfiles/tlb4173.tlg index 2d02b915b..6c362d737 100644 --- a/required/tools/testfiles/tlb4173.tlg +++ b/required/tools/testfiles/tlb4173.tlg @@ -14,7 +14,7 @@ Completed box being shipped out [2] ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set 328.9927fil ...\write-{} -...\write1{\newlabel{T:1}{{1}{\thepage }{}{}{}}} +...\write1{\newlabel{T:1}{{1}{\thepage }{}{target*.1}{}}} ...\glue(\topskip) 3.05556 ...\hbox(6.94444+1.94444)x345.0, glue set 159.81227fil ....\hbox(6.94444+0.0)x59.58307 @@ -133,7 +133,7 @@ Completed box being shipped out [2] ...\penalty -51 ...\glue 1.94444 ...\glue 10.0 plus 3.0 minus 5.0 -...\write1{\newlabel{T:2}{{2}{\thepage }{}{}{}}} +...\write1{\newlabel{T:2}{{2}{\thepage }{}{target*.2}{}}} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.55556 @@ -384,7 +384,7 @@ Completed box being shipped out [2] ....\glue(\rightskip) 0.0 ...\penalty -51 ...\glue 10.0 plus 4.0 minus 5.0 -...\write1{\newlabel{T:3}{{3}{\thepage }{}{}{}}} +...\write1{\newlabel{T:3}{{3}{\thepage }{}{target*.3}{}}} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.5