diff --git a/base/doc/ltnews44.tex b/base/doc/ltnews44.tex index ca7ab366a..30ab16ff4 100644 --- a/base/doc/ltnews44.tex +++ b/base/doc/ltnews44.tex @@ -271,6 +271,7 @@ \subsection{Use the \key{order} key mechanism for theorem-like environments and By default the setting of the \key{note-format} key surrounds the note with parentheses. + \subsection{Fix a color leakage in theorem-like environments} If the \key{body-decls} key was given a color specification then that @@ -343,6 +344,59 @@ \subsection{Make \cs{item}\texttt{[]} produce an empty item label} \taggingissue{1557} +\subsection{Use the \key{order} key mechanism for heading commands} + +In \LaTeX{} release 2026-06-01 we provided a reimplementation of +heading commands using templates. The initial set of templates had +only limited flexibility, modeling layouts closely related to those from +the standard \LaTeX classes. As a consequence, they used keys such as +\key{number-title-sep} to define the space between heading number and +title on the assumption that both are placed exactly in that order. + +We have now written new extended the templates to allow for reordering +of heading elements and more flexible spacing between them, but in +that scenario such keys do no longer make sense and therefore have +been replaced with more generic keys such as \key{separator-a}, +\key{separator-b}, etc. not taking a length value but accepting +general code. + + +If you have defined instances using the first template version +then you can (for now) continue to use them simply by changing the +template names in your instance declarations from \meta{name} to +\meta{name}\texttt{-v1}, e.g., you have to change from +\begin{verbatim} + \DeclareInstance + {heading}{chapter}{display} {...} + \DeclareInstance{headformat} + {heading}{chapter}{display} {...} + + \DeclareInstance{heading} + {section}{hang} { ... } + \DeclareInstance{headformat} + {section}{hang} { ... } + ... +\end{verbatim} + to +\begin{verbatim} + \DeclareInstance + {heading}{chapter}{display-v1} {...} + \DeclareInstance{headformat} + {heading}{chapter}{display-v1} {...} + + \DeclareInstance{heading} + {section}{hang-v1} { ... } + \DeclareInstance{headformat} + {section}{hang-v1} { ... } + ... +\end{verbatim} +No other changes are necessary for now. However, going forward +you should switch to the extended templates because the +\texttt{-v1} templates will eventually be dropped. +% +How to upgrade to the new templates is explained in \texttt{texdoc + latex-lab-sec-template}. + \subsection{Support \key{force-unnumbered} key in heading templates} @@ -411,7 +465,15 @@ \subsection{\cs{newlist} failed for \texttt{description} lists} -%\section{New or improved commands} +\section{New or improved commands} + +\subsection{Testing if a certain template is defined} + +To better support the declaration of template instances we now provide the +conditional \cs{IfTemplateExistsTF} (and its \texttt{T} and \texttt{F} +variants) so that it is possible to take different actions depending +on whether or not a certain template is declared. + @@ -432,9 +494,11 @@ \subsection{Support for \cs{UseName} in template key bindings} \subsection{Further removal of \enquote{fake math} from the kernel} -In the previous release, we removed most use of \enquote{fake math} (math mode not denoting a formula but used for positioning or manipulating text material) from the -kernel~\cite{44:ltnews}. The use of \cs{underline} in text mode was missed in -that update: this has now been addressed. +In the previous release, we removed most use of \enquote{fake math} +(math mode not denoting a formula but used for positioning or +manipulating text material) from the kernel~\cite{44:ltnews}. The use +of \cs{underline} in text mode was missed in that update: this has now +been addressed. %\section{Bug fixes} diff --git a/required/latex-lab/changes.txt b/required/latex-lab/changes.txt index 78842636d..dcae08b98 100644 --- a/required/latex-lab/changes.txt +++ b/required/latex-lab/changes.txt @@ -3,11 +3,16 @@ * latex-lab-names.dtx: avoid to use tagpdf internal: use `\tag_if_tag_known:nT` to test if a tag exists. use role/new-attribute* for the table attributes - * latex-lab-marginpar: avoid to use tagpdf internal, use \tag_struct_map_function:N to map over the stack. - * latex-lab-block.dtx: remove unused \__tag_para_main_store_struct:, use symbolic names instead of para variables. - * latex-lab-sec.dtx: avoid to use tagpdf internals, use \tag_get:nN and use symbolic names. - * latex-lab-table.dtx: avoid to use tagpdf internals when adapting the header cells, avoid para-variables and use symbolic names instead. - * latex-lab-math.dtx: avoid to use tagpdf internals by simplifying `\@kernel@math@registered@begin` and using \tag_attr_new:ee. + * latex-lab-marginpar: avoid to use tagpdf internal, use \tag_struct_map_function:N + to map over the stack. + * latex-lab-block.dtx: remove unused \__tag_para_main_store_struct:, use symbolic + names instead of para variables. + * latex-lab-sec.dtx: avoid to use tagpdf internals, use \tag_get:nN and + use symbolic names. + * latex-lab-table.dtx: avoid to use tagpdf internals when adapting the header + cells, avoid para-variables and use symbolic names instead. + * latex-lab-math.dtx: avoid to use tagpdf internals by simplifying + \@kernel@math@registered@begin and using \tag_attr_new:ee. * latex-lab-float.dtx: avoid to use tagpdf internals 2026-09-02 Benjamin Mako Hill @@ -15,12 +20,46 @@ * latex-lab-footnotes.dtx (subsubsection{Making documents use the new \cs{@makefntext}}): Report a proper error if \cs{@makefntext} cannot be patched (tagging/1577) +2026-08-31 Frank Mittelbach + + * latex-lab-minipage.dtx (subsection{Tagging commands}): + Don't use \UseStructureName for now but use the + variable \l__tag_para_tag_tl directly + 2026-08-27 Frank Mittelbach * latex-lab-block.dtx (subsubsection{Implementation of \insttype{item} templates}): Treat empty optional \item argument as an empty label (tagging/1557) ->>>>>>> develop +2026-08-23 Frank Mittelbach + + * latex-lab-sec-template.dtx (subsubsection{headformat templates interfaces}): + Use order key mechanism in headformat templates. + + * latex-lab-firstaid.dtx: + Adjust AMS class fixes to new heading templates. + +2026-08-19 Frank Mittelbach + + * latex-lab-template.dtx (section{The Implementation}): + Support special order key items ?, |, and, !. + +2026-08-14 Frank Mittelbach + + * latex-lab-template.dtx: + Add support for special | item in order clists. + Add \IfValueLastOrderItemTF to do conditional formatting based on whether + or not last item had a value. + +2026-08-12 Frank Mittelbach + + * latex-lab-sec-template.dtx (subsubsection{New \cs{@startsection}}): + Provide command to split off last token of a token list if it + is a macro with one argument (tagging/1521) + + Split style argument of \@startsection based on type of + last token (tagging/1521) + 2026-08-10 Frank Mittelbach * latex-lab-enumitem.dtx (subsubsection{\cs{newlist}}): diff --git a/required/latex-lab/latex-lab-block.dtx b/required/latex-lab/latex-lab-block.dtx index 64486625e..0ba8335f6 100644 --- a/required/latex-lab/latex-lab-block.dtx +++ b/required/latex-lab/latex-lab-block.dtx @@ -818,12 +818,12 @@ % % \begin{TemplateDescription}{thmstyle}{std} % -% \TemplateKey{separator-1}{tokenlist} +% \TemplateKey{separator-a}{tokenlist} % {Separation to be applied between elements of the heading, % typically a space command of some % sort.}{\textbackslash\textvisiblespace } % -% \TemplateKey{separator-2}{tokenlist} +% \TemplateKey{separator-b}{tokenlist} % {Additional separation to be applied between elements of the % heading, typically a space command of some % sort.}{\textbackslash\textvisiblespace } @@ -849,8 +849,8 @@ % \TemplateKey{order}{commalist} % {Order of elements in the environment caption/heading. Supported % values are \texttt{title}, \texttt{number}, \texttt{punct}, -% \texttt{separator-1}, \texttt{separator-2}, and -% \texttt{note}.}{title,separator-1,number,separator-2,note,punct} +% \texttt{separator-a}, \texttt{separator-b}, and +% \texttt{note}.}{title,separator-a,number,separator-b,note,punct} % % \TemplateKey{title-decls}{tokenlist} % {Declarations that are applied only to the caption @@ -2251,12 +2251,12 @@ % \begin{macrocode} \DeclareInstance{thmstyle}{plain}{std}{ ,caption-placement = unchained - ,separator-1 = \ - ,separator-2 = \ + ,separator-a = \ + ,separator-b = \ ,punct = . ,before-hspace = 0pt ,after-hspace = 5pt plus 1pt minus 1pt - ,order = {title,separator-1,number,separator-2,note,punct} + ,order = {title,separator-a,number,separator-b,note,punct} ,caption-decls = \bfseries ,title-decls = ,number-decls = \upshape @@ -3615,15 +3615,15 @@ % \begin{macrocode} \DeclareTemplateInterface{thmstyle}{std}{4}{ separator : tokenlist = \ - ,separator-1 : tokenlist = \ - ,separator-2 : tokenlist = \ + ,separator-a : tokenlist = \ + ,separator-b : tokenlist = \ ,punct : tokenlist = . ,caption-placement : choice {chained,unchained,standalone} = unchained ,caption-unbreakable : boolean = false ,before-hspace : skip = 0pt ,after-hspace : skip = 5pt - ,order : commalist = {title,separator-1,number,punct, - separator-1,note} + ,order : commalist = {title,separator-a,number,punct, + separator-a,note} ,caption-decls : tokenlist = ,title-decls : tokenlist = ,number-tag : tokenlist = \UseStructureName{block/theorem-like/label} @@ -5677,8 +5677,8 @@ \DeclareTemplateCode{thmstyle}{std}{4} { ,separator = \l_@@_separator_tl % compatibility - ,separator-1 = name {l_@@_separator-1_tl} - ,separator-2 = name {l_@@_separator-2_tl} + ,separator-a = name {l_@@_separator-a_tl} + ,separator-b = name {l_@@_separator-b_tl} ,punct = \l_@@_punct_tl ,caption-placement = { chained = \bool_gset_false:N \g_@@_label_standalone_bool @@ -5753,7 +5753,7 @@ \template_process_order_clist:nnn { block }{ order } { note, number, punct, separator, - separator-1, separator-2, title } + separator-a, separator-b, title } \skip_horizontal:n { \l_@@_caption_after_skip } } } @@ -7198,7 +7198,7 @@ ,before-hspace:e = \tl_if_empty:nTF{#5}{0pt}{#5} ,body-decls = {#4} ,punct = {#7} - ,order = {title,separator-1,number,separator-2,note,punct} + ,order = {title,separator-a,number,separator-b,note,punct} ,number-decls = \upshape ,note-decls = \upshape\mdseries % \end{macrocode} diff --git a/required/latex-lab/latex-lab-firstaid.dtx b/required/latex-lab/latex-lab-firstaid.dtx index 695016764..80718bf8f 100644 --- a/required/latex-lab/latex-lab-firstaid.dtx +++ b/required/latex-lab/latex-lab-firstaid.dtx @@ -15,8 +15,8 @@ % % https://github.com/latex3/latex2e/issues % -\def\ltlabfirstaiddate{2026-08-07} -\def\ltlabfirstaidversion{0.85z} +\def\ltlabfirstaiddate{2026-08-23} +\def\ltlabfirstaidversion{0.86a} %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} @@ -331,8 +331,8 @@ % \begin{macrocode} \DeclareInstance{headformat}{chapter}{display} { - , heading-indent = 0pt %% <-- needed? - , number-title-sep = 18pt + , heading-indent = 0pt + , separator-b = \par \nobreak \vspace{18pt} } % \end{macrocode} % @@ -353,7 +353,7 @@ } \DeclareInstance{headformat}{section}{hang} { - number-title-sep = 0.5em, + separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -375,17 +375,16 @@ , level = 2 , mark-cmd = \subsectionmark{#1} , before-vspace = 0.5\linespacing plus 0.7\linespacing - , after-vspace = 0.5em , heading-decls = \normalfont \bfseries , headformat-instance = subsection , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} - , heading-indent = \normalparindent + , separator-b = \hspace{0.5em} + , heading-indent = \normalparindent } % \end{macrocode} % @@ -396,17 +395,16 @@ , level = 3 , mark-cmd = \subsubsectionmark{#1} , before-vspace = 0pt - , after-vspace = 0.5em , heading-decls = \normalfont \itshape , headformat-instance = subsubsection , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsubsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} - , heading-indent = \normalparindent + , separator-b = \hspace{0.5em} + , heading-indent = \normalparindent } % \end{macrocode} % @@ -422,12 +420,12 @@ , headformat-instance = paragraph , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{paragraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} - , heading-indent = \normalparindent + , separator-b = \hspace{0.5em} + , heading-indent = \normalparindent } % \end{macrocode} % @@ -443,11 +441,11 @@ , headformat-instance = subparagraph , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subparagraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1. + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -486,7 +484,7 @@ } \DeclareInstance{headformat}{part}{hang} { - , number-title-sep = 0.5em + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -506,7 +504,7 @@ } \DeclareInstance{headformat}{section}{hang} { - , number-title-sep = 0.5em + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -529,16 +527,15 @@ , level = 2 , mark-cmd = \subsectionmark{#1} , before-vspace = 0.5\linespacing plus 0.7\linespacing - , after-vspace = 0.5em , heading-decls = \normalfont \bfseries , headformat-instance = subsection , number-format = \theheading . , number-decls = \mdseries \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -549,16 +546,15 @@ , level = 3 , mark-cmd = \subsubsectionmark{#1} , before-vspace = 0.5\linespacing plus 0.7\linespacing - , after-vspace = 0.5em , heading-decls = \normalfont \itshape , headformat-instance = subsubsection , number-format = \theheading . , number-decls = \mdseries \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsubsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -574,11 +570,11 @@ , headformat-instance = paragraph , number-format = \theheading . , number-decls = \mdseries \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{paragraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -594,11 +590,11 @@ , headformat-instance = subparagraph , number-format = \theheading . , number-decls = \mdseries \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subparagraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -631,7 +627,7 @@ } \DeclareInstance{headformat}{part}{hang} { - , number-title-sep = 0.5em + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -651,7 +647,7 @@ } \DeclareInstance{headformat}{section}{hang} { - , number-title-sep = 0.5em + , separator-b = \hspace{0.5em} } % \end{macrocode} % @@ -673,17 +669,16 @@ , level = 2 , mark-cmd = \subsectionmark{#1} , before-vspace = 0.5\linespacing plus 0.7\linespacing - , after-vspace = 0.5em , heading-decls = \normalfont \bfseries , headformat-instance = subsection , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} - , heading-indent = \normalparindent + , separator-b = \hspace{0.5em} + , heading-indent = \normalparindent } % \end{macrocode} % @@ -694,17 +689,16 @@ , level = 3 , mark-cmd = \subsubsectionmark{#1} , before-vspace = 0.5\linespacing plus 0.7\linespacing - , after-vspace = 0.5em , heading-decls = \normalfont \itshape , headformat-instance = subsubsection , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subsubsection}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} - , heading-indent = \normalparindent + , separator-b = \hspace{0.5em} + , heading-indent = \normalparindent } % \end{macrocode} % @@ -720,11 +714,11 @@ , headformat-instance = paragraph , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{paragraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} , heading-indent = \normalparindent } % \end{macrocode} @@ -741,11 +735,11 @@ , headformat-instance = subparagraph , number-format = \theheading . , number-decls = \upshape + , title-format = #1 \AddPunct{.} } \DeclareInstance{headformat}{subparagraph}{runin} { - , number-title-sep = 0.5em - , title-format = #1 \AddPunct{.} + , separator-b = \hspace{0.5em} } % \end{macrocode} % diff --git a/required/latex-lab/latex-lab-minipage.dtx b/required/latex-lab/latex-lab-minipage.dtx index bbdcb4809..25c03bb77 100644 --- a/required/latex-lab/latex-lab-minipage.dtx +++ b/required/latex-lab/latex-lab-minipage.dtx @@ -17,12 +17,14 @@ % % https://github.com/latex3/latex2e/issues % -\def\ltlabminipagedate{2026-04-24} -\def\ltlabminipageversion{0.81k} +\def\ltlabminipagedate{2026-09-05} +\def\ltlabminipageversion{0.81m} %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} \documentclass[kernel]{l3in2edoc} +\usepackage{todonotes} + \EnableCrossrefs \CodelineIndex \begin{document} @@ -47,6 +49,10 @@ % % \providecommand\hook[1]{\texttt{#1}} % +% \NewDocumentCommand\fmi{sO{}m} +% {\IfBooleanTF{#1}{\todo[inline,#2]{#3}}^^A +% {\todo[#2]{#3}}} +% % \begin{abstract} % \end{abstract} % @@ -214,7 +220,7 @@ { \tag_struct_end: \bool_if:NT \l__tag_para_bool - {\tag_struct_begin:n{tag=\UseStructureName{para/textblock}}} + { \tag_struct_begin:n{tag=\UseStructureName{para/textblock}} } \tag_mc_begin_pop:n{} } @@ -229,7 +235,7 @@ { \tag_struct_end: \bool_if:NT \l__tag_para_bool - {\tag_struct_begin:n{tag=\UseStructureName{para/textblock}}} + { \tag_struct_begin:n{tag=\UseStructureName{para/textblock}} } \tag_mc_begin_pop:n{} } % \end{macrocode} diff --git a/required/latex-lab/latex-lab-namespace.dtx b/required/latex-lab/latex-lab-namespace.dtx index c10e5a220..98370dae4 100644 --- a/required/latex-lab/latex-lab-namespace.dtx +++ b/required/latex-lab/latex-lab-namespace.dtx @@ -12,8 +12,8 @@ % https://www.latex-project.org/lppl.txt % %<*package> -\def\ltlabnamesdate{2026-08-12} -\def\ltlabnamesversion{0.8m} +\def\ltlabnamesdate{2026-09-05} +\def\ltlabnamesversion{0.8o} % %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} @@ -182,9 +182,20 @@ semantic-para,Part, pdf2, text-block, P, pdf2, text-fragment,Span, pdf2, % \end{macrocode} +% +% \begin{macrocode} +text-parbox, Div, pdf2, +text-minipage, Div, pdf2, +heading-parbox, Span, pdf2, +heading-minipage,Span, pdf2, +% \end{macrocode} % \subsection{From sec code} +% +% \fmi{don't think this should be called +% \texttt{section-number}. Maybe \texttt{heading-number}?} % \begin{macrocode} -section-number, Span, pdf2, +heading-number, Lbl, pdf2, +heading-fragment, Span, pdf2, % \end{macrocode} % \subsection{From block code} % \begin{macrocode} @@ -273,51 +284,70 @@ tables, Sect, pdf2, \AssignStructureRole{sec/-1}{Part} \NewStructureName{sec/-1/title} \AssignStructureRole{sec/-1/title}{part} -\NewStructureName{sec/-1/titleline} +\NewStructureName{sec/-1/fragment} % \end{macrocode} % Sub does not work as part is rolemapped to Title so we use Span % \begin{macrocode} -\AssignStructureRole{sec/-1/titleline}{Span} +\AssignStructureRole{sec/-1/fragment}{heading-fragment} +% \end{macrocode} +% \fmi{2026/08/22: I have some serious doubts that defining the structure name for the +% /number on a heading level is in any way useful. It certainly +% doesn't fit nicely with the template approach which is why I'm +% currently not using the declarations here.} +% \fmi{2026/09/05: Same for /titleline (which I renamed to fragment because it may +% not be a ``line''). Again I don't think +% it will ever differ for different levels.} +% \begin{macrocode} \NewStructureName{sec/-1/number} -\AssignStructureRole{sec/-1/number}{section-number} +\AssignStructureRole{sec/-1/number}{heading-number} \NewStructureName{sec/0} \AssignStructureRole{sec/0}{Sect} \NewStructureName{sec/0/title} \AssignStructureRole{sec/0/title}{chapter} -\NewStructureName{sec/0/titleline} -\AssignStructureRole{sec/0/titleline}{Span} +\NewStructureName{sec/0/fragment} +\AssignStructureRole{sec/0/fragment}{heading-fragment} \NewStructureName{sec/0/number} -\AssignStructureRole{sec/0/number}{section-number} +\AssignStructureRole{sec/0/number}{heading-number} \NewStructureName{sec/1} \AssignStructureRole{sec/1}{Sect} \NewStructureName{sec/1/title} \AssignStructureRole{sec/1/title}{section} +\NewStructureName{sec/1/fragment} +\AssignStructureRole{sec/1/fragment}{heading-fragment} +\NewStructureName{sec/2/fragment} \NewStructureName{sec/1/number} -\AssignStructureRole{sec/1/number}{section-number} +\AssignStructureRole{sec/1/number}{heading-number} \NewStructureName{sec/2} \AssignStructureRole{sec/2}{Sect} \NewStructureName{sec/2/title} \AssignStructureRole{sec/2/title}{subsection} +\AssignStructureRole{sec/2/fragment}{heading-fragment} \NewStructureName{sec/2/number} -\AssignStructureRole{sec/2/number}{section-number} +\AssignStructureRole{sec/2/number}{heading-number} \NewStructureName{sec/3} \AssignStructureRole{sec/3}{Sect} \NewStructureName{sec/3/title} \AssignStructureRole{sec/3/title}{subsubsection} +\NewStructureName{sec/3/fragment} +\AssignStructureRole{sec/3/fragment}{heading-fragment} \NewStructureName{sec/3/number} -\AssignStructureRole{sec/3/number}{section-number} +\AssignStructureRole{sec/3/number}{heading-number} \NewStructureName{sec/4} \AssignStructureRole{sec/4}{Sect} \NewStructureName{sec/4/title} \AssignStructureRole{sec/4/title}{paragraph} +\NewStructureName{sec/4/fragment} +\AssignStructureRole{sec/4/fragment}{heading-fragment} \NewStructureName{sec/4/number} -\AssignStructureRole{sec/4/number}{section-number} +\AssignStructureRole{sec/4/number}{heading-number} \NewStructureName{sec/5} \AssignStructureRole{sec/5}{Sect} \NewStructureName{sec/5/title} \AssignStructureRole{sec/5/title}{subparagraph} +\NewStructureName{sec/5/fragment} +\AssignStructureRole{sec/5/fragment}{heading-fragment} \NewStructureName{sec/5/number} -\AssignStructureRole{sec/5/number}{section-number} +\AssignStructureRole{sec/5/number}{heading-number} % \end{macrocode} % % \subsubsection{Table of contents and similar} @@ -532,9 +562,14 @@ tables, Sect, pdf2, % \subsubsection{Minipages and parboxes} % \begin{macrocode} \NewStructureName{minipage} -\AssignStructureRole{minipage}{Div} +\AssignStructureRole{minipage}{text-minipage} \NewStructureName{parbox} -\AssignStructureRole{parbox}{Div} +\AssignStructureRole{parbox}{text-parbox} +% \end{macrocode} +% +% \begin{macrocode} +\NewStructureName{sec/parbox} +\AssignStructureRole{sec/parbox}{heading-parbox} % \end{macrocode} % % \subsubsection{Text} diff --git a/required/latex-lab/latex-lab-sec-template.dtx b/required/latex-lab/latex-lab-sec-template.dtx index 1f76274c7..96645eb27 100644 --- a/required/latex-lab/latex-lab-sec-template.dtx +++ b/required/latex-lab/latex-lab-sec-template.dtx @@ -17,8 +17,8 @@ % % https://github.com/latex3/latex2e/issues % -\def\ltlabsecIIdate{2026-08-08} -\def\ltlabsecIIversion{0.9l} +\def\ltlabsecIIdate{2026-09-06} +\def\ltlabsecIIversion{0.9n} %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} @@ -44,6 +44,9 @@ % \newcommand\key[1]{\texttt{#1}} % \newcommand\keyvalue[1]{\texttt{#1}} % +% % \newcommand\insttype[1]{\texttt{#1}} +% % \newcommand\instname[1]{\texttt{#1}} + % % \NewDocumentCommand\fmi{sO{}m} % {\IfBooleanTF{#1}{\todo[inline,#2]{#3}}^^A @@ -114,59 +117,82 @@ % % The following keys can be used % \begin{description} -% \item[\key{toc}] This sets the text for the table of contents. It also forces -% that the entry is created. So +% +% \item[\key{toc}] +% +% This sets the text for the table of +% contents. It also forces that the entry is created. So % \begin{verbatim} % \section*[toc=Introduction]{Introduction to this document} % \end{verbatim} -% will create an unnumbered entry \enquote{Introduction} in the table of contents. -% An empty value (i.e., \texttt{toc=}) will suppress the toc entry. +% will create an unnumbered entry \enquote{Introduction} in the +% table of contents. An empty value (i.e., \texttt{toc=}) will +% suppress the toc entry. +% +% \item[\key{running}] +% +% This sets the text for the running header and forces the use +% of the mark command, so even with a starred section the +% running header will be updated. An empty value will suppress +% the call of the mark commands, so a header from a +% previous section will prevail. +% +% \item[\key{bookmark}] +% +% This sets the text for the bookmarks (the PDF outline) if, +% e.g., hyperref is loaded. As with the previous keys an empty +% value suppresses the bookmark entry. +% +% \item[\key{nameref}] % -% \item[\key{running}] This sets the text for the running header and forces the -% use of the mark command, so even with a starred section the running header will be updated. -% An empty value will suppress the call of the mark commands, so a header from a -% previous section will prevail. +% This allows to set the text used for a cross reference +% with \cs{nameref}. % -% \item[\key{bookmark}] This sets the text for the bookmarks (the PDF outline) -% if, e.g., hyperref is loaded. As with the previous keys an empty value suppresses -% the bookmark entry. +% \item[\key{label}] % -% \item[\key{nameref}] This allows to set the text used for a cross reference -% with \cs{nameref}. +% This sets a label, so it is an alternative to using a +% \cs{label} command. % -% \item[\key{label}] This sets a label, so it is an alternative to using a -% \cs{label} command. +% \item[\key{subtitle}, \key{quote}] % -% \item[\key{subtitle}, \key{quote}] These keys will allow to pass a subtitle and -% a quote to the underlying code, but currently they are not yet used -% by the implementations of the standard \LaTeX{} heading commands. +% These keys will allow to pass a subtitle and a quote to the +% underlying code, but currently they are not yet used by the +% implementations of the standard \LaTeX{} heading commands. % -% \item[\key{shorttitle}] This is the key which is used if the -% optional argument is not of key/val form. So, +% \item[\key{shorttitle}] +% +% This is the key which is used if the optional argument is not +% of key/val form. So, % \begin{verbatim} % \section[short]{long title} % \end{verbatim} -% is the same as +% is the same as % \begin{verbatim} % \section[shortitle=short]{long title} % \end{verbatim} -% The key sets the toc, running, bookmark and nameref text. -% If \key{shorttitle} is used together with any of the individual keys -% (\key{toc}, \key{running}, \key{bookmark}, \key{nameref}) then they overwrite the default -% value provided by \key{shorttitle}. -% -% \item[\key{numbered}, \key{unnumbered}] This allow to control -% the numbering without stopping toc, running head or bookmarks as it would happen -% with the starred version of the heading command. -% -% \item[template keys] Any other key present is assumed to be a key that should -% be passed to the heading instance to overwrite some of its -% settings. So, e.g., +% The key sets the toc, running, bookmark and nameref text. If +% \key{shorttitle} is used together with any of the individual +% keys (\key{toc}, \key{running}, \key{bookmark}, +% \key{nameref}) then they overwrite the default value provided +% by \key{shorttitle}. +% +% \item[\key{numbered}, \key{unnumbered}] +% +% This allow to control the numbering without stopping toc, +% running head or bookmarks as it would happen with the starred +% version of the heading command. +% +% \item[template keys] +% +% Any other key present is assumed to be a key that should be +% passed to the heading instance to overwrite some of its +% settings. So, e.g., % \begin{verbatim} % \section[placement=top,number-format=\fbox{\theheading}]{Title} % \end{verbatim} -% will force the section to start a new page and put the number into an \cs{fbox}. -% For a list of supported keys, check the following parts of the documentation. +% will force the section to start a new page and put the number +% into an \cs{fbox}. For a list of supported keys, check the +% following parts of the documentation. % \end{description} % % \subsection{Class support} @@ -201,47 +227,55 @@ % other headings used by these classes. The current set of % instances is now assumed to reproduce the original % layout. Setting them up revealed a number of interesting -% differences between these classes---not all of them intentional (I -% think). +% differences between these classes---not all of them intentional +% (I think). % % % % \subsection{Changing heading commands}\label{sec:startsection} % -% It is possible to change heading commands by editing the instance they use. -% E.g., in the standard classes one could frame every heading number with +% It is possible to change heading commands by editing the instance +% they use. E.g., in the standard classes one could frame every +% heading number with % \begin{verbatim} % \EditInstance{heading}{section} % {number-format=\fbox{\theheading}} % \end{verbatim} -% The name of the instance (here \texttt{section}) is the same as the heading command. -% -% To support other classes which still setup their heading commands with -% \cs{@startsection} the code has a legacy compatibility layer: the -% \cs{@startsection} command has been redefined to setup instances on-the-fly -% at the first use of a heading command. These instances have names using the -% the first argument of \cs{@startsection} with an attached \texttt{-@startsection}. -% As they are created on-the-fly these internal instances can be only edited -% \emph{after} the first use of the heading command or by declaring (instead of editing) -% an instance with this name in the preamble. Also as the names of the instances -% are built from the first argument of \cs{@startsection} -% it is not possible to define two different heading commands -% of the same level with \cs{@startsection} as that would require two instances with -% different names. The next section describes how to lift this restrictions by converting -% such sectioning commands to use the new interfaces. -% -% \subsection[label=sec:convert]{Converting heading commands defined with \cs{@startsection}} -% -% To convert a heading command defined with \cs{@startsection} to the new interface suitable -% instances must be declared. The same needs to happen if one wants to alter -% the layout of a heading that was defined with \cs{@startsection} in the document preamble. -% How this can be done is demonstrated here with the \cs{section} -% command of the \pkg{ltugboat} class. +% The name of the instance (here \texttt{section}) is the same as +% the heading command. +% +% To support other classes which still setup their heading commands +% with \cs{@startsection} the code has a legacy compatibility +% layer: the \cs{@startsection} command has been redefined to setup +% instances on-the-fly at the first use of a heading command. These +% instances have names using the the first argument of +% \cs{@startsection} with an attached \texttt{-@startsection}. As +% they are created on-the-fly these internal instances can be only +% edited \emph{after} the first use of the heading command or by +% declaring (instead of editing) an instance with this name in the +% preamble. Also as the names of the instances are built from the +% first argument of \cs{@startsection} it is not possible to define +% two different heading commands of the same level with +% \cs{@startsection} as that would require two instances with +% different names. The next section describes how to lift this +% restriction by converting such sectioning commands to use the +% new interfaces. +% +% \subsection[label=sec:convert] +% {Converting heading commands defined with \cs{@startsection}} +% +% To convert a heading command defined with \cs{@startsection} to +% the new interface, suitable instances must be declared. The same +% needs to happen if one wants to alter the layout of a heading +% that was defined with \cs{@startsection} in the document +% preamble. How this can be done is demonstrated here with the +% \cs{section} command of the \pkg{ltugboat} class. % % \subsubsection{Step 1: Getting the template name and the instance values} % -% The sectioning commands use two template \emph{types}, \texttt{heading} and \texttt{headformat}. -% Compile the following document +% The sectioning commands use two template \emph{types}, +% \insttype{heading} and \insttype{headformat}. +% Compile the following document % % \begin{verbatim} % \DocumentMetadata{} @@ -260,41 +294,55 @@ % \begin{verbatim} % The instance 'section-@startsection' of type 'heading' has values: % > level => 1 +% > force-unnumbered => false % > placement => normal +% > column-spanning => false % > mark-cmd => \sectionmark {##1} % > para-indent => false % > before-vspace => 8.0pt plus 2.0pt minus 2.0pt -% > penalty => \c_max_int +% > penalty => \c_max_int % > after-penalty-vspace => 0pt % > after-vspace => 4.0pt -% > start-code => -% > final-code => -% > heading-decls => \tubsecfmt -% > prefix-decls => -% > number-decls => -% > title-decls => -% > subtitle-decls => -% > quote-decls => +% > start-code => +% > final-code => +% > prefix => \NoValue +% > punct => +% > heading-decls => \tubsecfmt +% > prefix-decls => +% > number-decls => +% > title-decls => +% > subtitle-decls => +% > quote-decls => +% > heading-format => ##1 +% > prefix-format => ##1 +% > number-format => ##1 +% > punct-format => ##1 +% > title-format => \use:n {##1} \par +% > subtitle-format => ##1 +% > quote-format => ##1 +% > number-tag => heading-number % > headformat-instance => section-@startsection -% > number-format => \theheading -% > contents-extra => +% > contents-extra => % > name => section % > from template => display. % -% % The instance 'section-@startsection' of type 'headformat' has values: % > heading-indent => 0pt -% > title-format => \tubsecfmt {##1} -% > prefix-number-sep => 0pt -% > number-title-sep => 1em +% > order-hang => prefix,separator-a,?,number,punct,separator-b,? +% > order => title,separator-c,subtitle +% > separator-a => \nobreakspace +% > separator-b => \hspace {1em} +% > separator-c => \ +% > separator-d => % > from template => hang. % \end{verbatim} % % \subsubsection{Step 2: Get the default template values} % -% The last line in both lists show after the \texttt{from template} the names of the -% templates of each type. That can be used to get the default values of these templates. -% Compile the following document:% +% The last line in both lists show after the \texttt{from template} +% the names of the templates of each type. That can be used to get +% the default values of these templates. Compile the following +% document: % \begin{verbatim} % \DocumentMetadata{} % \documentclass{ltugboat} @@ -309,120 +357,156 @@ % \begin{verbatim} % The template 'display' of type 'heading' has default values: % > level => 0 +% > force-unnumbered => false % > placement => normal -% > mark-cmd => +% > column-spanning => false +% > mark-cmd => % > para-indent => false % > before-vspace => 0pt -% > penalty => \c_max_int +% > penalty => \c_max_int % > after-penalty-vspace => 0pt % > after-vspace => 0pt -% > start-code => -% > final-code => -% > heading-decls => \normalfont -% > prefix-decls => -% > number-decls => -% > title-decls => -% > subtitle-decls => -% > quote-decls => +% > start-code => +% > final-code => +% > prefix => \NoValue +% > punct => +% > heading-decls => \normalfont +% > prefix-decls => +% > number-decls => +% > title-decls => +% > subtitle-decls => +% > quote-decls => +% > heading-format => ##1 +% > prefix-format => ##1 +% > number-format => ##1 +% > punct-format => ##1 +% > title-format => ##1\par +% > subtitle-format => ##1 +% > quote-format => ##1 +% > number-tag => heading-number % > headformat-instance => std -% > number-format => \theheading -% > contents-extra => . -% +% > contents-extra => . +% % The template 'hang' of type 'headformat' has default values: % > heading-indent => 0pt -% > title-format => ##1 -% > prefix-number-sep => 0pt -% > number-title-sep => 1em. +% > order-hang => prefix,separator-a,?,number,punct,separator-b,? +% > order => title,separator-c,subtitle +% > separator-a => \nobreakspace +% > separator-b => \hspace {1em} +% > separator-c => \ +% > separator-d => . % \end{verbatim} % -% \subsection{Step 3: Declare the instances} +% \subsubsection{Step 3: Declare the instances} % -% By comparing the instance values with the default values one can see which values -% should be changed in the instance. The names of the new instances can be -% freely chosen best practice is to use the name -% of the heading command (without a backslash). +% By comparing the instance values with the default values one can +% see which values should be changed in the instance. The names of +% the new instances can be freely chosen; best practice is to use +% the name of the heading command (without a backslash). % -% This leads then to these declarations (note that in the \texttt{title-format} \verb+##1+ should -% be changed into \verb+#1+): +% This leads then to these declarations: % \begin{verbatim} -% \DeclareInstance{heading}{section}{display} %#1=heading, #2=name, #3=template name +% \DeclareInstance{heading}{section}{display} % { -% level = 1, -% mark-cmd = \sectionmark{#1}, % remove second hash -% before-vspace = 8.0pt plus 2.0pt minus 2.0pt, -% after-vspace = 4.0pt, -% heading-decls = \tubsecfmt, -% headformat-instance = section, % new name -% } -% \DeclareInstance{headformat}{section}{hang} %#1=heading, #2=name, #3=template name -% { -% title-format = \tubsecfmt {#1} +% level = 1, +% mark-cmd = \sectionmark{#1}, % remove second hash +% before-vspace = 8.0pt plus 2.0pt minus 2.0pt, +% after-vspace = 4.0pt, +% heading-decls = \tubsecfmt, +% headformat-instance = section, % new name % } % \end{verbatim} +% The value for key \key{title-format} seems to have changed as +% well but \verb=\use:n {##1} \par= is really only a fancy way to +% write \verb=##1 \par= so we can keep the default. +% Note, however, that the \verb=##1= have to replaced by \verb=#1= +% when you reenter them. +% +% In case of the \insttype{headformat} instance only default values +% have been used so all that is necessary is: +% \begin{verbatim} +% \DeclareInstance{headformat}{section}{hang}{} +% \end{verbatim} % -% +% Of course, if you do not want to rely on default values you can (for +% clarity) specify all keys and their values in these instances. % % % \subsubsection{Step 4 Redefine the \cs{section} command} % -% Finally, the heading should be defined to use the new interface. +% Finally, the heading command should be defined to use the new +% interface: % \begin{verbatim} % \DeclareDocumentCommand \section {s ={shorttitle}o m} % { \ParseLaTeXeHeading {section} {#1} {#2} {#3} } % \end{verbatim} -% +% What \cs{ParseLaTeXeHeading} does is explained in the next +% section. % % % \section{Setting up \LaTeXe{} heading commands in classes} % -% Heading commands are managed by defining an instance of the -% \texttt{heading} template and then using through \cs{ParseLaTeXeHeading}, e.g., +% Heading commands are managed by defining an instance of a +% \insttype{heading} template which is then used in +% \cs{ParseLaTeXeHeading}, e.g., % \begin{verbatim} % \DeclareDocumentCommand \part {s ={shorttitle}o m} % { \ParseLaTeXeHeading {part} {#1} {#2} {#3} } % \end{verbatim} -% The name of the \texttt{heading} instance is given in the first argument -% of \cs{ParseLaTeXeHeading} and it is recommended that classes use the -% same name as the heading command, to make it easier for users to identify the -% instance to edit if they want to adapt the command. Examples of instances -% that mimic the behavior of the heading commands in the standard classes can be found -% below. Section~\ref{sec:convert} shows how to get instances from commands -% previously defined with \cs{@startsection}. -% -% Legacy setup using \cs{@startsection} remains supported albeit -% not that performant and with some restrictions for the users, -% see section \ref{sec:startsection} above and in the documentation below. -% -% In contrast, \cs{secdef} is only rudimentarly supported. It delegates the -% layout to two commands which can contain arbitrary code (usually -% hardwired) so that there is no realistic chance to automatically take this -% apart and figure out what values should be used for what template -% parameters. We therefore redefine \cs{secdef} and -% map the standard commands \cs{part} -% and \cs{chapter} to the standard instance and error if other uses are detected. -% Classes using \cs{secdef} should setup suitable instances that -% mimic their current layout, an example can be found for the -% ams-classes in \texttt{latex-lab-firstaid.dtx}. +% The name of the \insttype{heading} instance is given in the first +% argument of \cs{ParseLaTeXeHeading} and it is recommended that +% classes use the same name as the heading command, to make it +% easier for users to identify the instance to edit if they want to +% adjust the layout of the heading. Examples of instances that mimic the behavior +% of the heading commands in the standard classes can be found +% below. Section~\ref{sec:convert} shows how to get instances from +% commands previously defined with \cs{@startsection}. +% +% Legacy setup using \cs{@startsection} remains supported albeit +% not that performant and with some restrictions for the users, see +% section \ref{sec:startsection} above and in the documentation +% below. +% +% In contrast, \cs{secdef} is only rudimentarily supported. It +% delegates the layout to two commands which can contain arbitrary +% code (usually hardwired) so that there is no realistic chance to +% automatically take this apart and figure out what values should +% be used for what template parameters. We therefore redefine +% \cs{secdef} and map the standard commands \cs{part} and +% \cs{chapter} to the standard instance and error if other uses are +% detected. Classes using \cs{secdef} should setup suitable +% instances that mimic their current layout, an example can be +% found for the ams-classes in \texttt{latex-lab-firstaid.dtx}. % % % \section{Open points} % % \begin{itemize} -% \item There is no good interface yet to change e.g. the font family of all heading -% commands in one go. -% \item Support for \texttt{titlesec}, see section \ref{sec:titlesec}. +% \item +% +% There is no good interface yet to change e.g. the font family of +% all heading commands in one go. +% +% \item +% +% Support for \pkg{titlesec}, see section \ref{sec:titlesec}. +% % \end{itemize} % +% +% +% +% % \section{Template types and templates for headings} % % The template(s) for headings expect(s) a large number of % positional arguments containing document user data. The -% document-level command, e.g., \cs{section} may not offer all of +% document-level command, e.g., \cs{section}, may not offer all of % them directly, but may do so via a key value interface or not at % all. If no interface is provided then the template is passed -% \cs{NoNalue} . If it is offered via a key value interface, -% the template receives whatever is set by the user (and -% \cs{NoNalue} otherwise). +% \cs{NoNalue}. If it is offered via a key value interface, the +% template receives whatever is set by the user (and \cs{NoNalue} +% otherwise). % % In my initial implementation I had only the main data as % positional arguments, but I came to the conclusion that this @@ -430,12 +514,13 @@ % % \subsection{Template types} % -% The template type \texttt{heading} has 10 data arguments, which is -% more than can be specified as positional arguments. For that +% The template type \insttype{heading} has 10 data arguments, which +% is more than can be specified as positional arguments. For that % reason argument \#9 holds 2 brace groups. The alternative would % be to specify such arguments as keys, but for a number of reasons -% I think the approach to put seldom necessary data arguments all -% in the last positional argument is actually better (besides being faster). +% I think the approach to put seldom used data arguments all +% in the last positional argument is actually better (besides being +% faster). % % \begin{TemplateInterfaceDescription}{heading} % \TemplateArgument{1}{key/value list to alter the default heading parameters} @@ -448,7 +533,9 @@ % \TemplateArgument{8}{label for the heading in the form \cs{label}\{\meta{string}\}} % \TemplateArgument{9}{\{ sub title \} \{ quotation \}} % \TemplateSemantics -% Handles the layout and processing aspects of a heading. +% +% Handles the layout and processing aspects of a heading. This +% includes doing all the work necessary for tagging. % % Whether or not the heading is numbered is governed through a % boolean, expecting the result of an \texttt{s} specification of @@ -481,7 +568,7 @@ % seldom implemented, but if they are the data is available in a % positional argument, which then needs to be taken apart using % \cs{@firstoftwo} (for subtitle) or \cs{@secondoftwo} (for a -% quotation). If no data is provided \cs{NoValue} is used to +% quotation). If no data is provided then \cs{NoValue} is used to % indicate that. % % \end{TemplateInterfaceDescription} @@ -507,21 +594,19 @@ % boolean, e.g., result of an \texttt{s} specification in % \cs{NewDocumentCommand} or equivalent. % -% If there is no prefix, subtitle or quotation then this is indicated +% If there is no prefix, number, subtitle or quotation then this is indicated % with \cs{NoValue}. % -% The template can ignore the \meta{fixed prefix text} in certain -% circumstance (or even always). The templates currently -% implemented to mimic \LaTeXe{} behavior do so in case of -% unnumbered headings. -% Same for \meta{subtitle} and \meta{quotation}: both are always -% ignored by the currently defined templates. +% The templates are currently +% implemented to mimic \LaTeXe{} behavior so if a +% \insttype{heading} template should not number a heading it calls +% a \insttype{headformat} template with both prefix and number set +% to \cs{NoValue}. % -% Note: instead of unnumbered + counter we could just have a single -% argument containing the number representation (or \cs{NoValue} if -% not used). The reason that there are two is that this allows us to -% continue to support \cs{@seccntformat}, but I'm not sure this is a -% good enough reason, so perhaps this is going to change eventually. +% The \meta{subtitle} and \meta{quotation} are always +% ignored by the currently defined templates but that will probably +% change soon, either by extending them or by providing additional +% ones that support these mandatory argument. % % \end{TemplateInterfaceDescription} % @@ -530,22 +615,22 @@ % \subsection{Templates} % % -% \subsubsection{Templates of type \texttt{heading}} +% \subsubsection{Templates of type \insttype{heading}} % % -% There are a number of keys that are expected to be recognized by -% all heading templates (though they may choose not to make use of -% them). These are listed below instead of being repeated on the -% actual templates. +% There are quite a number of keys that are expected to be +% recognized by all heading templates (though they may choose not +% to make use of them). These are listed below instead of being +% repeated on the actual templates. % -% All other keys are either attached to the \texttt{heading} or to -% the \texttt{headformat} templates. Those that typically vary +% All other keys are either attached to the \insttype{heading} or +% to the \insttype{headformat} templates. Those that typically vary % from heading instance to the next (e.g., \key{heading-decls}) are -% all declared in the -% \texttt{heading} templates even if they are actually only used -% within \texttt{headformat} templates. In other words, -% \texttt{headformat} templates have a number of implicit -% variables that they expect to be set.\footnote{Maybe questionable} +% all declared in the \insttype{heading} templates even if they are +% actually only used within \insttype{headformat} templates. In +% other words, \insttype{headformat} templates have a number of +% implicit variables that they expect to be set.\footnote{Maybe +% questionable} % % \changes{0.9h}{2026-07-04}{Support a \texttt{force-unnumbered} key % (tagging/1473)} @@ -589,7 +674,7 @@ % \texttt{normal} (heading can appear anywhere on the % page), % \texttt{ragged} (like \texttt{normal} but if a -% pagebreak is taken before the heading then the +% page break is taken before the heading then the % previous page is set ragged and not stretched). % Further possibilities might be % \texttt{rectopage} and \texttt{rectotop} if we @@ -626,6 +711,11 @@ % by the template (in which case it isn't really a % prefix).} {\cs{NoValue}} % +% \TemplateKey{punct}{tokenlist} +% {A fixed string to be added to the end of the heading +% number, i.e., it shows up in on the heading but not +% in cross-references.} {\meta{empty}} +% % \TemplateKey{mark-cmd}{function(1)} % {Function that receives the \meta{running} argument and % creates a suitable mark insertion} @@ -715,31 +805,56 @@ % of \key{heading-decls}.} % {\meta{empty}} % +% \TemplateKey{heading-format}{function(1)} +% {Code that receives the whole heading as an argument.} +% {\#1} +% \TemplateKey{prefix-format}{function(1)} +% {Code that receives the prefix string as an argument.} +% {\#1} % \TemplateKey{number-format}{function(1)} -% {Code that produces a formatted version of the -% heading number -% including any ornamentations. Its argument is the -% counter name for the head. However, instead of using -% a specific counter representations, e.g., -% \cs{thesection}, it -% can refer to the counter representation for the -% current heading counter via \cs{theheading} and ignore -% the argument.} -% {\cs{theheading}} +% {Code that receives the number string as an argument.} +% {\#1} +% \TemplateKey{punct-format}{function(1)} +% {Code that receives the punctuation string as an argument.} +% {\#1} +% \TemplateKey{title-format}{function(1)} +% {Code that receives the title string as an argument. +% By default it ends in \cs{par} so that \cs{baselineskip} +% changes in the settings (e.g., in \key{title-decls}) +% are applied} +% {\#1 \cs{par}} +% \TemplateKey{subtitle-format}{function(1)} +% {Code that receives the subtitle string as an argument.} +% {\#1} +% \TemplateKey{quote-format}{function(1)} +% {Code that receives the quote string as an argument.} +% {\#1} +% \TemplateKey{number-tag}{tokenlist} +% {Name of the tag to put around the number (empty means +% no tag).} +% {heading-number} % +% \TemplateKey{headformat-instance}{instance} +% {Template instances of type \insttype{headformat}} +% {std} % \TemplateKey{contents-extra}{tokenlist} % {Code containing \cs{addcontents} calls to write to % files like \texttt{.lot} or \texttt{.lot}} % {\meta{empty}} % % -% \TemplateKey{headformat-instance}{instance} -% {Template instances of type \texttt{headformat}} -% {std} -% % \TemplateSemantics % -% Several of the key names are simply bad and need revision! +% The key \key{heading-decls} determines the overall +% \cs{baselineskip} used in the heading. Font changes in individual +% declarations do not have that effect, because they are all +% executed in groups and if if all elements are within the same +% paragraph then the final \cs{par} after the heading comes too +% late. If you want that the font setting for a specific key, e.g., +% \key{title}, depends on the font setting in \key{title-decls} you +% have to ensure that a \cs{par} happens within \key{title-format} +% key, e.g., \key{title-format}\texttt{=\#1\cs{par}} (which is what +% happens in the default value of \key{title-format}). % \end{TemplateDescription} % % @@ -765,15 +880,18 @@ % also applied if the heading is a \texttt{page} or \texttt{top} heading.} % {0pt} % -% \TemplateKey{after-vspace}{skip} -% {Vertical space after the heading -- ignored in runin -% headings so should be dropped!} -% {0pt} +% \TemplateKey{after-hspace}{skip} +% {Horizontal space after the heading.}{0pt} % % \TemplateKey{heading-decls}{tokenlist} % {Declarations (such as font or color settings) applied % to all heading elements, i.e., number, title, -% subtitle, and quotation, if present.} +% subtitle, and quotation, if present. +% Note that color commands (unless \pkg{luacolor} is used) +% introduce a break point before the heading and therefore one should either +% surround color commands with \cs{SaveLastSkip} and \cs{RestoreLastSkip} or +% to use the keys \texttt{prefix-decls}, \texttt{number-decls}, +% \texttt{title-decls}, etc.\ instead.} % {\cs{normalfont}} % % \TemplateKey{prefix-decls}{tokenlist} @@ -806,174 +924,224 @@ % of \key{heading-decls}.} % {\meta{empty}} % +% \TemplateKey{heading-format}{function(1)} +% {Code that receives the whole heading as an argument.} +% {\#1} +% \TemplateKey{prefix-format}{function(1)} +% {Code that receives the prefix string as an argument.} +% {\#1} % \TemplateKey{number-format}{function(1)} -% {Code that produces a formatted version of the -% heading number -% including any ornamentations. Its argument is the -% counter name for the head. However, instead of using -% a specific counter representations, e.g., -% \cs{thesection}, it -% can refer to the counter representation for the -% current heading counter via \cs{theheading} and ignore -% the argument.} -% {\cs{theheading}} +% {Code that receives the number string as an argument.} +% {\#1} +% \TemplateKey{punct-format}{function(1)} +% {Code that receives the punctuation string as an argument.} +% {\#1} +% \TemplateKey{title-format}{function(1)} +% {Code that receives the title string as an argument. +% Since this is a runin heading we should remain in +% horizontal mode so the default does not include a +% \cs{par}.} +% {\#1} +% \TemplateKey{subtitle-format}{function(1)} +% {Code that receives the subtitle string as an argument.} +% {\#1} +% \TemplateKey{quote-format}{function(1)} +% {Code that receives the quote string as an argument.} +% {\#1} +% \TemplateKey{number-tag}{tokenlist} +% {Name of the tag to put around the number (empty means +% no tag).} +% {heading-number} % % \TemplateKey{headformat-instance}{instance} -% {Template instances of type \texttt{headformat}} +% {Template instances of type \insttype{headformat}} % {std} +% \TemplateKey{contents-extra}{tokenlist} +% {Code containing \cs{addcontents} calls to write to +% files like \texttt{.lot} or \texttt{.lot}} +% {\meta{empty}} % % \TemplateSemantics % -% Several of the key names are simply bad and need revision! +% The runin template is fairly similar to the display one. Main +% differences are due to the fact that we stay in horizontal mode +% at the end of the heading so that we have \key{after-hspace} +% instead of \key{after-vspace} and we do not have a \cs{par} +% inside \key{title-format}. +% % \end{TemplateDescription} % % % % -% \subsubsection{Templates of type \texttt{headformat}} +% \subsubsection{Templates of type \insttype{headformat}} % -% At the moment all templates of this type assume that placement of -% prefix, number, title is done in exactly this order. Anything -% else would require defining further templates. +% The \insttype{headformat} templates deal with positioning prefix, +% number, punct, title, subtitle and quote. If the heading is unnumbered +% then prefix, number and punct are expected to be \cs{NoValue} (this +% is arranged in the calling \insttype{heading} template). % -% TODO: consider a more versatile mechanism (like in theorem-like -% templates) to allow for more flexible placements without the need -% to define additional templates. There is now the new order key -% mechanism to make this happen so the templates are going to -% change soon (and will different keys and some additional ones)! +% Tagging is taken care of in the calling template as well, all the +% the \insttype{headformat} templates do is opening and closing +% MCs as necessary. % -% \begin{TemplateDescription}{headformat}{hang} +% The templates make use of the generic order key mechanism. +% +% +% \begin{TemplateDescription}{headformat}{display} % % \TemplateKey{heading-indent}{dimen} % {Horizontal space before the heading (shifting it to % the right in a LR typesetting context)} % {0pt} % -% \TemplateKey{title-format}{tokenlist} -% {Code executed directly before the heading is typeset -% and after the vertical spacing is done. The code takes an argument, -% e.g., \cs{MakeUppercase}} -% {\meta{\#1}} -% -% \TemplateKey{prefix-number-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title prefix (if used) and title number. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font.} -% {.5em} +% \TemplateKey{order}{commalist} +% {Order of elements that form the heading. Some of the +% separators are dropped if the previous element is +% \cs{NoValue}, e.g., \key{separator-a} and +% \key{separator-b}. +% The key{quote} key is currently ignored.} +% {prefix, separator-a, ?, number, punct, separator-b, ?, +% title, separator-c, subtitle} +% +% \TemplateKey{separator-a}{tokenlist} +% {By default the separation between \key{prefix} and +% \key{number}.} +% {\cs{nobreakspace}} +% +% \TemplateKey{separator-b}{tokenlist} +% {By default the separation between \key{punct} and +% \key{title}. The default starts a new line with extra +% vertical space.} +% {\cs{par} \cs{nobreak} \cs{vspace}\{20pt\}} +% +% \TemplateKey{separator-c}{tokenlist} +% {By default the separation between \key{title} and +% \key{subtitle}.} +% {\cs{ }} +% +% \TemplateKey{separator-d}{tokenlist} +% {By default not used.} +% {\meta{empty}} % -% \TemplateKey{number-title-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title number and title text. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font.} -% {1em} % % \TemplateSemantics % -% Implements a heading layout where number and title start on the -% same line and the title is hanging off from that if the title -% has more than one line. It is what \LaTeX{} always used by -% default for \cs{section}, \cs{subsection}, and -% \cs{subsubsection}. +% Implements a heading layout where number and title are vertically +% separated. It is what \LaTeX{} always used by default for +% \cs{chapter} and \cs{part}. +% +% This template can be called from the \insttype{heading} +% \instname{display} template. It is not suitable for use with the +% \instname{runin} template. % -% Several of the key names are simply bad and need a revision! % \end{TemplateDescription} % % -% \begin{TemplateDescription}{headformat}{runin} +% \begin{TemplateDescription}{headformat}{hang} % % \TemplateKey{heading-indent}{dimen} % {Horizontal space before the heading (shifting it to % the right in a LR typesetting context)} % {0pt} % -% \TemplateKey{title-format}{tokenlist} -% {Code executed directly before the heading is typeset -% and after the vertical spacing is done. The code can take an argument, -% e.g., \cs{MakeUppercase}} +% \TemplateKey{order-hang}{commalist} +% {Order of elements of the heading that are used to form +% the hanging indentation (and are placed in that +% space).} +% {prefix, separator-a, ?, number, punct, separator-b, ?} +% +% \TemplateKey{order}{commalist} +% {Order of remaining headings elements. +% The key{quote} key is currently not used.} +% {title, separator-c, subtitle} +% +% \TemplateKey{separator-a}{tokenlist} +% {By default the separation between \key{prefix} and +% \key{number}.} +% {\cs{nobreakspace}} +% +% \TemplateKey{separator-b}{tokenlist} +% {By default the horizontal separation after \key{punct} still +% being counted in the hanging indentation} +% {\cs{hspace}\{1em\}} +% +% \TemplateKey{separator-c}{tokenlist} +% {By default the separation between \key{title} and +% \key{subtitle}.} +% {\cs{ }} +% +% \TemplateKey{separator-d}{tokenlist} +% {By default not used.} % {\meta{empty}} % -% \TemplateKey{prefix-number-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title prefix (if used) and title number. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font.} -% {.5em} -% -% \TemplateKey{number-title-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title number and title text. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font. -% -% In the hang template it is a horizontal dimension!} -% {1em} % % \TemplateSemantics % % Implements a heading layout where number and title start on the -% same line but then continue with the following paragraph on the -% same line (or the next if the title overflows, i.e., the title is -% run-in. It is what \LaTeX{} always used by default for -% \cs{paragraph} and \cs{subparagraph}. +% same line and the title is hanging off from that if the title +% has more than one line. It is what \LaTeX{} always used by +% default for \cs{section}, \cs{subsection}, and +% \cs{subsubsection}. +% +% This template can be called from the \insttype{heading} +% \instname{display} template. It is not suitable for use with the +% \instname{runin} template. % -% Several of the key names are simply bad and need a revision! % \end{TemplateDescription} % % -% \begin{TemplateDescription}{headformat}{display} +% \begin{TemplateDescription}{headformat}{runin} % % \TemplateKey{heading-indent}{dimen} % {Horizontal space before the heading (shifting it to % the right in a LR typesetting context)} % {0pt} -% \TemplateKey{title-format}{tokenlist} -% {Code executed directly before the heading is typeset -% and after the vertical spacing is done. The code can take an argument, -% e.g., \cs{MakeUppercase}} -% {\meta{\#1}} % -% \TemplateKey{prefix-number-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title prefix (if used) and title number. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font.} -% {.5em} +% \TemplateKey{order}{commalist} +% {Order of elements that form the heading. Some of the +% separators are dropped if the previous element is +% \cs{NoValue}, e.g., \key{separator-a} and +% \key{separator-b}. +% The key{quote} key is currently ignored.} +% {prefix, separator-a, ?, number, punct, separator-b, ?, +% title, separator-c, subtitle} +% +% \TemplateKey{separator-a}{tokenlist} +% {By default the separation between \key{prefix} and +% \key{number}.} +% {\cs{nobreakspace}} +% +% \TemplateKey{separator-b}{tokenlist} +% {By default the separation between \key{punct} and +% \key{title}. The default starts a new line with extra +% vertical space.} +% {\cs{hspace}\{1em\}} +% +% \TemplateKey{separator-c}{tokenlist} +% {By default the separation between \key{title} and +% \key{subtitle}.} +% {\cs{ }} +% +% \TemplateKey{separator-d}{tokenlist} +% {By default not used.} +% {\meta{empty}} % -% \TemplateKey{number-title-sep}{tokenlist} -% {Token list that can be used in the assignment to a -% \TeX{} dimension (can contain \texttt{em} or -% \texttt{ex} values) specifying the separation between -% title number and title text. Evaluated after fonts for -% title text have been set up, i.e., the \texttt{em} will be based -% on the then current font. -% \endgraf -% In the display template it is a vertical dimension!} -% {20 pt} % % \TemplateSemantics % -% Implements a heading layout where number and title are vertically -% separated. It is what \LaTeX{} always used by default for -% \cs{chapter} and \cs{part}. +% Implements a heading layout where text after the heading +% continues on the same line as the heading. It is what \LaTeX{} +% always used by default for +% \cs{paragraph} and \cs{subparagraph}. % -% Several of the key names are simply bad and need a revision! +% This template is intended to be used with the \insttype{heading} +% \instname{runin} template (but could perhaps also be used with +% \instname{display}). % \end{TemplateDescription} % % % -% % \subsection{Default instances} % % These instances are set up to mimic the design of the standard @@ -981,7 +1149,7 @@ % changing the instance values and/or by basing them on a different % template. % -% \subsubsection{Instances of \texttt{heading} templates} +% \subsubsection{Instances of \insttype{heading} templates} % % \begin{description} % @@ -1009,43 +1177,105 @@ % \end{description} % % -% \subsubsection{Instances of \texttt{headformat} templates} +% \subsubsection{Instances of \insttype{headformat} templates} % % \begin{description} % % \item[\texttt{part} (instance of \texttt{display} template)] Used in -% \texttt{heading} instance for \cs{part}. +% \insttype{heading} instance for \cs{part}. % % \item[\texttt{chapter} (instance of \texttt{display} template)] Used in -% \texttt{heading} instance for \cs{chapter}. By default identical +% \insttype{heading} instance for \cs{chapter}. By default identical % to the one used for \cs{part}. % -% \item[\texttt{std} (instance of \texttt{hang} template)] Used as +% \item[\texttt{std} (instance of \insttype{hang} template)] Used as % default in the heading template if nothing else is specified. % -% \item[\texttt{section} (instance of \texttt{hang} template)] Used in -% \texttt{heading} instance for \cs{section}. By default identical +% \item[\texttt{section} (instance of \insttype{hang} template)] Used in +% \insttype{heading} instance for \cs{section}. By default identical % to the \texttt{std} instance. % -% \item[\texttt{subsection} (instance of \texttt{hang} template)] Used in -% \texttt{heading} instance for \cs{subsection}. By default identical +% \item[\texttt{subsection} (instance of \insttype{hang} template)] Used in +% \insttype{heading} instance for \cs{subsection}. By default identical % to the \texttt{std} instance. % -% \item[\texttt{subsubsection} (instance of \texttt{hang} template)] Used in -% \texttt{heading} instance for \cs{subsubsection}. By default identical +% \item[\texttt{subsubsection} (instance of \insttype{hang} template)] Used in +% \insttype{heading} instance for \cs{subsubsection}. By default identical % to the \texttt{std} instance. % % \item[\texttt{paragraph} (instance of \texttt{runin} template)] Used in -% \texttt{heading} instance for \cs{paragraph}. +% \insttype{heading} instance for \cs{paragraph}. % % \item[\texttt{subparagraph} (instance of \texttt{runin} template)] Used in -% \texttt{heading} instance for \cs{subparagraph}. +% \insttype{heading} instance for \cs{subparagraph}. % % \end{description} % % % % +% \subsection{Use of templates from the 2026-06-01 release of \LaTeX{}} +% +% In the first heading implementation using templates we provided a +% number of somewhat restricted templates that covered the default +% layouts of standard \LaTeX{} classes but not much beyond this. +% +% For the 2026-11-01 release we have replaced them with more +% general templates described above that use the general order key +% mechanism. As a side effect the new templates have some +% additional keys and some keys used in the templates of first +% implementation got dropped. +% +% For the next couple of releases we will keep the original +% templates available (only renamed to +% \meta{name}\texttt{-v1}). Eventually, we want to drop the +% \texttt{-v1} versions but for the next couple of releases we +% provide them alongside the new more flexible templates, so that +% there is no need to transitioning to the new +% templates in a rush. +% +% If you have defined instances using the first template version +% then you can (for now) continue to use them simply by changing +% the template names in your instance declarations from \meta{name} +% to \meta{name}\texttt{-v1}, e.g., you have to change from +%\begin{verbatim} +% \DeclareInstance{heading} {chapter}{display} { ... } +% \DeclareInstance{headformat}{chapter}{display} { ... } +% +% \DeclareInstance{heading} {section}{hang} { ... } +% \DeclareInstance{headformat}{section}{hang} { ... } +% ... +%\end{verbatim} +% to +%\begin{verbatim} +% \DeclareInstance{heading} {chapter}{display-v1} { ... } +% \DeclareInstance{headformat}{chapter}{display-v1} { ... } +% +% \DeclareInstance{heading} {section}{hang-v1} { ... } +% \DeclareInstance{headformat}{section}{hang-v1} { ... } +% ... +%\end{verbatim} +% No other changes are necessary for now. However, going forward +% you should switch to the extended templates because the +% \texttt{-v1} templates will eventually be dropped. +% +% Switching mainly means stopping the use of the keys +% \key{prefix-number-sep} and \key{number-title-sep} because they +% have been replaced with the more general \key{separator-a}, +% \key{separator-b}, \ldots\ keys.\footnote{There are some more +% changes in the keys, but it is less likely that they have been +% used. If necessary, compare the documentation for the old and the +% new templates to find out what else needs adjusting.} +% +% The template documentation for these deprecated templates is +% available as part of Appendix~\ref{appendix:a} in case you need +% to consult it in order to update your template instance +% declarations to use the new templates. Please do not use these +% templates for new work, as they will eventually get removed. +% +% +% +% % \section{Support for legacy classes and packages} % % \subsection{Support classes based on legacy \LaTeXe{} interfaces} @@ -1059,8 +1289,8 @@ % display or runin heading and that of \meta{afterskip} whether or % not the next paragraph is indented. % -% All arguments can be cleanly mapped to \texttt{heading} and -% \texttt{headformat} templates. Thus, if encountered suitable +% All arguments can be cleanly mapped to \insttype{heading} and +% \insttype{headformat} templates. Thus, if encountered suitable % instances are automatically declared unless they already exist. % % @@ -1291,18 +1521,18 @@ % \begin{variable}{ % \l_@@_label_tl, % \l_@@_instance_keys_tl, -% \l_@@_typeset_number_tl, +% \l_@@_number_tl, % \l_@@_saved_secnumdepth_tl, % \l_@@_title_tl, % \l_@@_placement_tl} % -% But this token lists needs a declaration: +% But these token lists needs a declaration: % % \begin{macrocode} -\tl_new:N\l_@@_label_tl -\tl_new:N\l_@@_instance_keys_tl -\tl_new:N\l_@@_typeset_number_tl -\tl_new:N\l_@@_saved_secnumdepth_tl +\tl_new:N \l_@@_label_tl +\tl_new:N \l_@@_instance_keys_tl +\tl_new:N \l_@@_number_tl +\tl_new:N \l_@@_saved_secnumdepth_tl \tl_new:N \l_@@_title_tl \tl_new:N \l_@@_placement_tl % \end{macrocode} @@ -1338,7 +1568,7 @@ % % % \begin{macro}{\ParseLaTeXeHeading} -% +%^^A % \cs{ParseLaTeXeHeading} arguments: % \begin{itemize} % \item[1:] instance name to use (of type \enquote{heading}) @@ -1378,14 +1608,12 @@ % star was given) they are all suppressed (because this is the \LaTeXe{} logic). % \begin{macrocode} \IfBooleanTF{#2} - { - \tl_clear:N \l_@@_toc_tl + { \tl_clear:N \l_@@_toc_tl \tl_clear:N \l_@@_running_tl \tl_clear:N \l_@@_bookmark_tl \bool_set_true:N \l_@@_unnumbered_bool } - { - \tl_set_eq:NN \l_@@_toc_tl \l_@@_title_tl + { \tl_set_eq:NN \l_@@_toc_tl \l_@@_title_tl \tl_set_eq:NN \l_@@_running_tl \l_@@_title_tl \tl_set_eq:NN \l_@@_bookmark_tl \l_@@_title_tl \bool_set_false:N \l_@@_unnumbered_bool @@ -1491,8 +1719,7 @@ % had no label and we set the two variables accordingly. % \begin{macrocode} \quark_if_no_value:nTF {#2} - { - \@@_debug_typeout:n{---~no~label } + { \@@_debug_typeout:n{---~no~label } \tl_clear:N \l_@@_label_tl \tl_set:Nn\l_@@_title_tl {#1#3} } @@ -1500,8 +1727,7 @@ % Otherwise, there was a real \cs{label} command and \texttt{\#2} % holds the label string. % \begin{macrocode} - { - \@@_debug_typeout:n{---~label~found~#2} + { \@@_debug_typeout:n{---~label~found~#2} \tl_set:Nn\l_@@_label_tl { \label{#2} } % \end{macrocode} % To construct the value for \cs{l_@@_title_tl} we have to get rid @@ -1529,8 +1755,7 @@ % up the newly found \cs{label} and recurse on the remaining material. % \begin{macrocode} \quark_if_no_value:nF {#2} - { - \@@_debug_typeout:n{---~ extra~ label~ '#2'~ found } + { \@@_debug_typeout:n{---~ extra~ label~ '#2'~ found } \tl_put_right:Nn \l_@@_label_tl { \label{#2} } \@@_find_label_aux:w #3\@@_find_label_aux:w } @@ -1652,7 +1877,7 @@ % \subsubsection{Template types} % % \begin{templatetype}{heading} -% Templates of type \texttt{heading} are used to produce headings. The +% Templates of type \insttype{heading} are used to produce headings. The % positional arguments are: % \begin{verbatim} % 1: key/val list @@ -1671,7 +1896,7 @@ % \end{templatetype} % % \begin{templatetype}{headformat} -% Templates of type \texttt{headformat} are used to produce heading +% Templates of type \insttype{headformat} are used to produce heading % layout from the formatted heading number (if any), the heading title, % subtitle and quotation. The % positional arguments are: @@ -1688,6 +1913,11 @@ % \end{macrocode} % \end{templatetype} % +% +% +% +% +% % \subsubsection{heading templates interfaces} % % We have two heading templates: display and runin. @@ -1717,8 +1947,9 @@ , placement : choice {page , top , normal, ragged } = normal , column-spanning : boolean = false , mark-cmd : function(1) = - % - % many more keys for layout settings are missing for now +% \end{macrocode} +% +% \begin{macrocode} , para-indent : choice { true , false } = false % \end{macrocode} % We use \cs{c_max_int} as a fake penalty to indicate that no @@ -1737,10 +1968,15 @@ , final-code : tokenlist = % no default values! % \end{macrocode} % A prefix string such as \cs{@chappap} could be specified in the -% next variable. By default is has no value. +% next variable. By default it has no value. % \begin{macrocode} , prefix : tokenlist = \NoValue % \end{macrocode} +% A postfix string to be added to the heading number (if the +% heading is numbered). By default empty (not \cs{NoValue})! +% \begin{macrocode} + , punct : tokenlist = +% \end{macrocode} % % \begin{macrocode} , heading-decls : tokenlist = \normalfont @@ -1750,10 +1986,25 @@ , subtitle-decls : tokenlist = , quote-decls : tokenlist = % \end{macrocode} +% +% \begin{macrocode} + , heading-format : function{1} = #1 + , prefix-format : function{1} = #1 + , number-format : function{1} = #1 + , punct-format : function{1} = #1 + , title-format : function{1} = #1 \par + , subtitle-format : function{1} = #1 + , quote-format : function{1} = #1 +% \end{macrocode} +% Not clear where this key should live and if it really makes sense +% to offer variations on the individual heading levels as in +% \verb=\UseStructureName{sec/???/number}=. +% \begin{macrocode} + , number-tag : tokenlist = heading-number % \UseStructureName{sec/???} +% \end{macrocode} % % \begin{macrocode} , headformat-instance : tokenlist = std - , number-format : function(1) = \theheading , contents-extra : tokenlist = } % \end{macrocode} @@ -1773,7 +2024,47 @@ % code setup still needs to be done using \cs{DeclareTemplateCode}. % % \begin{macrocode} -\DeclareTemplateCopy{heading}{runin}{display} +\DeclareTemplateInterface{heading}{runin}{9} +{ + , name : tokenlist + , parent-name : tokenlist + , reset-counter : tokenlist + , level : integer = 0 + , force-unnumbered : boolean = false + , placement : choice {page , top , normal, ragged } = normal + , column-spanning : boolean = false + , mark-cmd : function(1) = + , para-indent : choice { true , false } = false + , before-vspace : skip = 0pt + , penalty : integer = \c_max_int + , after-penalty-vspace : skip = 0pt + , after-hspace : skip = 0pt + , start-code : tokenlist = % no default values! + , final-code : tokenlist = % no default values! + , prefix : tokenlist = \NoValue + , punct : tokenlist = + , heading-decls : tokenlist = \normalfont + , prefix-decls : tokenlist = + , number-decls : tokenlist = + , title-decls : tokenlist = + , subtitle-decls : tokenlist = + , quote-decls : tokenlist = + , heading-format : function{1} = #1 + , prefix-format : function{1} = #1 + , number-format : function{1} = #1 + , punct-format : function{1} = #1 +% \end{macrocode} +% We have one difference in the defaults: in runin headings +% everything has to stay in horizontal mode so we do not append +% \cs{par} in the default value for \key{title-format}. +% \begin{macrocode} + , title-format : function{1} = #1 + , subtitle-format : function{1} = #1 + , quote-format : function{1} = #1 + , number-tag : tokenlist = heading-number % \UseStructureName{sec/???} + , headformat-instance : tokenlist = std + , contents-extra : tokenlist = +} % \end{macrocode} % \end{template} % @@ -1782,45 +2073,71 @@ % We have three template: display, hang and runin. % % \begin{template}{headformat display} -% The \texttt{display} template produces +% The \instname{display} template produces a heading in which the +% heading elements form a single block, potentially with separators +% that separates some elements vertically from the other. % \begin{macrocode} \DeclareTemplateInterface{headformat}{display}{6} { , heading-indent : length = 0pt - , title-format : function(1) = #1 - , prefix-number-sep : tokenlist = \WordSpaceAmount{1} - , number-title-sep : tokenlist = 20pt +% + , order : commalist = {prefix,separator-a,?,number,punct, + separator-b,?,title, + separator-c, subtitle} + , separator-a : tokenlist = \nobreakspace + , separator-b : tokenlist = \par \nobreak \vspace{20pt} + , separator-c : tokenlist = \ + , separator-d : tokenlist = } % \end{macrocode} % \end{template} % % \begin{template}{headformat hang} -% The \texttt{hang} template produces +% The \texttt{hang} template produces a heading where some elements +% are measured to determine a hanging indentation while the +% remaining ones are then typeset in that constrained space. This +% is why we have two order keys. % \begin{macrocode} \DeclareTemplateInterface{headformat}{hang}{6} { , heading-indent : length = 0pt - , title-format : function(1) = #1 - , prefix-number-sep : tokenlist = \WordSpaceAmount{1} - , number-title-sep : tokenlist = 1em + , order-hang : commalist = {prefix,separator-a,?,number,punct, + separator-b,?} + , order : commalist = {title, separator-c, subtitle} + , separator-a : tokenlist = \nobreakspace + , separator-b : tokenlist = \hspace{1em} + , separator-c : tokenlist = \ + , separator-d : tokenlist = } % \end{macrocode} % \end{template} % % % \begin{template}{headformat runin} -% The \texttt{runin} template produces +% The \texttt{runin} template produces a heading which is +% horizontally oriented and text following the heading will +% continue on the same line as the heading. % \begin{macrocode} \DeclareTemplateInterface{headformat}{runin}{6} { , heading-indent : length = 0pt - , title-format : function(1) = #1 - , prefix-number-sep : tokenlist = \WordSpaceAmount{1} - , number-title-sep : tokenlist = 1em + , order : commalist = {prefix,separator-a,?,number,punct, + separator-b,?,title, + separator-c,subtitle} + , separator-a : tokenlist = \nobreakspace + , separator-b : tokenlist = \hspace{1em} + , separator-c : tokenlist = \ + , separator-d : tokenlist = } % \end{macrocode} % \end{template} % +% +% +% +% +% +% % \subsubsection{heading templates code} % % \begin{template}{heading display} @@ -1887,7 +2204,8 @@ % \end{macrocode} % % \begin{macrocode} - , prefix = \l_@@_typeset_prefix_tl + , prefix = \l_@@_prefix_tl + , punct = \l_@@_punct_tl % \end{macrocode} % % \begin{macrocode} @@ -1901,8 +2219,22 @@ , title-decls = \l_@@_title_decls_tl , subtitle-decls = \l_@@_subtitle_decls_tl , quote-decls = \l_@@_quote_decls_tl - , number-format = \@@_number_format:n - , contents-extra = \l_@@_contents_extra_tl +% \end{macrocode} +% +% \begin{macrocode} + , heading-format = \@@_heading_format:n + , prefix-format = \@@_prefix_format:n + , number-format = \@@_number_format:n + , punct-format = \@@_punct_format:n + , title-format = \@@_title_format:n + , subtitle-format = \@@_subtitle_format:n + , quote-format = \@@_quote_format:n +% + , number-tag = \l_@@_number_tag_tl +% \end{macrocode} +% +% \begin{macrocode} + , contents-extra = \l_@@_contents_extra_tl } % \end{macrocode} % @@ -1929,7 +2261,7 @@ % implicit, e.g., \cs{SetCurrentTemplateKeys} because this is % usually what I need.} % \begin{macrocode} - \tl_if_empty:oF {#1} { \SetTemplateKeys{heading}{display}{#1} } + \SetKnownTemplateKeys{heading}{display}{#1} % \end{macrocode} % % If \key{column-spanning} is requested but we are not typesetting @@ -1940,8 +2272,7 @@ % (tagging/1436)} % \begin{macrocode} \bool_if:NT \l_@@_column_spanning_bool - { - \if@twocolumn + { \if@twocolumn \str_if_eq:VnF \l_@@_placement_tl {top} { \@@_debug_typeout:n {column-spanning~ requires~ @@ -1967,26 +2298,24 @@ % Straight from the placement definition of \cs{part}.\fmi{Clearly not % \cs{@tempswa} and the page styles should be adjustable.} % \begin{macrocode} - { - \if@openright - \cleardoublepage - \else - \clearpage - \fi - \thispagestyle{plain}% - \if@twocolumn - \onecolumn - \@tempswatrue - \else - \@tempswafalse - \fi - \null\vfil + { \if@openright + \cleardoublepage + \else + \clearpage + \fi + \thispagestyle{plain}% + \if@twocolumn + \onecolumn + \@tempswatrue + \else + \@tempswafalse + \fi + \null\vfil } } { top } { \tl_set:Nn \l_@@_start_code_tl - { - \if@openright\cleardoublepage\else\clearpage\fi + { \if@openright\cleardoublepage\else\clearpage\fi \thispagestyle{plain}% \global\@topnum\z@ } @@ -2013,8 +2342,7 @@ { { page } { \tl_set:Nn \l_@@_final_code_tl - { - \vfil\newpage + { \vfil\newpage \if@twoside \if@openright \null @@ -2045,12 +2373,14 @@ % \begin{macrocode} \@@_vertical_before_spacing: % \end{macrocode} -% We are in vmode now and here is the point where we (with tagging) can close a previous Sect -% structure and open the new one. +% We are in vmode now and here is the point where we (with tagging) +% can close a previous Sect structure and open the new one. % \begin{macrocode} \UseTaggingSocket{sec/end}{\int_use:N\l_@@_level_int} \UseTaggingSocket{sec/begin} - {{\int_use:N\l_@@_level_int}{tag=\UseStructureName{sec/\int_use:N\l_@@_level_int}}} + {{\int_use:N\l_@@_level_int} + {tag=\UseStructureName{sec/\int_use:N\l_@@_level_int}} + } % \end{macrocode} % Up to this point everything is identical for both display and % runin headings. But from now on they have their own code. @@ -2059,7 +2389,7 @@ % \begin{macrocode} \@@_debug_typeout:n{use~ 'headformat'~instance:~ \l_@@_headformat_instance_tl } - \use:e { + \UseTaggingSocket{sec/title/begin}{{\int_use:N\l_@@_level_int}{#3}} % \end{macrocode} % % As long as we don't have a decent interface for the OR we have to @@ -2071,6 +2401,7 @@ % \changes{0.9h}{2026-06-21}{Support \texttt{column-spanning} key % (tagging/1436)} % \begin{macrocode} + \use:e { \bool_if:NT \l_@@_column_spanning_bool { \exp_not:n { \@topnewpage [ @@ -2080,8 +2411,8 @@ } \UseInstance{headformat} { \l_@@_headformat_instance_tl } { \exp_not:o \UnusedTemplateKeys } - { \exp_not:o { \l_@@_typeset_prefix_tl } } - { \exp_not:o { \l_@@_typeset_number_tl } } + { \exp_not:o { \l_@@_prefix_tl } } + { \exp_not:o { \l_@@_number_tl } } { \exp_not:n { #3 } } { \exp_not:o { \use_i:nn #9 } } { \exp_not:o { \use_ii:nn #9 } } @@ -2100,6 +2431,10 @@ ] } } +% \end{macrocode} +% +% \begin{macrocode} + \UseTaggingSocket{sec/title/end} % % --- handle marks, toc-entry, bookmark, nameref, and label % @@ -2118,8 +2453,7 @@ % (tagging/1436)} % \begin{macrocode} \bool_if:NF \l_@@_column_spanning_bool - { - \nobreak + { \nobreak \skip_vertical:N \l_@@_after_skip } % --- prepare next paragraph (defaults to \cs{@afterheading} @@ -2190,12 +2524,11 @@ { \mode_if_inner:TF { \@LRmoderr }{ \par } } \legacy_if:nF { @minipage } { \legacy_if:nF { @nobreak } - { % \end{macrocode} % Do everything in a group so that the temp variables are restored % afterwards in case they are used at the outside. % \begin{macrocode} - \group_begin: + { \group_begin: % \end{macrocode} % The rest is also from \cs{addpenalty} except that we have to give % \cs{penalty} explicitly as part of the argument. @@ -2210,8 +2543,7 @@ % Otherwise copy the last skip value also into \cs{l_tmpb_skip} % using \TeX's fast direct assignment. % \begin{macrocode} - { - \skip_set_eq:NN \l_tmpb_skip \l_tmpa_skip + { \skip_set_eq:NN \l_tmpb_skip \l_tmpa_skip % \end{macrocode} % Then add to it the current \cs{prevdepth} unless it is % \texttt{-1000pt} (which means it should be suppressed) or if it @@ -2219,8 +2551,7 @@ % remember that value because it will be reused below. % \begin{macrocode} \dim_set:Nn \l_tmpa_dim - { - \dim_compare:nNnTF \prevdepth > \maxdepth + { \dim_compare:nNnTF \prevdepth > \maxdepth \maxdepth { \dim_compare:nNnTF \prevdepth = { -1000pt } \c_zero_dim @@ -2241,7 +2572,7 @@ #1 % \end{macrocode} % After the penalty (and after a possible \cs{vfilneg}) we have to -% readd what we back up but that isn't as trivial as one might +% re-add what we back up but that isn't as trivial as one might % think. % % First we have to move forward by whatever amount we backed up due @@ -2297,6 +2628,10 @@ % \end{macrocode} % \end{macro} % +% +% +% +% % \begin{template}{heading runin} % The \texttt{runin} template is very similar to the % \texttt{display} one. @@ -2352,18 +2687,15 @@ } , before-vspace = \l_@@_before_skip , penalty = \l_@@_penalty_int -% \end{macrocode} -% Next key makes no sense either in a runin heading and is not -% used.\fmi{Revise and separate the two templates better} -% \begin{macrocode} , after-penalty-vspace = \l_@@_after_penalty_skip - , after-vspace = \l_@@_after_skip + , after-hspace = \l_@@_after_skip , start-code = \l_@@_start_code_tl , final-code = \l_@@_final_code_tl % \end{macrocode} % % \begin{macrocode} - , prefix = \l_@@_typeset_prefix_tl + , prefix = \l_@@_prefix_tl + , punct = \l_@@_punct_tl % \end{macrocode} % % \begin{macrocode} @@ -2372,6 +2704,9 @@ % % \begin{macrocode} , heading-decls = \l_@@_heading_decls_tl +% \end{macrocode} +% +% \begin{macrocode} , prefix-decls = \l_@@_prefix_decls_tl , number-decls = \l_@@_number_decls_tl , title-decls = \l_@@_title_decls_tl @@ -2380,11 +2715,21 @@ % \end{macrocode} % % \begin{macrocode} - , number-format = \@@_number_format:n + , heading-format = \@@_heading_format:n + , prefix-format = \@@_prefix_format:n + , number-format = \@@_number_format:n + , punct-format = \@@_punct_format:n + , title-format = \@@_title_format:n + , subtitle-format = \@@_subtitle_format:n + , quote-format = \@@_quote_format:n +% + , number-tag = \l_@@_number_tag_tl +% \end{macrocode} +% +% \begin{macrocode} , contents-extra = \l_@@_contents_extra_tl } -{ - \@@_show_arguments:nnnnnnnnn +{ \@@_show_arguments:nnnnnnnnn {#1}{#2}{#3}{#4}{#5}{#6}{#7}{#8}{#9} % \end{macrocode} % store the value of \texttt{secnumdepth} so that we can change it locally. @@ -2394,24 +2739,22 @@ % define \cs{theheading} % \begin{macrocode} \tl_set_eq:Nc \theheading { the \l_@@_name_tl } - \tl_if_empty:oF {#1} { \SetTemplateKeys{heading}{runin}{#1} } + \SetKnownTemplateKeys{heading}{runin}{#1} % \end{macrocode} % For now we don't support column-spanning in this template. % \changes{0.9h}{2026-06-21}{Support \texttt{column-spanning} key % (tagging/1436)} % \begin{macrocode} \bool_if:NT \l_@@_column_spanning_bool - { - \@@_debug_typeout:n {column-spanning~ is~ - not~ (yet)~ supported~ for~ runin~ headings!} - \bool_set_false:N \l_@@_column_spanning_bool + { \@@_debug_typeout:n {column-spanning~ is~ + not~ (yet)~ supported~ for~ runin~ headings!} + \bool_set_false:N \l_@@_column_spanning_bool } % \end{macrocode} % % \begin{macrocode} \tl_if_empty:oT \l_@@_start_code_tl - { - \str_case:Vn \l_@@_placement_tl + { \str_case:Vn \l_@@_placement_tl { { top } { \tl_set:Nn \l_@@_start_code_tl {\clearpage } } % \end{macrocode} @@ -2428,7 +2771,7 @@ % to do. % \begin{macrocode} % { \tl_clear:N \l_@@_start_code_tl } - } + } % % \end{macrocode} % Nothing at all to do (for now) for \cs{l_@@_final_code_tl}, it @@ -2449,13 +2792,16 @@ \@@_determine_number_typesetting:N #2 \@@_vertical_before_spacing: % \end{macrocode} -% We are in vmode now and here is the point where we (with tagging) can close a previous Sect -% structure and open the new one. We also have to initialize the change in the paratagging here -% as run-in titles typeset the heading in \cs{everypar}. +% We are in vmode now and here is the point where we (with tagging) +% can close a previous Sect structure and open the new one. We also +% have to initialize the change in the para tagging here as run-in +% titles typeset the heading in \cs{everypar}. % \begin{macrocode} \UseTaggingSocket{sec/end}{\int_use:N\l_@@_level_int} \UseTaggingSocket{sec/begin} - {{\int_use:N\l_@@_level_int}{tag=\UseStructureName{sec/\int_use:N\l_@@_level_int}}} + {{\int_use:N\l_@@_level_int} + {tag=\UseStructureName{sec/\int_use:N\l_@@_level_int}} + } \UseTaggingSocket{sec/title/init}{\int_use:N\l_@@_level_int} \def \@svsechd { \@@_debug_typeout:n{use~ 'headformat'~instance:~ @@ -2463,8 +2809,8 @@ \use:e { \UseInstance{headformat} { \l_@@_headformat_instance_tl } { \exp_not:o \UnusedTemplateKeys } - { \exp_not:o { \l_@@_typeset_prefix_tl } } - { \exp_not:o { \l_@@_typeset_number_tl } } + { \exp_not:o { \l_@@_prefix_tl } } + { \exp_not:o { \l_@@_number_tl } } { \exp_not:n { #3 } } { \exp_not:o { \use_i:nn #9 } } { \exp_not:o { \use_ii:nn #9 } } @@ -2475,7 +2821,6 @@ % \begin{macrocode} \int_gset:Nn\c@secnumdepth{\l_@@_saved_secnumdepth_tl} } -% \@nobreakfalse \global\@noskipsectrue \everypar{% @@ -2483,10 +2828,7 @@ \global\@noskipsecfalse {\setbox\z@\lastbox} \clubpenalty\@M -%FMi group is in headformat -% \begingroup \@svsechd -% \endgroup \unskip % \end{macrocode} % This tagging socket starts the \enquote{paragraph} after the run-in heading @@ -2502,7 +2844,6 @@ % --- prepare next paragraph (does nothing by default) % \begin{macrocode} \l_@@_final_code_tl -% \ignorespaces } % \end{macrocode} @@ -2513,12 +2854,15 @@ % \begin{template}{headformat display} % This template creates a headformat where the number is on a line on its own. % \begin{macrocode} -\DeclareTemplateCode{headformat}{display}{6} % args: keys,prefix,number,title,subtitle,quotation +\DeclareTemplateCode{headformat}{display}{6} + % args: keys,prefix,number,title,subtitle,quotation { , heading-indent = \l_@@_heading_indent_dim - , title-format = \@@_title_format:n - , prefix-number-sep = \l_@@_prefix_number_sep_tl - , number-title-sep = \l_@@_number_title_sep_tl + , order = \l_@@_order_clist + , separator-a = name {l_@@_separator-a_tl} + , separator-b = name {l_@@_separator-b_tl} + , separator-c = name {l_@@_separator-c_tl} + , separator-d = name {l_@@_separator-d_tl} } { \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} @@ -2526,81 +2870,86 @@ % First evaluate any key setting done by the user (normally % supplied from the main heading instance. % \begin{macrocode} - \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{display}{#1} } + \SetTemplateKeys{headformat}{display}{#1} % \end{macrocode} % % \begin{macrocode} \group_begin: - \UseTaggingSocket{sec/title/begin}{{\int_use:N\l_@@_level_int}{#4}} +% + \AssignTaggingSocketPlug{parbox/before}{noop} + \AssignTaggingSocketPlug{parbox/after}{noop} + \AssignTaggingSocketPlug{para/restore}{noop} + \tagpdfparaOff +% + \tl_set:Nn \l_@@_prefix_tl {#2} + \tl_set:Nn \l_@@_number_tl {#3} + \tl_set:Nn \l_@@_title_tl {#4} +% % \end{macrocode} -% \changes{0.9f}{2026-05-23}{Removed \cs{normalcolor} as it adds a break point -% and prevents color changes tagging/1215} -% TODO: revisit if \cs{normalcolor} is needed, if yes, use as -% \verb+\SaveLastSkip\normalcolor\RestoreLastSkip+. +% \changes{0.9f}{2026-05-23}{Removed \cs{normalcolor} as it adds a +% break point and prevents color changes tagging/1215} TODO: +% revisit if \cs{normalcolor} is needed, if yes, use as +% \cs{SaveLastSkip} \cs{normalcolor} \cs{RestoreLastSkip}. % \begin{macrocode} \normalfont \interlinepenalty \@M - \l_@@_heading_decls_tl{} + \l_@@_heading_decls_tl % \end{macrocode} -% If there is a number and so a prefix, the link target should be before the number. -% We use for now the same place in the unnumbered case. -% TODO: If we put the target here we do not know the height of the line and the -% target is perhaps not high enough. And for unnumbered chapter it is perhaps too high. -% Check! +% If there is a number and so a prefix, the link target should be +% before the number. We use for now the same place in the +% unnumbered case. TODO: If we put the target here we do not know +% the height of the line and the target is perhaps not high +% enough. And for unnumbered chapter it is perhaps too high. +% Check! % \begin{macrocode} \bool_if:NTF \l_@@_unnumbered_bool - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget[\l_@@_name_tl]{} } - { - \MakeLinkTarget[\l_@@_name_tl]{}\skip_horizontal:N \l_@@_heading_indent_dim + { \MakeLinkTarget[\l_@@_name_tl]{} + \skip_horizontal:N \l_@@_heading_indent_dim } } - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget{\l_@@_name_tl} } - { - \MakeLinkTarget{\l_@@_name_tl}\skip_horizontal:N \l_@@_heading_indent_dim - } - \IfNoValueF{#2} - { - { \l_@@_prefix_decls_tl #2 } - \nobreak - \skip_horizontal:n { \l_@@_prefix_number_sep_tl } + { \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim } - \l_@@_number_decls_tl - #3 - \par\nobreak - \skip_vertical:n { \l_@@_number_title_sep_tl } } - \l_@@_title_decls_tl -% \end{macrocode} -% \fmi{probably better to use a format:n and drop these two code -% variables even though they are used by titlesec} -% \begin{macrocode} - \@@_title_format:n {#4} +% + \@@_heading_format:n { + \template_process_order_clist:nnn + { head }{ order } + { number, prefix, punct, separator-a, + separator-b, separator-c, separator-d, title, subtitle } + } \par - \UseTaggingSocket{sec/title/end} \group_end: } % \end{macrocode} % \end{template} % +% +% +% +% +% % \begin{template}{headformat hang} % This template creates a heading with a hanging number. % \begin{macrocode} -\DeclareTemplateCode{headformat}{hang}{6} % args: keys,prefix,number,title,subtitle,quotation +\DeclareTemplateCode{headformat}{hang}{6} + % args: keys,prefix,number,title,subtitle,quotation { , heading-indent = \l_@@_heading_indent_dim - , title-format = \@@_title_format:n - , prefix-number-sep = \l_@@_prefix_number_sep_tl - , number-title-sep = \l_@@_number_title_sep_tl + , order-hang = name {l_@@_order-hang_clist} + , order = \l_@@_order_clist + , separator-a = name {l_@@_separator-a_tl} + , separator-b = name {l_@@_separator-b_tl} + , separator-c = name {l_@@_separator-c_tl} + , separator-d = name {l_@@_separator-d_tl} } { \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} @@ -2608,100 +2957,110 @@ % First evaluate any key setting done by the user (normally % supplied from the main heading instance. % \begin{macrocode} - \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{hang}{#1} } + \SetTemplateKeys{headformat}{hang}{#1} % \end{macrocode} % % \begin{macrocode} \group_begin: - \UseTaggingSocket{sec/title/init}{\int_use:N\l_@@_level_int} +% + \AssignTaggingSocketPlug{parbox/before}{noop} + \AssignTaggingSocketPlug{parbox/after}{noop} + \AssignTaggingSocketPlug{para/restore}{noop} + \tagpdfparaOff +% + \tl_set:Nn \l_@@_prefix_tl {#2} + \tl_set:Nn \l_@@_number_tl {#3} + \tl_set:Nn \l_@@_title_tl {#4} +% % \end{macrocode} % \changes{0.9f}{2026-05-23}{Removed \cs{normalcolor} as it adds a break point % and prevents color changes tagging/1215} % \begin{macrocode} \normalfont \interlinepenalty \@M - \l_@@_heading_decls_tl{} + \l_@@_heading_decls_tl + \noindent + \setbox\@tempboxa\hbox{{ % \end{macrocode} % The link target should be at the left text margin, or, if the section % is moved into the margin, at the left of the number. % \begin{macrocode} - \bool_if:NTF \l_@@_unnumbered_bool - { - \tl_set:Nn\l_@@_tmpa_tl - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget[\l_@@_name_tl]{} - } - { + \bool_if:NTF \l_@@_unnumbered_bool + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget[\l_@@_name_tl]{} + } + { \MakeLinkTarget[\l_@@_name_tl]{} \skip_horizontal:N \l_@@_heading_indent_dim - } - } - } - { - \tl_set:Nn \l_@@_tmpa_tl - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget{\l_@@_name_tl} } - { - \MakeLinkTarget{\l_@@_name_tl}\skip_horizontal:N \l_@@_heading_indent_dim + } + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget{\l_@@_name_tl} } - \IfNoValueF{#2} - { - { \l_@@_prefix_decls_tl #2 } - \nobreak - \skip_horizontal:n { \l_@@_prefix_number_sep_tl } + { \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim } - { \l_@@_number_decls_tl #3 } - \skip_horizontal:n { \l_@@_number_title_sep_tl } + \template_process_order_clist:nnn + { head }{ order-hang } + { number, prefix, punct, separator-a, + separator-b, separator-c, separator-d, title, subtitle } } - } - \UseTaggingSocket{sec/title/hang} - {{\int_use:N\l_@@_level_int}\l_@@_unnumbered_bool{\l_@@_tmpa_tl}{#4}} - { - \@hangfrom - { - \l_@@_tmpa_tl - } - } - \l_@@_title_decls_tl + }} + \hangindent \wd\@tempboxa + \box\@tempboxa + \template_process_order_clist:nnn + { head }{ order } + { number, prefix, punct, separator-a, + separator-b, separator-c, separator-d, title, subtitle } % \end{macrocode} -% \fmi{probably better to use a format:n and drop these two code -% variables even though they are used by titlesec} % \begin{macrocode} - \@@_title_format:n {#4} \par \group_end: } + % \end{macrocode} % \end{template} % % +% +% +% +% % \begin{template}{headformat runin} % This template creates a heading with a run-in title. % Arguments are key-value, number, title, subtitle, quotation. % \begin{macrocode} -\DeclareTemplateCode{headformat}{runin}{6} % args: keys,prefix,number,title,subtitle,quotation +\DeclareTemplateCode{headformat}{runin}{6} + % args: keys,prefix,number,title,subtitle,quotation { , heading-indent = \l_@@_heading_indent_dim - , title-format = \@@_title_format:n - , prefix-number-sep = \l_@@_prefix_number_sep_tl - , number-title-sep = \l_@@_number_title_sep_tl - } + , order = \l_@@_order_clist + , separator-a = name {l_@@_separator-a_tl} + , separator-b = name {l_@@_separator-b_tl} + , separator-c = name {l_@@_separator-c_tl} + , separator-d = name {l_@@_separator-d_tl} +} { \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} % \end{macrocode} % First evaluate any key setting done by the user (normally % supplied from the main heading instance. % \begin{macrocode} - \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{hang}{#1} } + \SetTemplateKeys{headformat}{hang}{#1} % \end{macrocode} % % \begin{macrocode} \group_begin: +% + \AssignTaggingSocketPlug{parbox/before}{noop} + \AssignTaggingSocketPlug{parbox/after}{noop} + \AssignTaggingSocketPlug{para/restore}{noop} + \tagpdfparaOff +% + \tl_set:Nn \l_@@_prefix_tl {#2} + \tl_set:Nn \l_@@_number_tl {#3} + \tl_set:Nn \l_@@_title_tl {#4} % \end{macrocode} % % \changes{0.9f}{2026-05-23}{Removed \cs{normalcolor} as it adds a break point @@ -2713,50 +3072,32 @@ % (but that's the way it was in \LaTeXe)} % \begin{macrocode} \interlinepenalty \@M - \l_@@_heading_decls_tl{} + \l_@@_heading_decls_tl % \end{macrocode} % We must avoid that the sep between number and title is used in the unnumbered case. % So we test with the boolean. % \begin{macrocode} \bool_if:NTF \l_@@_unnumbered_bool - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget[\l_@@_name_tl]{} } - { - \MakeLinkTarget[\l_@@_name_tl]{}\skip_horizontal:N \l_@@_heading_indent_dim + { \MakeLinkTarget[\l_@@_name_tl]{} + \skip_horizontal:N \l_@@_heading_indent_dim } } - { - \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip - { - \skip_horizontal:N \l_@@_heading_indent_dim \MakeLinkTarget{\l_@@_name_tl} - } - { - \MakeLinkTarget{\l_@@_name_tl}\skip_horizontal:N \l_@@_heading_indent_dim + { \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget{\l_@@_name_tl} } - { - \UseTaggingSocket{sec/title/number}{\int_use:N\l_@@_level_int} - { - \IfNoValueF{#2} - { - { \l_@@_prefix_decls_tl #2 } - \nobreak - \skip_horizontal:n { \l_@@_prefix_number_sep_tl } - } - \l_@@_number_decls_tl - #3 - } + { \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim } - \skip_horizontal:n { \l_@@_number_title_sep_tl } } -% \end{macrocode} -% -% \begin{macrocode} - \l_@@_title_decls_tl - \@@_title_format:n {#4} + \template_process_order_clist:nnn + { head }{ order } + { number, prefix, punct, separator-a, + separator-b, separator-c, separator-d, title, subtitle } \group_end: } % \end{macrocode} @@ -2776,7 +3117,10 @@ } % \end{macrocode} % \end{macro} - +% +% +% +% % \begin{macro}{\@@_determine_number_typesetting:N} % % \begin{macrocode} @@ -2793,8 +3137,7 @@ % (tagging/1473)} % \begin{macrocode} \bool_if:NF \l__head_unnumbered_bool - { - \bool_set:Nn \l_@@_unnumbered_bool + { \bool_set:Nn \l_@@_unnumbered_bool { \bool_lazy_or_p:nn { \int_compare_p:nNn \l_@@_level_int > \c@secnumdepth } { \bool_if_p:N #1 } @@ -2806,25 +3149,25 @@ % code) % \begin{macrocode} \bool_if:NTF \l_@@_unnumbered_bool - { - \int_gset:Nn\c@secnumdepth{-99} + { \int_gset:Nn\c@secnumdepth{-99} % \end{macrocode} -% and we set \cs{l_@@_typeset_number_tl} to do nothing. +% and we set \cs{l_@@_number_tl}, \cs{l_@@_prefix_tl}, and +% \cs{l_@@_punct_tl} to do nothing. % \begin{macrocode} - \tl_clear:N \l_@@_typeset_number_tl + \tl_set:Nn \l_@@_number_tl { \NoValue } + \tl_set:Nn \l_@@_prefix_tl { \NoValue } + \tl_set:Nn \l_@@_punct_tl { \NoValue } } % \end{macrocode} % Otherwise the heading counter is incremented and a formatted % version of the number plus any following (or preceding) space is -% stored in \cs{l_@@_typeset_number_tl}. -% We use the kernel version of \cs{refstepcounter} as anchors are handled elsewhere. +% stored in \cs{l_@@_number_tl}. +% We use the kernel version of \cs{refstepcounter} as anchors are +% handled elsewhere. % \begin{macrocode} { \@kernel@refstepcounter{ \l_@@_name_tl } - \protected@edef \l_@@_typeset_number_tl - { - \@@_number_format:n { \l_@@_name_tl } - } + \tl_set:Nn \l_@@_number_tl { \theheading } } } % \end{macrocode} @@ -2837,8 +3180,7 @@ % \begin{macrocode} \cs_new:Npn \@@_vertical_before_spacing: { \tl_if_blank:VTF \l_@@_start_code_tl - { - \if@noskipsec \leavevmode \fi + { \if@noskipsec \leavevmode \fi \par \if@nobreak \everypar{} @@ -2887,9 +3229,11 @@ % % \begin{macro}{\addcontentslinebookmark,\addcontentslinebookmarkOff, % \addcontentslinebookmarkOn} -% We want to be able to control bookmarks independently from the toc entries, -% and also want to disable a bookmark by setting it to empty. For this we need -% some command to handle the bookmark command. +% +% We want to be able to control bookmarks independently from the +% toc entries, and also want to disable a bookmark by setting it to +% empty. For this we need some command to handle the bookmark +% command. % \begin{macrocode} \newcommand\addcontentslinebookmark[3]{} \newcommand\addcontentslinebookmarkOff{} @@ -2900,16 +3244,17 @@ % \begin{macrocode} \AddToHook{package/hyperref/after} { - \RenewCommandCopy\addcontentslinebookmark\Hy@addcontentsline@addbookmark - \renewcommand\addcontentslinebookmarkOff - { - \ifHy@bookmarks - \let\addcontentslinebookmarkReset\Hy@bookmarkstrue - \else - \let\addcontentslinebookmarkReset\relax - \fi - \Hy@bookmarksfalse - } + \RenewCommandCopy\addcontentslinebookmark + \Hy@addcontentsline@addbookmark + \renewcommand\addcontentslinebookmarkOff + { \ifHy@bookmarks + \let\addcontentslinebookmarkReset + \Hy@bookmarkstrue + \else + \let\addcontentslinebookmarkReset\relax + \fi + \Hy@bookmarksfalse + } } % \end{macrocode} % \end{macro} @@ -2924,10 +3269,10 @@ { \@@_mark_cmd:n { #2 } } \IfBlankTF {#1} % \end{macrocode} -% If the toc entry is empty the bookmarks must be set without \cs{addcontentsline} +% If the toc entry is empty the bookmarks must be set without +% \cs{addcontentsline}. % \begin{macrocode} - { - \IfBlankF{#3} + { \IfBlankF{#3} { \addcontentslinebookmark{toc}{\l__head_name_tl} { @@ -2939,14 +3284,13 @@ } } } - { % \end{macrocode} % If the bookmark entry is empty we must disable the bookmarks locally % before the \cs{addcontentsline} and reenable afterwards. We do not % check if they are already disabled, perhaps later. % \begin{macrocode} - \IfBlankT{#3}{\addcontentslinebookmarkOff} - \addcontentsline{toc}{ \l_@@_name_tl } + { \IfBlankT{#3}{\addcontentslinebookmarkOff} + \addcontentsline{toc}{ \l_@@_name_tl } { \bool_if:NF \l_@@_unnumbered_bool { @@ -2964,12 +3308,12 @@ % other contents files like \texttt{.lot} or % \texttt{.lof}.\fmi{perhaps this should have a hook for packages} % \begin{macrocode} - \l_@@_contents_extra_tl + \l_@@_contents_extra_tl % \end{macrocode} % We can always run the label code (it might be empty) % \begin{macrocode} - \@@_debug_typeout:n{--->~label(s):~ \exp_not:n{#5}} - #5 + \@@_debug_typeout:n{--->~label(s):~ \exp_not:n{#5}} + #5 } % \end{macrocode} % \end{macro} @@ -3158,7 +3502,7 @@ , parent-name = subsubsection , level = 4 , before-vspace = 3.25ex \@plus1ex \@minus.2ex - , after-vspace = 1em + , after-hspace = 1em , heading-decls = \normalfont\normalsize\bfseries , mark-cmd = \paragraphmark {#1} , headformat-instance = paragraph @@ -3178,7 +3522,7 @@ , parent-name = paragraph , level = 5 , before-vspace = 3.25ex \@plus1ex \@minus .2ex - , after-vspace = 1em + , after-hspace = 1em , heading-decls = \normalfont\normalsize\bfseries , mark-cmd = \subparagraphmark {#1} , headformat-instance = subparagraph @@ -3189,14 +3533,15 @@ % % \begin{instance}{headformat part} % \begin{instance}{headformat chapter} -% The \texttt{headformat} instances for part and chapter use the +% The \insttype{headformat} instances for part and chapter use the % \texttt{display} template with identical settings by default, % so one is made a copy of the other to speed up loading. % \begin{macrocode} \DeclareInstance{headformat}{part}{display} { , heading-indent = 0pt - , prefix-number-sep = \WordSpaceAmount{1} + , separator-a = \nobreakspace % between prefix and number + , separator-b = \par \nobreak \vspace{20pt} % between label block and title } % \end{macrocode} % @@ -3262,7 +3607,7 @@ \DeclareInstance{headformat}{section-special}{hang} { , heading-indent = 4em - , title-format = {#1!} +%%%% , title-format = {#1!} % no longer } % \end{macrocode} % \end{instance} @@ -3280,7 +3625,7 @@ % NOTE: To handle legacy definition like % \verb+{\normalfont\Large\bfseries\MakeUppercase}+ in the last argument % it copies this argument both to -% \texttt{heading-decls} and to \texttt{title-format}. +% \key{heading-decls} and to \key{title-format}. % % \begin{macrocode} \DeclareDocumentCommand \@startsection {mmmmmm s ={shorttitle}o m}{ @@ -3302,6 +3647,20 @@ \@@_debug_typeout:n{Info:~ setting~ up~ instances~ for~ legacy~ \string\@startsection} % \end{macrocode} +% \cs{@startsection} supported the use of a macro +% with one argument as the last token in its \meta{style} +% argument, for example, \cs{MakeUppercase} to make the whole title +% uppercase. To support that we need to take a look at \texttt{\#6} +% and if that ends in such a macro split it off, so that we can put +% the first tokens into \key{heading-decls} and this last token +% into \key{title-format}. This is what the next call prepares for: +% \changes{0.9m}{2026-08-12}{Split style argument of +% \cs{@startsection} based off type of last token (tagging/1521)} +% \begin{macrocode} + \@@_prep_decls_and_format_from_tl:nNN {#6} + \l_@@_heading_decls_tl + \l_@@_title_format_tl +% \end{macrocode} % In the \LaTeXe{} logic a negative \#4 means we do not indent the % following paragraph \ldots % @@ -3331,18 +3690,27 @@ , before-vspace = \the\@tempskipa , after-vspace = \the\@tempskipb , para-indent = \if@afterindent true \else false\fi - , heading-decls = \exp_not:n {#6} % \end{macrocode} -% we also do the declarations in \texttt{title-format} to handle -% settings which ends, e.g., with \cs{MakeUppercase}, +% Argument \texttt{\#6} contains the declarations for the whole +% heading but it is allowed that the last token is a macro with one +% argument that receives the heading text as its argument. +% This is why we have split off the last token above, in case it +% contained a macro with one argument. That token is then used as +% the \key{title-format}. We end this key value in \cs{par} if we +% are in a display instance. +% \begin{macrocode} + , heading-decls = \exp_not:o \l_@@_heading_decls_tl + , title-format = \exp_not:o \l_@@_title_format_tl {##1} + \exp_not:N \par +% \end{macrocode} % \begin{macrocode} , headformat-instance = #1-@startsection }} + \DeclareInstance{headformat}{#1-@startsection}{hang}{heading-indent = #3} % \end{macrocode} % We can expect that the instance \texttt{\#1-@startsection} is not % set up by the user if \texttt{\#1-@startsection} isn't, so no check. % \begin{macrocode} - \DeclareInstance{headformat}{#1-@startsection}{hang}{heading-indent = #3,title-format={#6{##1}}} \else \@tempskipb=-\@tempskipb \use:e { @@ -3351,11 +3719,15 @@ , level = #2 , mark-cmd = \exp_not:c {#1mark} {##1} , before-vspace = \the\@tempskipa - , after-vspace = \the\@tempskipb - , heading-decls = \exp_not:n{#6} + , after-hspace = \the\@tempskipb + , heading-decls = \exp_not:o \l_@@_heading_decls_tl +% \end{macrocode} +% In a runin instance \key{title-format} should not end in \cs{par}! +% \begin{macrocode} + , title-format = \exp_not:o \l_@@_title_format_tl {##1} , headformat-instance = #1-@startsection }} - \DeclareInstance{headformat}{#1-@startsection}{runin}{heading-indent = #3,title-format={#6{##1}}} + \DeclareInstance{headformat}{#1-@startsection}{runin}{heading-indent = #3} \fi } \ParseLaTeXeHeading {#1-@startsection}{#7}{#8}{#9} @@ -3363,6 +3735,93 @@ % \end{macrocode} % \end{macro} % +% +% +% \begin{macro}{\@@_prep_decls_and_format_from_tl:nNN} +% Examine \texttt{\#1}. If the last token is a macro with one +% argument put it in \texttt{\#3} and the remainder of \texttt{\#1} +% into \texttt{\#2}. +% Otherwise, put \cs{use:n} in \texttt{\#3} and all of \texttt{\#1} +% in \texttt{\#2}. +% \changes{0.9m}{2026-08-12}{Provide command to split off last token of +% a token list if it is a macro with one argument (tagging/1521)} +% \begin{macrocode} +\cs_new:Npn \@@_prep_decls_and_format_from_tl:nNN #1#2#3 + { \tl_set:Nn #3 { \use:n } + \exp_args:Ne + \@@_prep_decls_and_auxi:nnNN + { \tl_reverse:n {#1} } {#1} #2 #3 + } +% \end{macrocode} +% +% \begin{macrocode} +\cs_new:Npn \@@_prep_decls_and_auxi:nnNN #1#2#3#4 + { \tl_if_head_is_N_type:nTF {#1} + { \@@_prep_decls_and_auxii:nNwNN {#2} #1 \q_stop #3 #4 } + { \tl_set:Nn #3 {#2} } + } +% \end{macrocode} +% +% \begin{macrocode} +\cs_new:Npn \@@_prep_decls_and_auxii:nNwNN #1#2#3 \q_stop #4 #5 + { \token_if_macro:NTF #2 + { \exp_args:Ne + \@@_prep_decls_and_auxiii:nnNnNN + { \cmd_arg_spec:N #2 } {#1} #2 {#3} #4 #5 + } + { \tl_set:Nn #4 {#1} } + } +% \end{macrocode} +% +% \begin{macrocode} +\cs_new:Npn \@@_prep_decls_and_auxiii:nnNnNN #1#2#3#4#5#6 { + \bool_lazy_any:nTF + { +% \end{macrocode} +% This tests for macros with one argument and defined by \cs{def} +% or similar. +% \begin{macrocode} + { \str_if_eq_p:ee { \cs_parameter_spec:N #3 } { \c_hash_str 1 } } +% \end{macrocode} +% For those defined with \cs{NewDocumentCommand} we need to look at +% the signature instead. We also accept macros with one optional +% argument first followed by a mandatory one. +% \begin{macrocode} + { \str_if_eq_p:nn {#1} { m } } + { \str_if_eq_p:nn {#1} { +m } } + { \str_if_eq_p:nn {#1} { O{} m } } + { \str_if_eq_p:nn {#1} { O{} +m } } +% \end{macrocode} +% Another possibility are macros declared with \cs{DeclareRobustCommand}. +% \begin{macrocode} + { \bool_lazy_and_p:nn + { \cs_if_exist_p:c { \cs_to_str:N #3 \c_space_tl } } + { \str_if_eq_p:ee + { \cs_parameter_spec:c { \cs_to_str:N #3 \c_space_tl } } + { \c_hash_str 1 } + } + } + { \bool_lazy_and_p:nn + { \cs_if_exist_p:c { \token_to_str:N #3 \c_space_tl } } + { \str_if_eq_p:ee + { \cs_parameter_spec:c { \token_to_str:N #3 \c_space_tl } } + { [ \c_hash_str 1 ] \c_hash_str 2 } + } + } + } + { \tl_set:Ne #5 { \tl_reverse:n {#4} } + \tl_set:Nn #6 {#3} + } + { \tl_set:Nn #5 {#2} } +} +% \end{macrocode} +% +% \begin{macrocode} +\cs_generate_variant:Nn \cs_parameter_spec:N { c } +% \end{macrocode} +% \end{macro} +% +% % Some classes redefine \cs{@startsection} and then our redefinition is lost. So we % reinstate it % \begin{macrocode} @@ -3383,29 +3842,32 @@ \str_case:enF {\cs_to_str:N#1} { {@part} - { - \IfNoValueTF{#4} + { \IfNoValueTF{#4} {\ParseLaTeXeHeading{part}{#3} {start-code=\relax} {#5}} { \@@_process_shorttitle:nN{#4}\l_@@_tmpa_tl - \ExpandArgs{nne}\ParseLaTeXeHeading{part}{#3}{start-code=\relax,\exp_not:o{\l_@@_tmpa_tl}} {#5} + \ExpandArgs{nne}\ParseLaTeXeHeading{part}{#3} + {start-code=\relax,\exp_not:o{\l_@@_tmpa_tl}} {#5} } - \@latex@warning{\noexpand\secdef~detected~in~\noexpand\part~command.\MessageBreak + \@latex@warning{\noexpand\secdef~ detected~ in~ \noexpand\part + command.\MessageBreak \noexpand\part~will~be~redefined~to~use~templates.\MessageBreak This~may~change~the~layout!} \DeclareDocumentCommand \part {s ={shorttitle}o m} { \ParseLaTeXeHeading {part} {##1} {##2} {##3} } } {@chapter} - { - \IfNoValueTF{#4} + { \IfNoValueTF{#4} { \ParseLaTeXeHeading{chapter}{#3} {#4} {#5} } { \@@_process_shorttitle:nN{#4}\l_@@_tmpa_tl - \ExpandArgs{nno}\ParseLaTeXeHeading{chapter}{#3}{\l_@@_tmpa_tl} {#5} + \ExpandArgs{nno}\ParseLaTeXeHeading{chapter}{#3} + {\l_@@_tmpa_tl} {#5} } - \@latex@warning{\noexpand\secdef~detected~in~\noexpand\chapter~command.\MessageBreak - \noexpand\chapter~will~be~redefined~to~use~templates.\MessageBreak + \@latex@warning{\noexpand\secdef~ detected~ in~ + \noexpand\chapter command.\MessageBreak + \noexpand\chapter~ will~ be~ redefined~ to~ use~ + templates.\MessageBreak This~may~change~the~layout!} \DeclareDocumentCommand \chapter {s ={shorttitle}o m} { \ParseLaTeXeHeading {chapter} {##1} {##2} {##3} } @@ -3413,7 +3875,8 @@ } { \tag_if_active:TF\@latex@error\@latex@warning - {\noexpand\secdef~with~unknown~argument~\noexpand#1 found.\MessageBreak + {\noexpand\secdef~ with~ unknown~ argument~ \noexpand#1 + found.\MessageBreak The~command~can~not~be~adapted~on~the~fly~to~support~tagging.\MessageBreak The~heading~command~using~this~\noexpand\secdef~should~be~ reimplemented\MessageBreak with~templates}{} @@ -3444,9 +3907,9 @@ , level = -1 , before-vspace = 4ex , after-vspace = 3ex - , mark-cmd = \partmark {#1} + , mark-cmd = \partmark {#1} , prefix = \partname - , number-format = \thepart + , punct = , heading-decls = \raggedright\bfseries\Large , title-decls = \huge , headformat-instance = part @@ -3454,8 +3917,8 @@ \DeclareInstance{headformat}{part}{display} { , heading-indent = 0pt - , number-title-sep = 0pt - , prefix-number-sep = \WordSpaceAmount{1} + , separator-a = \nobreakspace + , separator-b = \par \nobreak \vspace{20pt} } \DeclareDocumentCommand \part {s ={shorttitle}o m} { \ParseLaTeXeHeading {part} {#1} {#2} {#3} } @@ -3548,6 +4011,11 @@ % % \end{macrocode} % +% +% +% +% +% % \section{Issues and problems noticed along the way} % % \subsection{Local \cs{DeclareInstance}} @@ -3581,7 +4049,7 @@ % \use:e { % \UseInstance{headformat} { \l_@@_headformat_instance_tl } % { \exp_not:o \UnusedTemplateKeys } -% { \exp_not:o { \l_@@_typeset_number_tl } } +% { \exp_not:o { \l_@@_number_tl } } % { \exp_not:n { #3 } } % { \exp_not:o { \use_i:nn #9 } } % { \exp_not:o { \use_ii:nn #9 } } @@ -3603,6 +4071,992 @@ % % Needs checking. % +% +% +% +% +% +% +% \appendix +% +% \section{Templates from the 2026-06-01 release of \LaTeX{}} \label{appendix:a} +% +% In this appendix we provide the template implementations that I came +% up with in my first attempt (only renamed to +% \meta{name}\texttt{-v1}). Eventually, we want to drop the +% \texttt{-v1} versions but for the next couple of releases we +% provide them alongside the new more flexible templates, so that +% there is no need to transitioning to the new +% templates in a rush. +% +% \subsection{Template documentation for \texttt{-v1} templates} +% +% +% \subsubsection{Templates of type \texttt{heading}} +% +% +% There are a number of keys that are expected to be recognized by +% all heading templates (though they may choose not to make use of +% them). These are listed below instead of being repeated on the +% actual templates. +% +% All other keys are either attached to the \texttt{heading} or to +% the \texttt{headformat} templates. Those that typically vary +% from heading instance to the next (e.g., \key{heading-decls}) are +% all declared in the +% \texttt{heading} templates even if they are actually only used +% within \texttt{headformat} templates. In other words, +% \texttt{headformat} templates have a number of implicit +% variables that they expect to be set.\footnote{Maybe questionable} +% +% +% \begin{TemplateDescription}{heading}{\meta{all}} +% +% \TemplateKey{name}{tokenlist} +% {Referenceable name of the heading instance. String that +% is acceptable in csnames for use in building counter +% names, etc.}{} +% \TemplateKey{parent-name}{tokenlist} +% {Name of the next higher heading instance. If not +% given, then the internal heading level of the heading +% instance is set to \texttt{0}}{} +% \TemplateKey{reset-counter}{tokenlist} +% {Name of the heading instance that should reset the +% numbering of this heading level (if any)}{} +% \TemplateKey{level}{integer} +% {Sets the internal heading-level rather than deducing +% it from \key{parent-name}. Can be used to specify the +% top-level heading if not \texttt{0}, or all headings +% in legacy implementations, e.g., through \cs{@startsection}}{} +% +% \TemplateKey{placement}{choice} +% {Set the heading placement, i.e., the behavior of the +% heading with respect to page breaks. Allowed values +% are +% \texttt{page} (heading forms a page if its own), +% \texttt{top} (heading starts a new page), +% \texttt{normal} (heading can appear anywhere on the +% page). Further possibilities might be +% \texttt{rectopage} and \texttt{rectotop} if we +% implement that.}{\texttt{normal}} +% +% \TemplateKey{start-code}{tokenlist} +% {Default value is set by the \key{placement} +% key. Executed before the heading starts, so can issue, for +% example, a \cs{clearpage}} +% {} +% +% \TemplateKey{final-code}{tokenlist} +% {Default value is set by the \key{placement} +% key. Executed after the heading is typeset. Can set up code for +% putting the heading on a page by its own, or arrange for +% paragraph handling of a following paragraph, etc.} +% {} +% +% \TemplateKey{prefix}{tokenlist} +% {A fixed string, such as \enquote{Chapter}, that can be +% used together with the number (if any) to form a +% \enquote{heading label}. Usage and placement is up to +% the template, so it could be placed after the number +% by the template (in which case it isn't really a +% prefix).} {\cs{NoValue}} +% +% \TemplateKey{mark-cmd}{function(1)} +% {Function that receives the \meta{running} argument and +% creates a suitable mark insertion} +% {\texttt\textbackslash\meta{name}\texttt{mark}} +% +% \TemplateSemantics +% +% The above keys should be implemented by all heading templates. +% +% At the moment I have retained the \LaTeXe{} interfaces for marks, +% e.g., one has to set up \cs{chaptermark}, \cs{sectionmark}, +% etc.\ but I'm not sure this should stay (even though it is +% certainly simpler from a compatibility perspective). +% +% All templates should set up \cs{theheading} to correspond to +% \cs{the\meta{name}}. +% \end{TemplateDescription} +% +% +% \begin{TemplateDescription}{heading}{display-v1} +% +% \TemplateKey{para-indent}{boolean} +% {Should the paragraph after the heading be indented?} +% {false} +% +% \TemplateKey{before-vspace}{skip} +% {Vertical space before the heading if there is no page +% or column break. If there is one it vanishes. +% In particular this means it will not be used in the +% heading \texttt{placement}s \texttt{page} or \texttt{top}} +% {0pt} +% +% \TemplateKey{penalty}{integer} +% {Penalty to break before the heading. The default +% (\TeX's largest integer) indicates that no penalty was set in +% which case \cs{@secpenalty} is used.} +% {\number\maxdimen} +% +% \TemplateKey{after-penalty-vspace}{skip} +% {Vertical space before the heading but after the +% penalty for the heading. If the penalty results in a page or +% column break, this space remains at the top of the page} +% {0pt} +% +% \TemplateKey{after-vspace}{skip} +% {Vertical space after the heading} +% {0pt} +% +% \TemplateKey{heading-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to all heading elements, i.e., number, title, +% subtitle, and quotation, if present. +% Note that color commands (unless \pkg{luacolor} is used) +% introduce a break point before the heading and therefore one should either +% surround color commands with \cs{SaveLastSkip} and \cs{RestoreLastSkip} or +% to use the keys \texttt{prefix-decls}, \texttt{number-decls}, +% \texttt{title-decls}, etc.\ instead.} +% {\cs{normalfont}} +% +% \TemplateKey{prefix-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading prefix, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{number-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading number, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{title-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading title, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{subtitle-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading subtitle, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{quote-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading quote, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{number-format}{function(1)} +% {Code that produces a formatted version of the +% heading number +% including any ornamentations. Its argument is the +% counter name for the head. However, instead of using +% a specific counter representations, e.g., +% \cs{thesection}, it +% can refer to the counter representation for the +% current heading counter via \cs{theheading} and ignore +% the argument.} +% {\cs{theheading}} +% +% \TemplateKey{contents-extra}{tokenlist} +% {Code containing \cs{addcontents} calls to write to +% files like \texttt{.lot} or \texttt{.lot}} +% {\meta{empty}} +% +% +% \TemplateKey{headformat-instance}{instance} +% {Template instances of type \texttt{headformat}} +% {std} +% +% \TemplateSemantics +% +% Several of the key names are simply bad and need revision! +% \end{TemplateDescription} +% +% +% +% +% \begin{TemplateDescription}{heading}{runin-v1} +% +% \TemplateKey{before-vspace}{skip} +% {Vertical space before the heading if there is no page +% or column break. If there is one it vanishes.} +% {0pt} +% +% \TemplateKey{penalty}{integer} +% {Penalty to break before the heading. The default +% (\TeX's largest integer) indicates that no penalty was set in +% which case \cs{@secpenalty} is used.} +% {\number\maxdimen} +% +% \TemplateKey{after-penalty-vspace}{skip} +% {Vertical space before the heading but after the +% penalty for the heading. If the penalty results in a page or +% column break, this space remains at the top of the page. It is +% also applied if the heading is a \texttt{page} or \texttt{top} heading.} +% {0pt} +% +% \TemplateKey{after-vspace}{skip} +% {Vertical space after the heading -- ignored in runin +% headings so should be dropped!} +% {0pt} +% +% \TemplateKey{heading-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to all heading elements, i.e., number, title, +% subtitle, and quotation, if present.} +% {\cs{normalfont}} +% +% \TemplateKey{prefix-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading prefix, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{number-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading number, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{title-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading title, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{subtitle-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading subtitle, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{quote-decls}{tokenlist} +% {Declarations (such as font or color settings) applied +% to the heading quote, overwriting the setting +% of \key{heading-decls}.} +% {\meta{empty}} +% +% \TemplateKey{number-format}{function(1)} +% {Code that produces a formatted version of the +% heading number +% including any ornamentations. Its argument is the +% counter name for the head. However, instead of using +% a specific counter representations, e.g., +% \cs{thesection}, it +% can refer to the counter representation for the +% current heading counter via \cs{theheading} and ignore +% the argument.} +% {\cs{theheading}} +% +% \TemplateKey{headformat-instance}{instance} +% {Template instances of type \texttt{headformat}} +% {std} +% +% \TemplateSemantics +% +% Several of the key names are simply bad and need revision! +% \end{TemplateDescription} +% +% +% +% +% \subsubsection{Templates of type \texttt{headformat}} +% +% At the moment all templates of this type assume that placement of +% prefix, number, title is done in exactly this order. Anything +% else would require defining further templates. +% +% TODO: consider a more versatile mechanism (like in theorem-like +% templates) to allow for more flexible placements without the need +% to define additional templates. +% +% \begin{TemplateDescription}{headformat}{hang-v1} +% +% \TemplateKey{heading-indent}{dimen} +% {Horizontal space before the heading (shifting it to +% the right in a LR typesetting context)} +% {0pt} +% +% \TemplateKey{title-format}{tokenlist} +% {Code executed directly before the heading is typeset +% and after the vertical spacing is done. The code takes an argument, +% e.g., \cs{MakeUppercase}} +% {\meta{\#1}} +% +% \TemplateKey{prefix-number-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title prefix (if used) and title number. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font.} +% {.5em} +% +% \TemplateKey{number-title-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title number and title text. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font.} +% {1em} +% +% \TemplateSemantics +% +% Implements a heading layout where number and title start on the +% same line and the title is hanging off from that if the title +% has more than one line. It is what \LaTeX{} always used by +% default for \cs{section}, \cs{subsection}, and +% \cs{subsubsection}. +% +% Several of the key names are simply bad and need a revision! +% \end{TemplateDescription} +% +% +% \begin{TemplateDescription}{headformat}{runin-v1} +% +% \TemplateKey{heading-indent}{dimen} +% {Horizontal space before the heading (shifting it to +% the right in a LR typesetting context)} +% {0pt} +% +% \TemplateKey{title-format}{tokenlist} +% {Code executed directly before the heading is typeset +% and after the vertical spacing is done. The code can take an argument, +% e.g., \cs{MakeUppercase}} +% {\meta{empty}} +% +% \TemplateKey{prefix-number-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title prefix (if used) and title number. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font.} +% {.5em} +% +% \TemplateKey{number-title-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title number and title text. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font. +% +% In the hang template it is a horizontal dimension!} +% {1em} +% +% \TemplateSemantics +% +% Implements a heading layout where number and title start on the +% same line but then continue with the following paragraph on the +% same line (or the next if the title overflows, i.e., the title is +% run-in. It is what \LaTeX{} always used by default for +% \cs{paragraph} and \cs{subparagraph}. +% +% Several of the key names are simply bad and need a revision! +% \end{TemplateDescription} +% +% +% \begin{TemplateDescription}{headformat}{display-v1} +% +% \TemplateKey{heading-indent}{dimen} +% {Horizontal space before the heading (shifting it to +% the right in a LR typesetting context)} +% {0pt} +% \TemplateKey{title-format}{tokenlist} +% {Code executed directly before the heading is typeset +% and after the vertical spacing is done. The code can take an argument, +% e.g., \cs{MakeUppercase}} +% {\meta{\#1}} +% +% \TemplateKey{prefix-number-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title prefix (if used) and title number. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font.} +% {.5em} +% +% \TemplateKey{number-title-sep}{tokenlist} +% {Token list that can be used in the assignment to a +% \TeX{} dimension (can contain \texttt{em} or +% \texttt{ex} values) specifying the separation between +% title number and title text. Evaluated after fonts for +% title text have been set up, i.e., the \texttt{em} will be based +% on the then current font. +% \endgraf +% In the display template it is a vertical dimension!} +% {20 pt} +% +% \TemplateSemantics +% +% Implements a heading layout where number and title are vertically +% separated. It is what \LaTeX{} always used by default for +% \cs{chapter} and \cs{part}. +% +% Several of the key names are simply bad and need a revision! +% \end{TemplateDescription} +% +% +% \subsection{Implementation of \texttt{-v1} templates} +% +% \begin{template}{heading display-v1} +% \begin{macrocode} +\DeclareTemplateInterface{heading}{display-v1}{9} +{ + , name : tokenlist + , parent-name : tokenlist + , reset-counter : tokenlist + , level : integer = 0 + , placement : choice {page , top , normal } = normal + , mark-cmd : function(1) = + , para-indent : choice { true , false } = false + , before-vspace : skip = 0pt + , penalty : integer = \c_max_int + , after-penalty-vspace : skip = 0pt + , after-vspace : skip = 0pt + , start-code : tokenlist = % no default values! + , final-code : tokenlist = % no default values! + , prefix : tokenlist = \NoValue + , heading-decls : tokenlist = \normalfont + , prefix-decls : tokenlist = + , number-decls : tokenlist = + , title-decls : tokenlist = + , subtitle-decls : tokenlist = + , quote-decls : tokenlist = + , headformat-instance : tokenlist = std + , number-format : function(1) = \theheading + , contents-extra : tokenlist = +} +\DeclareTemplateCode{heading}{display-v1}{9} +{ + , name = \l__head_name_tl + , level = \l__head_level_int + , parent-name = \l__head_pname_tl + , reset-counter = \l__head_reset_cnt_tl + , placement = { + ,page = \__head_debug_typeout:n{ A~ page~ heading } + \tl_set:Nn \l__head_placement_tl { page } + ,top = \__head_debug_typeout:n{ A~ top~ heading } + \tl_set:Nn \l__head_placement_tl { top } + ,normal = \__head_debug_typeout:n{ A~ normal~ heading } + \tl_set:Nn \l__head_placement_tl { normal } + } + , mark-cmd = \__head_mark_cmd:n + , para-indent = { + ,true = \@afterindenttrue + ,false = \@afterindentfalse + } + , before-vspace = \l__head_before_skip + , penalty = \l__head_penalty_int + , after-penalty-vspace = \l__head_after_penalty_skip + , after-vspace = \l__head_after_skip + , start-code = \l__head_start_code_tl + , final-code = \l__head_final_code_tl + , prefix = \l__head_typeset_prefix_tl + , headformat-instance = \l__head_headformat_instance_tl + , heading-decls = \l__head_heading_decls_tl + , prefix-decls = \l__head_prefix_decls_tl + , number-decls = \l__head_number_decls_tl + , title-decls = \l__head_title_decls_tl + , subtitle-decls = \l__head_subtitle_decls_tl + , quote-decls = \l__head_quote_decls_tl + , number-format = \__head_number_format:n + , contents-extra = \l__head_contents_extra_tl +} +{ + \tl_set_eq:Nc \theheading { the \l__head_name_tl } + \tl_set:Ne\l__head_saved_secnumdepth_tl{\int_use:N\c@secnumdepth} + \__head_show_arguments:nnnnnnnnn + {#1}{#2}{#3}{#4}{#5}{#6}{#7}{#8}{#9} + \tl_if_empty:oF {#1} { \SetTemplateKeys{heading}{display}{#1} } + \tl_if_empty:oT \l__head_start_code_tl + { \str_case:VnF \l__head_placement_tl + { + { page } + { \tl_set:Nn \l__head_start_code_tl + { + \if@openright + \cleardoublepage + \else + \clearpage + \fi + \thispagestyle{plain} + \if@twocolumn + \onecolumn + \@tempswatrue + \else + \@tempswafalse + \fi + \null\vfil + } + } + { top } + { \tl_set:Nn \l__head_start_code_tl + { + \if@openright\cleardoublepage\else\clearpage\fi + \thispagestyle{plain} + \global\@topnum\z@ + } + } + } + { \tl_clear:N \l__head_start_code_tl } + } + \tl_if_empty:oT \l__head_final_code_tl + { \str_case:VnF \l__head_placement_tl + { + { page } + { \tl_set:Nn \l__head_final_code_tl + { + \vfil\newpage + \if@twoside + \if@openright + \null + \thispagestyle{empty} + \newpage + \fi + \fi + \if@tempswa + \twocolumn + \fi + } + } + } + { \tl_set:Nn \l__head_final_code_tl { \@afterheading } } + } + \__head_determine_penalty: +% \end{macrocode} +% Next lines are an inline version of +% \cs{__head_determine_number_typesetting:N}\verb= #2= +% This macro has changed so here we inline the original code; +% \begin{macrocode} + \bool_set:Nn \l__head_unnumbered_bool + { \bool_lazy_or_p:nn + { \int_compare_p:nNn \l__head_level_int > \c@secnumdepth } + { \bool_if_p:N #2 } + } + \bool_if:NTF \l__head_unnumbered_bool + { + \int_gset:Nn\c@secnumdepth{-99} + \tl_clear:N \l__head_typeset_number_tl + } + { + \@kernel@refstepcounter{ \l__head_name_tl } + \protected@edef \l__head_typeset_number_tl + { + \__head_number_format:n { \l__head_name_tl } + } + } +% \end{macrocode} +% End of inlined code. +% \begin{macrocode} + \__head_vertical_before_spacing: + \UseTaggingSocket{sec/end}{\int_use:N\l__head_level_int} + \UseTaggingSocket{sec/begin} + {{\int_use:N\l__head_level_int} + {tag=\UseStructureName{sec/\int_use:N\l__head_level_int}}} + \__head_debug_typeout:n{use~ 'headformat'~instance:~ + \l__head_headformat_instance_tl } + \use:e { + \UseInstance{headformat} { \l__head_headformat_instance_tl } + { \exp_not:o \UnusedTemplateKeys } + { \exp_not:o { \l__head_typeset_prefix_tl } } + { \exp_not:o { \l__head_typeset_number_tl } } + { \exp_not:n { #3 } } + { \exp_not:o { \use_i:nn #9 } } + { \exp_not:o { \use_ii:nn #9 } } + } + \__head_handle_marks_etc:nnnnn {#4}{#5}{#6}{#7}{#8} + \int_gset:Nn\c@secnumdepth{\l__head_saved_secnumdepth_tl} + \par \nobreak + \skip_vertical:N \l__head_after_skip + \l__head_final_code_tl + \ignorespaces +} +% \end{macrocode} +% \end{template} +% +% +% +% +% +% \begin{template}{heading runin-v1} +% \begin{macrocode} +\DeclareTemplateCopy{heading}{runin-v1}{display-v1} +\DeclareTemplateCode{heading}{runin-v1}{9} + { + , name = \l__head_name_tl + , level = \l__head_level_int + , parent-name = \l__head_pname_tl + , reset-counter = \l__head_reset_cnt_tl + , placement = { + page = \typeout{ ^^JA~ runin~ page~ placement~ heading~makes~no~sense + (top~used)} + \tl_set:Nn \l__head_placement_tl { top } + ,top = \__head_debug_typeout:n{ A~ top~ heading } + \tl_set:Nn \l__head_placement_tl { top } + ,normal = \__head_debug_typeout:n{ A~ normal~ heading } + \tl_set:Nn \l__head_placement_tl { normal } + } + , mark-cmd = \__head_mark_cmd:n + , para-indent = { + ,true = %\typeout{para-indent~ setting~ ignored} + ,false = %\typeout{para-indent~ setting~ ignored} + } + , before-vspace = \l__head_before_skip + , penalty = \l__head_penalty_int + , after-penalty-vspace = \l__head_after_penalty_skip + , after-vspace = \l__head_after_skip + , start-code = \l__head_start_code_tl + , final-code = \l__head_final_code_tl + , prefix = \l__head_typeset_prefix_tl + , headformat-instance = \l__head_headformat_instance_tl + , heading-decls = \l__head_heading_decls_tl + , prefix-decls = \l__head_prefix_decls_tl + , number-decls = \l__head_number_decls_tl + , title-decls = \l__head_title_decls_tl + , subtitle-decls = \l__head_subtitle_decls_tl + , quote-decls = \l__head_quote_decls_tl + , number-format = \__head_number_format:n + , contents-extra = \l__head_contents_extra_tl +} +{ + \__head_show_arguments:nnnnnnnnn + {#1}{#2}{#3}{#4}{#5}{#6}{#7}{#8}{#9} + \tl_set:Ne\l__head_saved_secnumdepth_tl{\int_use:N\c@secnumdepth} + \tl_set_eq:Nc \theheading { the \l__head_name_tl } + \tl_if_empty:oF {#1} { \SetTemplateKeys{heading}{runin}{#1} } + \tl_if_empty:oT \l__head_start_code_tl + { + \str_case:Vn \l__head_placement_tl + { + { top } { \tl_set:Nn \l__head_start_code_tl {\clearpage } } + } + } + \__head_determine_penalty: +% \end{macrocode} +% Next lines are an inline version of +% \cs{__head_determine_number_typesetting:N}\verb= #2= +% This macro has changed so here we inline the original code; +% \begin{macrocode} + \bool_set:Nn \l__head_unnumbered_bool + { \bool_lazy_or_p:nn + { \int_compare_p:nNn \l__head_level_int > \c@secnumdepth } + { \bool_if_p:N #2 } + } + \bool_if:NTF \l__head_unnumbered_bool + { + \int_gset:Nn\c@secnumdepth{-99} + \tl_clear:N \l__head_typeset_number_tl + } + { + \@kernel@refstepcounter{ \l__head_name_tl } + \protected@edef \l__head_typeset_number_tl + { + \__head_number_format:n { \l__head_name_tl } + } + } +% \end{macrocode} +% End of inlined code. +% \begin{macrocode} + \__head_vertical_before_spacing: + \UseTaggingSocket{sec/end}{\int_use:N\l__head_level_int} + \UseTaggingSocket{sec/begin} + {{\int_use:N\l__head_level_int}{tag=\UseStructureName{sec/\int_use:N\l__head_level_int}}} + \UseTaggingSocket{sec/title/init}{\int_use:N\l__head_level_int} + \def \@svsechd { + \__head_debug_typeout:n{use~ 'headformat'~instance:~ + \l__head_headformat_instance_tl } + \use:e { + \UseInstance{headformat} { \l__head_headformat_instance_tl } + { \exp_not:o \UnusedTemplateKeys } + { \exp_not:o { \l__head_typeset_prefix_tl } } + { \exp_not:o { \l__head_typeset_number_tl } } + { \exp_not:n { #3 } } + { \exp_not:o { \use_i:nn #9 } } + { \exp_not:o { \use_ii:nn #9 } } + } + \__head_handle_marks_etc:nnnnn {#4}{#5}{#6}{#7}{#8} + \int_gset:Nn\c@secnumdepth{\l__head_saved_secnumdepth_tl} + } + \@nobreakfalse + \global\@noskipsectrue + \everypar{% + \if@noskipsec + \global\@noskipsecfalse + {\setbox\z@\lastbox} + \clubpenalty\@M + \@svsechd + \unskip + \UseTaggingSocket{sec/title/split} + \skip_horizontal:N \l__head_after_skip + \else + \clubpenalty \@clubpenalty + \everypar{}% + \fi + } + \l__head_final_code_tl + \ignorespaces +} +% \end{macrocode} +% \end{template} +% +% +% +% +% +% +% +% \begin{template}{headformat display-v1} +% The \texttt{display} template produces +% \begin{macrocode} +\DeclareTemplateInterface{headformat}{display-v1}{6} +{ + , heading-indent : length = 0pt + , title-format : function(1) = #1 + , prefix-number-sep : tokenlist = \WordSpaceAmount{1} + , number-title-sep : tokenlist = 20pt +} +% \end{macrocode} +% \end{template} +% +% \begin{template}{headformat hang-v1} +% \begin{macrocode} +\DeclareTemplateInterface{headformat}{hang-v1}{6} +{ + , heading-indent : length = 0pt + , title-format : function(1) = #1 + , prefix-number-sep : tokenlist = \WordSpaceAmount{1} + , number-title-sep : tokenlist = 1em +} +% \end{macrocode} +% \end{template} +% +% +% \begin{template}{headformat runin-v1} +% \begin{macrocode} +\DeclareTemplateInterface{headformat}{runin-v1}{6} +{ + , heading-indent : length = 0pt + , title-format : function(1) = #1 + , prefix-number-sep : tokenlist = \WordSpaceAmount{1} + , number-title-sep : tokenlist = 1em +} +% \end{macrocode} +% \end{template} +% +% +% +% \begin{template}{headformat display-v1} +% \begin{macrocode} +\DeclareTemplateCode{headformat}{display-v1}{6} + % args: keys,prefix,number,title,subtitle,quotation + { + , heading-indent = \l_@@_heading_indent_dim + , title-format = \@@_title_format:n + , prefix-number-sep = \l_@@_prefix_number_sep_tl + , number-title-sep = \l_@@_number_title_sep_tl + } + { + \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} + \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{display-v1}{#1} } + \group_begin: + \UseTaggingSocket{sec/title/begin}{{\int_use:N\l_@@_level_int}{#4}} + \normalfont + \interlinepenalty \@M + \l_@@_heading_decls_tl{} + \bool_if:NTF \l_@@_unnumbered_bool + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget[\l_@@_name_tl]{} + } + { + \MakeLinkTarget[\l_@@_name_tl]{} + \skip_horizontal:N \l_@@_heading_indent_dim + } + } + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget{\l_@@_name_tl} + } + { + \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim + } + \IfNoValueF{#2} + { + { \l_@@_prefix_decls_tl #2 } + \nobreak + \skip_horizontal:n { \l_@@_prefix_number_sep_tl } + } + \l_@@_number_decls_tl + #3 + \par\nobreak + \skip_vertical:n { \l_@@_number_title_sep_tl } + } + \l_@@_title_decls_tl + \@@_title_format:n {#4} + \par + \UseTaggingSocket{sec/title/end} + \group_end: +} +% \end{macrocode} +% \end{template} +% +% +% +% +% +% +% \begin{template}{headformat hang-v1} +% \begin{macrocode} +\DeclareTemplateCode{headformat}{hang-v1}{6} + { + , heading-indent = \l_@@_heading_indent_dim + , title-format = \@@_title_format:n + , prefix-number-sep = \l_@@_prefix_number_sep_tl + , number-title-sep = \l_@@_number_title_sep_tl + } + { + \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} + \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{hang-v1}{#1} } + \group_begin: + \UseTaggingSocket{sec/title/init}{\int_use:N\l_@@_level_int} + \normalfont + \interlinepenalty \@M + \l_@@_heading_decls_tl{} + \bool_if:NTF \l_@@_unnumbered_bool + { + \tl_set:Nn\l_@@_tmpa_tl + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget[\l_@@_name_tl]{} + } + { + \MakeLinkTarget[\l_@@_name_tl]{} + \skip_horizontal:N \l_@@_heading_indent_dim + } + } + } + { + \tl_set:Nn \l_@@_tmpa_tl + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget{\l_@@_name_tl} + } + { + \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim + } + \IfNoValueF{#2} + { + { \l_@@_prefix_decls_tl #2 } + \nobreak + \skip_horizontal:n { \l_@@_prefix_number_sep_tl } + } + { \l_@@_number_decls_tl #3 } + \skip_horizontal:n { \l_@@_number_title_sep_tl } + } + } + \UseTaggingSocket{sec/title/hang} + {{\int_use:N\l_@@_level_int}\l_@@_unnumbered_bool{\l_@@_tmpa_tl}{#4}} + { + \@hangfrom + { + \l_@@_tmpa_tl + } + } + \l_@@_title_decls_tl + \@@_title_format:n {#4} + \par + \group_end: +} +% \end{macrocode} +% \end{template} +% +% +% \begin{template}{headformat runin-v1} +% \begin{macrocode} +\DeclareTemplateCode{headformat}{runin-v1}{6} + { + , heading-indent = \l_@@_heading_indent_dim + , title-format = \@@_title_format:n + , prefix-number-sep = \l_@@_prefix_number_sep_tl + , number-title-sep = \l_@@_number_title_sep_tl + } + { + \@@_show_arguments:nnnnnn {#1}{#2}{#3}{#4}{#5}{#6} + \tl_if_empty:oF {#1} { \SetTemplateKeys{headformat}{runin-v1}{#1} } + \group_begin: + \normalfont + \interlinepenalty \@M + \l_@@_heading_decls_tl{} + \bool_if:NTF \l_@@_unnumbered_bool + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget[\l_@@_name_tl]{} + } + { + \MakeLinkTarget[\l_@@_name_tl]{} + \skip_horizontal:N \l_@@_heading_indent_dim + } + } + { + \dim_compare:nNnTF \l_@@_heading_indent_dim < \c_zero_skip + { + \skip_horizontal:N \l_@@_heading_indent_dim + \MakeLinkTarget{\l_@@_name_tl} + } + { + \MakeLinkTarget{\l_@@_name_tl} + \skip_horizontal:N \l_@@_heading_indent_dim + } + { + \UseTaggingSocket{sec/title/number}{\int_use:N\l_@@_level_int} + { + \IfNoValueF{#2} + { + { \l_@@_prefix_decls_tl #2 } + \nobreak + \skip_horizontal:n { \l_@@_prefix_number_sep_tl } + } + \l_@@_number_decls_tl + #3 + } + } + \skip_horizontal:n { \l_@@_number_title_sep_tl } + } + \l_@@_title_decls_tl + \@@_title_format:n {#4} + \group_end: +} +% \end{macrocode} +% \end{template} +% +% +% +% +% +% +% +% % \end{implementation} % % diff --git a/required/latex-lab/latex-lab-sec.dtx b/required/latex-lab/latex-lab-sec.dtx index 362550b43..52410ae50 100644 --- a/required/latex-lab/latex-lab-sec.dtx +++ b/required/latex-lab/latex-lab-sec.dtx @@ -15,13 +15,15 @@ % % https://github.com/latex3/latex2e/issues % -\def\ltlabsecdate{2026-08-13} +\def\ltlabsecdate{2026-08-31} \def\ltlabsecversion{0.84p} %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} \documentclass[kernel]{l3in2edoc} +\usepackage{todonotes} + \EnableCrossrefs \CodelineIndex \begin{document} @@ -46,6 +48,12 @@ % % \providecommand\hook[1]{\texttt{#1}} % +% \NewDocumentCommand\fmi{sO{}m} +% {\IfBooleanTF{#1}{\todo[inline,#2]{#3}}^^A +% {\todo[#2]{#3}}} +% +% +% % \begin{abstract} % The following code implements a first draft for the tagging of heading commands. % \end{abstract} @@ -80,7 +88,9 @@ % a \emph{heading tag}, typically \texttt{Hn} with some value of \texttt{n}. % In theory, one could/should put the number of the heading in an \texttt{Lbl} structure. % However, current AT doesn't handle this well, so -% we use a tag \texttt{section-number} that is role-mapped to \texttt{Span}. +% we use a tag \texttt{section-number} that is role-mapped to +% \texttt{Span}.\fmi{Now \texttt{heading-number} role-mapped to \texttt{Lbl} +% or does this need to be Span in 1.7?} % The number of the \texttt{Hn} tag should reflect the \enquote{natural} level. % So in an article \cs{section} will use \texttt{H1}, in a book \cs{chapter} will use % \texttt{H1} and \cs{section} \texttt{H2}. @@ -145,7 +155,7 @@ % % \item The number in \cs{part} and \cs{chapter} is currently not correctly % tagged as a \texttt{section-number} as this requires to redefine the internal (class dependent) -% commands too. +% commands too.\fmi{no longer correct in the template version} % % \end{itemize} % @@ -318,7 +328,7 @@ \pdf_purify:nN{#2}\l_@@_sec_tmpa_tl \tag_struct_begin:n{tag=\UseStructureName{sec/#1/title},title-o={\l_@@_sec_tmpa_tl}} \bool_set_true:N\l_@@_para_flattened_bool - \AssignStructureRole{para/textblock}{\UseStructureName{sec/#1/titleline}} + \AssignStructureRole{para/textblock}{\UseStructureName{sec/#1/fragment}} } % \end{macrocode} % \end{macro} diff --git a/required/latex-lab/latex-lab-template.dtx b/required/latex-lab/latex-lab-template.dtx index 0666aab75..b15b9a877 100644 --- a/required/latex-lab/latex-lab-template.dtx +++ b/required/latex-lab/latex-lab-template.dtx @@ -17,8 +17,8 @@ % % https://github.com/latex3/latex2e/issues % -\def\ltlabtemplatedate{2026-08-07} -\def\ltlabtemplateversion{0.6c} +\def\ltlabtemplatedate{2026-09-06} +\def\ltlabtemplateversion{0.6f} %<*driver> \DocumentMetadata{tagging=on,pdfstandard=ua-2} @@ -57,6 +57,7 @@ % % \providecommand\struct[1]{\texttt{<#1>}} % +% \DeleteShortVerb\| % % \title{Extending the \LaTeX{} templating mechanism} % \author{\LaTeX{} Project\thanks{Initial implementation by Frank Mittelbach.}} @@ -112,8 +113,8 @@ % \cs{l_@@_\meta{order}_clist}, e.g., in % \cs{DeclareTemplateInterface} %\begin{verbatim} -% caption-order : commalist = { title, separator-1, -% number, separator-2, note, punct } +% caption-order : commalist = { title, separator-a, +% number, separator-b, note, punct } %\end{verbatim} % and in \cs{DeclareTemplateCode} %\begin{verbatim} @@ -135,28 +136,28 @@ % \subsection{Conventions for the items in the \meta{order} key clist} % % For each \meta{item} in the comma list, e.g, in the above example -% \texttt{title}, \texttt{separator-1}, \texttt{number}, -% \texttt{punct}, \texttt{separator-2}, and \texttt{note}, there has +% \texttt{title}, \texttt{separator-a}, \texttt{number}, +% \texttt{punct}, \texttt{separator-b}, and \texttt{note}, there has % to exist a variable with the name \cs{l_@@_\meta{item}_tl}. If % the items themselves are keys in the template that is achieved % through settings such as %\begin{verbatim} % title : tokenlist = Lemma , -% separator-1 : tokenlist = \enspace , +% separator-a : tokenlist = \enspace , % ... %\end{verbatim} % and %\begin{verbatim} % title = \l_@@_title_tl , -% separator-1 = name {l_@@_separator-1_tl} , +% separator-a = name {l_@@_separator-a_tl} , % ... %\end{verbatim} % Again, we had to make use of the \texttt{name} keyword because -% the key \key{separator-1} contains a hyphen. +% the key \key{separator-a} contains a hyphen. % % If the data of such an item is user input and provided through a % mandatory argument to the template, e.g., the data for a -% \texttt{note}, then you fulfill the requirement by defining the +% \texttt{note}, then you can fulfill the requirement by defining the % variable in the template code, e.g., %\begin{verbatim} % \tl_set:Nn \l_@@_note_tl {#3} @@ -167,8 +168,8 @@ % passing \cs{NoValue} to the template in that argument (as long as % \cs{NewDocumentCommand} or a similar extended command definition % offered by the \LaTeX{} kernel is used). In that case the -% mechanism correctly interprets this and ignores \texttt{note} in -% the processing of the \meta{order} key. +% mechanism correctly interprets this and ignores a \texttt{note} +% item in the processing of the \meta{order} key. % % The existence of \cs{l_@@_\meta{item}_tl} is required: if it is % not defined, then using \meta{item} in the comma list will lead to @@ -187,7 +188,7 @@ % \item[\cs{@@_\meta{item}_format:n}] % % A command that receives the \meta{item} data as its argument and -% can then manipulate it prior to typsetting. +% can then manipulate it prior to typesetting. % % \end{description} % @@ -200,6 +201,17 @@ % \cs{group_end:} % \end{quote} % +% Note that this means that paragraph parameters (such as +% \cs{baselineskip}) that are only evaluated at the end of a +% paragraph are ignored if placed in \cs{l_@@_\meta{item}_decls_tl} +% or \cs{@@_\meta{item}_format:n} unless the latter contains a +% \cs{par} that ends the current paragraph.\footnote{This is +% different from separator items that are executed outside of these +% groups. This means that parameter changes done in a separator are +% seen by all following \meta{item}s.} +% +% +% % Strictly speaking, the \cs{l_@@_\meta{item}_decls_tl} token list % is not needed, since all one can do with it can also be done % through a suitably defined \cs{@@_\meta{item}_format:n} @@ -221,12 +233,21 @@ % Besides items containing textual data there is also often the % need to specify data that separates them (typically by some % space). These separators need a somewhat different handling, -% because if one item such as a \key{note} is not present, then a -% separator before it should be dropped, e.g., one should not get +% because if an item such as a \key{note} is not present, then a +% separator before it should normally be dropped, e.g., one does +% not want to get % \enquote{Lemma 3.2\textvisiblespace .} but \enquote{Lemma 3.2.} % if the punctuation key \key{punct} comes at the end of the -% \meta{order} list. +% \meta{order} list and the \key{note} before it was dropped. +% +% Similarly, in some situations one wants to drop a separator after +% a data item that has no value, that can be done too, by combining +% the separator with the special \texttt{?} or \texttt{|} items +% discussed below. % +% To support this behavior, it is necessary for the mechanism to +% identify that a \meta{item} name is a separator and not a normal +% textual item. % We therefore recommend to use (some of) the following names that % have already been prepared for use with the % mechanism.\footnote{It is possible to use other names or provide @@ -234,21 +255,21 @@ % really necessary, but the five (or rather six) we offer should % normally be sufficient.} % -% so the typical setup is +% So a typical setup is %\begin{verbatim} -% separator-1 : tokenlist = \ , -% separator-2 : tokenlist = \ , +% separator-a : tokenlist = \ , +% separator-b : tokenlist = \ , % ... %\end{verbatim} % %\begin{verbatim} -% separator-1 = name {l_@@_separator-1_tl} , -% separator-2 = name {l_@@_separator-2_tl} , +% separator-a = name {l_@@_separator-a_tl} , +% separator-b = name {l_@@_separator-b_tl} , % ... %\end{verbatim} -% up to \key{separator-5} and for cases where you need only one -% separator there is also the key \texttt{separator} (which can of -% course also be used in addition to the others). +% up to \key{separator-e} and for cases where you need only one +% separator there is also the key \texttt{separator} (which can, of +% course, also be used in addition to the others). % % If several separators are specified directly after another in the % \meta{order} clist then all of them are typeset or dropped @@ -256,47 +277,94 @@ % at the very start of the clist use the same logic. % % If a separator is specified at the very end of the clist it is -% always typeset. +% always typeset (unless the special item \text{|} is used after it +% in which case it is only typeset if the preceding data item had a value). % % If you need some separation that should not be dropped in case % the next normal item is absent (i.e., has \cs{NoValue} as its -% value) then you can't use the standard separators. In that case use a -% normal item and give it the value that you want for the -% separation, e.g., a newline plus some vertical spacing. +% value) then you can use \texttt{|} after it to control it from +% the previous data item or use \texttt{!} to typeset it +% unconditionally. % % -% \subsection{Grouping keys in the \meta{order} key clist} +% \subsection{The special items \texttt{?}, \texttt{|}, and +% \texttt{!} in the \meta{order} key clist} % -% In some cases it is necessary to group some items in the \meta{order} -% clist, e.g., to indicate that the \texttt{prefix} and the -% \texttt{number} form the caption -% label. This is done by using special items in the clist: -% \texttt{<\meta{name}} to start a group and +% Separators \emph{before} an item that has \cs{NoValue} as its value are +% dropped, but in some cases some or all of the separators +% \emph{following} such an item should also be dropped. For +% example, in the order list +%\begin{verbatim} +% order = {prefix, separator-a, number, ... +%\end{verbatim} +% one normally doesn't want a space in front of the \texttt{number} +% if there is no \texttt{prefix}. To implement such scenarios +% easily, one can use the special item \texttt{?}, which has the +% following effect: it drops all collected separators if the +% last data item was dropped, otherwise it does nothing and the +% decision what to do with the collected separators happens when +% the next data item is processed. For +% example, if we have +%\begin{verbatim} +% order = {prefix, separator-a, ? , separator-b, number, ... +%\end{verbatim} +% and \texttt{prefix} was \cs{NoValue} then \texttt{separator-a} is +% dropped but \texttt{separator-b} after the \texttt{?} is used +% unless \texttt{number} is also \cs{NoValue}. If \texttt{prefix} +% has a value but \texttt{number} has no value, then both +% separators are dropped. +% +% The \texttt{|} special item is similar but in that case +% separators on the left of it are fully controlled by the previous +% data item, i.e., if that item has no value they are dropped and if it +% has a value then they are directly typeset and thus independent +% of the next data item. +% +% Finally, there is also a \texttt{!} special item which results in +% all collected separators to be unconditionally typeset, i.e., +% \texttt{separator,!} behaves as if the separator is a normal data +% item (except that separators do not have corresponding +% \texttt{...-decls} or \texttt{...-format} keys for customization). +% +% For even more granular control, there is also +% \cs{IfValueLastOrderItemTF} which can be used inside a separator +% (or even inside the value of a normal data item) +% to produce different actions depending on whether or not the last +% data item had a value. +% +% +% \subsection{Grouping items in the \meta{order} key clist} +% +% In some cases it is necessary to group some items in the +% \meta{order} clist, e.g., to indicate that the \texttt{prefix} +% and the \texttt{number} form the caption label when it comes to +% tagging structures. This is done by using special items in the +% clist: \texttt{<\meta{name}} to start a group and % \texttt{\meta{name}>} to end it. For example %\begin{verbatim} -% order = { , ... } +% order = { , ... } %\end{verbatim} -% would group \texttt{prefix}, \texttt{separator-1}, and +% would group \texttt{prefix}, \texttt{separator-a}, and % \texttt{number}. % % These special group items have to be declared using the % declaration \cs{template_new_order_group:nnnnnn}. With such a -% declaration they are made known to the order key -% processing mechanism and the necessary tagging support code is defined, -% e.g., in the above example tagging support would probably add a -% \struct{Lbl} structure. +% declaration they are made known to the order key processing +% mechanism. In addition, the necessary tagging support code is +% defined, e.g., in the above example tagging support would +% probably add a \struct{Lbl} structure. % % Even though we may want to use \texttt{label} as a group -% \meta{name} in different kinds of templates, the underlying tagging -% support code will most likely differ from case to case. The -% declaration therefore takes the current \meta{module} as its -% first argument and \meta{name} as its second +% \meta{name} in different kinds of templates, the underlying +% tagging support code will most likely differ from case to +% case. The declaration therefore takes the current \meta{module} +% as its first argument and \meta{name} as its second % argument.\footnote{This may need extension or change, e.g., % perhaps we need to make it based on the current template type and % template name to achieve a proper separation, but for now we hope -% that \meta{module} is enough. This is quite different to the case of -% separators which can be reused across all templates because they -% only need to pass their values to the order key processing +% that \meta{module} is enough. This is quite different to the case +% of separators which can be reused across all templates because +% they only need to pass their values to the order key processing % mechanism, i.e., their definition is always the same.} The % remaining four arguments define what should happen when % \texttt{<\meta{name}} and \texttt{\meta{name}>} are @@ -322,7 +390,7 @@ % Examples for such group items can already be found in % \insttype{thmstyle} templates and in \insttype{caption} % templates. More will follow over time. - +% % % % \subsection{Processing the \meta{order} key in the template code} @@ -348,10 +416,13 @@ % This command then typesets the items listed in the \meta{order} % key or more precisely the content stored in the associated token % list parameters \cs{l_@@_\meta{item}_tl}, applying -% \cs{l_@@_\meta{item}_decls_tl} and/or \cs{@@_\meta{item}_format:n} if -% defined, and ignoring those items that have \cs{NoValue} as their -% token list value. Separators in front of ignored items are -% dropped, all others are typeset in the specified places. +% \cs{l_@@_\meta{item}_decls_tl} and/or +% \cs{@@_\meta{item}_format:n} if defined, and ignoring those items +% that have \cs{NoValue} as their token list value. Separators in +% front of ignored items are dropped, all others are typeset in the +% specified places unless the list contains any special items +% \texttt{?}, \texttt{|}, or \texttt{!} in which case they control +% what happens with the separators. % % The command also handles the tagging, i.e., it adds the necessary % structures. How this can be influenced is described below. @@ -380,7 +451,8 @@ % \item % and at the end it restores the MC state it had found at the % beginning, e.g., closes the MC if none was open at the -% start. +% start. However, if it ends in vertical mode it does not reopen +% an MC if one was open when it started. % \end{itemize} % % In addition it is also possible to surround individual items from @@ -452,8 +524,9 @@ % variables and is needed in error messages. The \meta{order key % name} is the name of the key you want to process. Finally, the % \meta{supported items} argument lists the items that are allowed -% to appear in the value of the order key. Thus a typical call -% would be +% to appear in the value of the order key (except for \texttt{?}, +% \texttt{|}, and \texttt{!} that do not need to be listed +% explicitly). Thus a typical call would be %\begin{verbatim} % \template_process_order_clist:nnn % {thmstyle} @@ -476,7 +549,7 @@ % that role which is done with \cs{template_new_order_separator:n}. % Once declared the \meta{separator item name} has this role in any % order key, i.e., in contrast to group items the declaration -% applies globablly and not only to names in a specific module. +% applies globally and not only to names in a specific module. % % A suitable number of names are predeclared, so that function % should be seldom needed. @@ -525,9 +598,15 @@ % implementation in its error message when an unknown key is % encountered as it shows the full path of the key. % -% The command \cs{@@_template_debug_typeout:n} was made public -% because a template may want to issue debugging messages that are -% activated when \cs{DebugTemplatesOn} is used. +% The command \cs{__template_debug_typeout:n} was made public (as +% \cs{template_debug_typeout:n} because any template may want to +% issue debugging messages that are activated when +% \cs{DebugTemplatesOn} is used. +% +% The conditional \cs{IfTemplateExistsTF} and its variants have +% been added so that classes or packages can check if a certain +% template is provided and then declare instances based on it and +% if not do something else. % \end{documentation} % % \MaybeStop{} @@ -559,22 +638,23 @@ % \begin{macro}{\checkstatus} % A temporary debugging helper. % \begin{macrocode} - \cs_new_protected:Npn \checkstatus #1 { \@@_debug_typeout:n{-------------------- #1 ----------------} \mode_if_horizontal:TF { \@@_debug_typeout:n{==>~hmode} } { \@@_debug_typeout:n{==>~vmode} } - \@@_debug_typeout:n{==>~para-tagging:~ - \bool_if:NTF \l__tag_para_bool {on}{off} - } + + \@@_debug_typeout:n{==>~para-tagging:~ + \bool_if:NTF \l__tag_para_bool + { on~ (using~ \l__tag_para_tag_tl)} + { off } + } \tag_mc_if_in:TF { \@@_debug_typeout:n{\@spaces mc~ status:~ open} } { \@@_debug_typeout:n{\@spaces mc~ status:~ closed} } - \@@_debug:n { \ShowTagging{struct-stack=log} } + \@@_debug:n { \ShowTagging{struct-stack=log } } +% \@@_debug:n { \ShowTagging{struct-stack } } } - - % \end{macrocode} % \end{macro} % @@ -587,19 +667,37 @@ \@@_debug_typeout:n { Processing~ order~ key~ '#2'} \checkstatus{Start} % \end{macrocode} +% +% \begin{macrocode} + \group_begin: +% \end{macrocode} % Setting up the command to restore the MC state after -% processing. This can be shortened a lot if the debugging code gets -% removed. +% processing. This can be shortened a lot if the debugging code +% gets removed and then it could probably use the push/pop +% commands.\fmi{drop the debugging eventually} % \begin{macrocode} \tag_mc_if_in:TF { \cs_set_protected:Npn \@@_restore_mc_state: { - \tag_mc_if_in:TF - { \@@_debug_typeout:n {\@spaces mc~ restore~ - already~open} - } - { \@@_debug_typeout:n {\@spaces mc~ restore~ to~ open} - \tag_mc_begin:n{} - } + \mode_if_horizontal:TF + { + \tag_mc_if_in:TF + { \@@_debug_typeout:n {\@spaces mc~ restore~ + already~open} + } + { \@@_debug_typeout:n {\@spaces mc~ restore~ to~ open} + \tag_mc_begin:n{} + } + } +% \end{macrocode} +% Do not restore an initially open MC if we end up in vertical mode +% after the order key processing. That means there was some +% \cs{par} along the way and we assume that this did the closing +% (which would be the correct state then)\fmi{Verify logic, I +% haven't fully convinced myself!} +% \begin{macrocode} + { \@@_debug_typeout:n {\@spaces no~ mc~ restore~ in~ + vertical~ mode } + } } } { \cs_set_protected:Npn \@@_restore_mc_state: { @@ -613,9 +711,21 @@ } } % \end{macrocode} -% Save the list of allowed items for checking later. +% To support the special \texttt{?}, \texttt{|}, and \texttt{!} +% values in any order list we need to announce it to the +% algorithm. The flag used for this is a token list that has the +% current module in its name, so we do this here, because there is +% no point in making the template writer add this. % \begin{macrocode} - \clist_set:Nn \l_@@_allowed_items_clist { #3 } + \tl_clear_new:c { l _ _ #1_?_tl } + \tl_clear_new:c { l _ _ #1_|_tl } + \tl_clear_new:c { l _ _ #1_!_tl } +% \end{macrocode} +% Also initialize the boolean that tells us if the last data item +% had a value (start of the list is considered to be an invisible +% item with a value). +% \begin{macrocode} + \bool_gset_true:N \g_@@_order_item_value_bool % \end{macrocode} % % Loop through the comma list stored in the order key and process @@ -623,10 +733,13 @@ % but we write it as % \verb*=l _ _ #...= in the code to avoid bogus warnings from % \texttt{l3doc} about using private names from other modules. We do -% the same for other construct variables. +% the same for other construct variables. Argument \texttt{\#3} +% holds the list of allowed items to which we add \texttt{?}, +% \texttt{|}, and \texttt{!} +% because they should be always allowed. % \begin{macrocode} \clist_map_inline:cn {l _ _ #1_#2_clist } - { \clist_if_in:NnTF \l_@@_allowed_items_clist { ##1 } + { \clist_if_in:nnTF { ?, | , ! , #3 } { ##1 } { % \end{macrocode} % For each clist item the token list \cs{l__\meta{module}_\meta{item}_tl} @@ -637,8 +750,7 @@ % came from. % \begin{macrocode} \cs_if_exist:cTF { l _ _ #1_##1_tl } - { - \exp_args:Ncc + { \exp_args:Ncc \@@_process_order_key:NNnnn { l _ _ #1_##1_tl } { l _ _ #1_##1_tag_tl } @@ -647,15 +759,15 @@ { #2 } } % \end{macrocode} -% If the token list doesn't exist or the item is not in the -% \cs{l_@@_allowed_items_clist} we raise an error: +% If the token list doesn't exist we raise an error: % \begin{macrocode} { \msg_error:nnnn { template } { unknown-key-value } { #2 } { ##1 } } } % \end{macrocode} -% If the item was not in the allowed list we raise the same error. +% If the item was not in the allowed list (i.e., +% \texttt{?,|,!,\#3}) we raise the same error. % \begin{macrocode} { \msg_error:nnnn { template } { unknown-key-value } { #2 } { ##1 } @@ -668,19 +780,25 @@ \@@_insert_collected_separators: % \end{macrocode} % -% \begin{macrocode} - \checkstatus{End} -% \end{macrocode} % Then we restore the MC state that was current at the beginning. % \begin{macrocode} \@@_restore_mc_state: % \end{macrocode} +% +% \begin{macrocode} + \group_end: +% \end{macrocode} +% +% \begin{macrocode} + \checkstatus{End} +% \end{macrocode} +% % Finally we clear all token lists that may have been set up by the % template and used the processing. This avoids that we get bogus % matches in other templates that also use the item name but % without setting up default declarations for customization. % \begin{macrocode} - \clist_map_inline:Nn \l_@@_allowed_items_clist + \clist_map_inline:nn {#3} { % \end{macrocode} % The list may contain group items starting with \texttt{<} and for @@ -689,14 +807,20 @@ % \begin{macrocode} \tl_if_head_eq_meaning:nNTF {##1} < { - \tl_clear:c { l _ _ #1_\use_none:n ##1_decls_tl } + \tl_clear_new:c { l _ _ #1_\use_none:n ##1_decls_tl } } { \tl_if_in:nnF {##1} > { - \tl_clear:c { l _ _ #1_##1_decls_tl } - \tl_clear:c { l _ _ #1_##1_tag_tl } - \cs_set_eq:cN { l _ _ #1_##1_format:n } \use:n +% \end{macrocode} +% We actually clear a bit too much as this also loops through all +% the separators but it is simply to clear a few additional token +% lists rather than to figure out if the current \texttt{\#\#1} is +% a name set up as a separator.\fmi{maybe change that.} +% \begin{macrocode} + \tl_clear_new:c { l _ _ #1_##1_decls_tl } + \tl_clear_new:c { l _ _ #1_##1_tag_tl } + \cs_set_eq:cN { l _ _ #1_##1_format:n } \use:n } } } @@ -724,10 +848,33 @@ % \end{macro} % % -% \begin{macro}{\l_@@_allowed_items_clist} -% Internal variable to hold the allow items. +% +% +% \begin{macro}{\g_@@_order_item_value_bool} +% We keep track of whether or not the last data item had a value +% through a global boolean. % \begin{macrocode} -\clist_new:N \l_@@_allowed_items_clist +\bool_new:N \g_@@_order_item_value_bool +% \end{macrocode} +% \end{macro} +% +% +% +% \begin{macro}{\IfValueLastOrderItemTF, +% \IfValueLastOrderItemT,\IfValueLastOrderItemF} +% Conditionals for use in separator values (or even data item +% values) to do some conditional processing based whether or not +% the last item had a value. +% \begin{macrocode} +\cs_new_protected:Npn \IfValueLastOrderItemTF { + \bool_if:NTF \g_@@_order_item_value_bool +} +\cs_new_protected:Npn \IfValueLastOrderItemT { + \bool_if:NT \g_@@_order_item_value_bool +} +\cs_new_protected:Npn \IfValueLastOrderItemF { + \bool_if:NF \g_@@_order_item_value_bool +} % \end{macrocode} % \end{macro} % @@ -763,11 +910,11 @@ % % We predefine a number of additional separators. % \begin{macrocode} -\template_new_order_separator:n {separator-1} -\template_new_order_separator:n {separator-2} -\template_new_order_separator:n {separator-3} -\template_new_order_separator:n {separator-4} -\template_new_order_separator:n {separator-5} +\template_new_order_separator:n {separator-a} +\template_new_order_separator:n {separator-b} +\template_new_order_separator:n {separator-c} +\template_new_order_separator:n {separator-d} +\template_new_order_separator:n {separator-e} % \end{macrocode} % % \begin{macro}{\g_@@_collected_separators_tl} @@ -814,6 +961,23 @@ % % % +% \begin{macro}{\@@_drop_collected_separators:} +% Dropping collected separators simply means clearing the +% \cs{g_@@_collected_separators_tl} token list. +% \begin{macrocode} +\cs_new:Npn \@@_drop_collected_separators: { + \tl_if_empty:NF \g_@@_collected_separators_tl + { + \@@_debug_typeout:n {\@spaces + dropping~ collected~ separators } + \tl_gclear:N \g_@@_collected_separators_tl + } +} +% \end{macrocode} +% \end{macro} +% +% +% % \begin{macro}{\@@_open_mc_if_necessary:n} % Open an MC if none is open and it isn't automatically done when % switching to hmode. The argument is a debugging/info message. @@ -877,22 +1041,19 @@ % which case we ignore it and also drop any collected separators. % \begin{macrocode} { \tl_if_novalue:oTF #1 - { - \@@_debug_typeout:n {\@spaces \exp_not:N \NoValue - \tl_if_empty:NF - \g__template_collected_separators_tl - { -~ dropping~ collected~ separators } - } - \tl_gclear:N \g__template_collected_separators_tl + { \@@_debug_typeout:n {\@spaces \exp_not:N \NoValue } + \@@_drop_collected_separators: +% \end{macrocode} +% Current item has no value so update the boolean tracking that. +% \begin{macrocode} + \bool_gset_false:N \g_@@_order_item_value_bool } % \end{macrocode} % If the item has a real value (including an empty one) we insert all % collected separators and then typeset the item in a group to keep % formatting changes local. % \begin{macrocode} - { - % \leavevmode % <-- no longer needed? - \@@_insert_collected_separators: + { \@@_insert_collected_separators: \group_begin: % \end{macrocode} % The token list variable for the tag name in \verb=#2= may not @@ -957,6 +1118,13 @@ \tag_mc_begin:n {} } \group_end: +% \end{macrocode} +% Current item had a value so update the boolean tracking that. +% \begin{macrocode} + \bool_gset_true:N \g_@@_order_item_value_bool +% \end{macrocode} +% +% \begin{macrocode} \checkstatus{After~ #4} } } @@ -966,6 +1134,49 @@ % % % +% +% \begin{macro}{\@@_process_special_order_?:nn} +% We need this internal command to tell the algorithm that +% \texttt{?} is a special item in the order list. +% +% It checks if collected separators should be dropped and if so +% does that. +% \begin{macrocode} +\cs_set:cpn { @@_process_special_order_?:nn } #1#2 { + \bool_if:NF \g_@@_order_item_value_bool + { \@@_drop_collected_separators: } +} +% \end{macrocode} +% \end{macro} +% +% +% \begin{macro}{\@@_process_special_order_|:nn} +% The special item \texttt{|} similar but immediately typesets the +% collected separators if the previous data item had a +% value. +% \begin{macrocode} +\cs_set:cpn { @@_process_special_order_|:nn } #1#2 { + \bool_if:NTF \g_@@_order_item_value_bool + { \@@_insert_collected_separators: } + { \@@_drop_collected_separators: } +} +% \end{macrocode} +% \end{macro} +% +% +% \begin{macro}{\@@_process_special_order_!:nn} +% Thee special item \texttt{!} unconditionally typesets the separators. +% \begin{macrocode} +\cs_set:cpn { @@_process_special_order_!:nn } #1#2 { + \@@_insert_collected_separators: +} +% \end{macrocode} +% \end{macro} +% +% +% +% +% % \begin{macro}{\template_new_order_group:nnnnnn} % Declare a pair of group items \texttt{<\meta{\#2}} and % \texttt{\meta{\#2}>}. @@ -1008,7 +1219,7 @@ \@@_debug_typeout:n {\@spaces use~tagging~socket~#1/#2/end } \UseTaggingSocket{X-#1/#2/end} \group_end: -\checkstatus{label~end} + \checkstatus{#2~end} } % \end{macrocode} % Here are the socket declarations: @@ -1037,7 +1248,8 @@ \tl_new:c { l _ _ #1_#2_decls_tl } % \end{macrocode} % We also need the following two token lists to be defined to keep -% the algorithm happy: +% the algorithm happy: they serve as a flag that these items are +% allowed in the order key value. % \begin{macrocode} \tl_new:c { l _ _ #1_<#2_tl } \tl_new:c { l _ _ #1_#2>_tl } @@ -1122,6 +1334,34 @@ % % % +% +% \begin{macro}{\IfTemplateExistsTF,\IfTemplateExistsT,\IfTemplateExistsF, +% \__template_if_exist:nn} +% Test if a certain template was defined (so that it can be used in +% instance declarations. +% \begin{macrocode} +\prg_new_conditional:Npnn \__template_if_exist:nn #1#2 { T, F, TF } + { + \cs_if_exist:cTF { \c__template__keytypes_root_tl #1 / #2 } + \prg_return_true: + \prg_return_false: + } +\cs_new:Npn \IfTemplateExistsTF #1#2 + { \__template_if_template_exist:nnTF {#1} {#2} } +\cs_new:Npn \IfTemplateExistsT #1#2 + { \__template_if_template_exist:nnT {#1} {#2} } +\cs_new:Npn \IfTemplateExistsF #1#2 + { \__template_if_template_exist:nnF {#1} {#2} } +% \end{macrocode} +% +% \begin{macrocode} +% \end{macrocode} +% \end{macro} +% +% +% +% +% % \begin{macrocode} \ExplSyntaxOff % \end{macrocode} diff --git a/required/latex-lab/testfiles-LM/LM-2-2.luatex.tlg b/required/latex-lab/testfiles-LM/LM-2-2.luatex.tlg index a6bbc1145..7ef211c1d 100644 --- a/required/latex-lab/testfiles-LM/LM-2-2.luatex.tlg +++ b/required/latex-lab/testfiles-LM/LM-2-2.luatex.tlg @@ -517,13 +517,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 71 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 71 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -534,13 +537,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 74 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 74 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1068,13 +1074,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 138 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 138 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1110,13 +1119,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 145 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 145 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1165,13 +1177,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 152 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 152 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -2215,12 +2230,13 @@ TEST 1: Show PDF Tags title="Input" rolemaps-to="H2" > - - 2.2 - + 2.2 + + Input - - 2.2.1 - + 2.2.1 + + Sentences and Paragraphs - - 2.2.2 - + 2.2.2 + + The Document - - 2.2.3 - + 2.2.3 + + Sectioning - - 2.2.4 - + 2.2.4 + + Displayed Material 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 70 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 70 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -543,13 +546,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 73 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 73 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1069,13 +1075,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 137 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 137 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1111,13 +1120,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 144 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 144 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1166,13 +1178,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 151 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 151 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -1242,7 +1257,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. Package tagpdf Info: closing structure 161 tagged /text-block The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {49} +> {51} > {89}. The sequence \g__tag_mc_footnote_marks_seq is empty > . @@ -1605,7 +1620,7 @@ Package tagpdf Info: closing structure 221 tagged /text-block Package tagpdf Info: closing structure 220 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {116} +> {121} > {157}. [3] Package tagpdf Info: closing structure 219 tagged /itembody @@ -2202,12 +2217,13 @@ TEST 1: Show PDF Tags title="Input" rolemaps-to="H2" > - 2.2 - + + Input - 2.2.1 - + + Sentences and Paragraphs - 2.2.2 - + + The Document - 2.2.3 - + + Sectioning - 2.2.4 - + + Displayed Material {e+} -> {141} +> {146} > {210}. [4] *************** diff --git a/required/latex-lab/testfiles-LM/LM-3-1+2.luatex.tlg b/required/latex-lab/testfiles-LM/LM-3-1+2.luatex.tlg index c3d43aba9..a248066b1 100644 --- a/required/latex-lab/testfiles-LM/LM-3-1+2.luatex.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-1+2.luatex.tlg @@ -109,13 +109,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 23 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 23 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -127,13 +130,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 26 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 26 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... 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 f2c4f0734..fdb5ec463 100644 --- a/required/latex-lab/testfiles-LM/LM-3-1+2.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-1+2.tlg @@ -106,13 +106,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 22 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 22 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -124,13 +127,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 25 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 25 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... diff --git a/required/latex-lab/testfiles-LM/LM-3-3.luatex.tlg b/required/latex-lab/testfiles-LM/LM-3-3.luatex.tlg index 186d09572..02d41a6c2 100644 --- a/required/latex-lab/testfiles-LM/LM-3-3.luatex.tlg +++ b/required/latex-lab/testfiles-LM/LM-3-3.luatex.tlg @@ -109,13 +109,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 23 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 23 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -126,13 +129,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 26 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 26 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -169,13 +175,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 32 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 32 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -212,13 +221,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 38 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 38 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -255,13 +267,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 44 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 44 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -298,13 +313,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 50 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 50 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -341,13 +359,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 56 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 56 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -384,13 +405,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 62 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 62 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -506,13 +530,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 77 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 77 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -564,13 +591,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 83 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 83 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -607,13 +637,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 89 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 89 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -764,12 +797,13 @@ TEST 1: Show PDF Tags title="Mathematical Formulas" rolemaps-to="H2" > - - 3.3 - + 3.3 + + Mathematical Formulas - - 3.3.1 - + 3.3.1 + + Some Common Structures - - 3.3.2 - + 3.3.2 + + Fractions - - 3.3.3 - + 3.3.3 + + Mathematical Symbols - - 3.3.4 - + 3.3.4 + + Log-like Functions - - 3.3.5 - + 3.3.5 + + Arrays - - 3.3.6 - + 3.3.6 + + Delimiters - - 3.3.7 - + 3.3.7 + + Multiline Formulas - - 3.3.8 - + 3.3.8 + + Putting One Thing Above Another - - 3.3.9 - + 3.3.9 + + Spacing in Math Mode - - 3.3.10 - + 3.3.10 + + Changing Style in Math Mode 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 22 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 22 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -123,13 +126,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 25 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 25 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -166,13 +172,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 31 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -209,13 +218,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 37 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 37 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -252,13 +264,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 43 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 43 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -295,13 +310,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 49 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 49 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -338,13 +356,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 55 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 55 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -381,13 +402,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 61 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 61 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -503,13 +527,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 76 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 76 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -551,13 +578,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 82 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 82 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -594,13 +624,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 88 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 88 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -632,7 +665,7 @@ Package tagpdf Info: closing structure 90 tagged /text-block Package tagpdf Info: closing structure 89 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {57} +> {65} > {73}. [2] ============================================================ @@ -746,12 +779,13 @@ TEST 1: Show PDF Tags title="Mathematical Formulas" rolemaps-to="H2" > - 3.3 - + + Mathematical Formulas - 3.3.1 - + + Some Common Structures - 3.3.2 - + + Fractions - 3.3.3 - + + Mathematical Symbols - 3.3.4 - + + Log-like Functions - 3.3.5 - + + Arrays - 3.3.6 - + + Delimiters - 3.3.7 - + + Multiline Formulas - 3.3.8 - + + Putting One Thing Above Another - 3.3.9 - + + Spacing in Math Mode - 3.3.10 - + + Changing Style in Math Mode 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 23 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 23 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -126,13 +129,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 26 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 26 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -169,13 +175,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 32 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 32 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -212,13 +221,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 38 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 38 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -667,12 +679,13 @@ TEST 1: Show PDF Tags title="Defining Commands and Environments" rolemaps-to="H2" > - - 3.4 - + 3.4 + + Defining Commands and Environments - - 3.4.1 - + 3.4.1 + + Defining Commands - - 3.4.2 - + 3.4.2 + + Defining Environmements - - 3.4.3 - + 3.4.3 + + Theorems and Such 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 22 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 22 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -123,13 +126,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 25 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 25 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -166,13 +172,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 31 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -209,13 +218,16 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex-book:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 37 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 37 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex-book:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -646,12 +658,13 @@ TEST 1: Show PDF Tags title="Defining Commands and Environments" rolemaps-to="H2" > - 3.4 - + + Defining Commands and Environments - 3.4.1 - + + Defining Commands - 3.4.2 - + + Defining Environmements - 3.4.3 - + + Theorems and Such > endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj 83 0 obj << /justify <> @@ -1488,119 +1488,119 @@ xref 0000021946 00000 n 0000021968 00000 n 0000021990 00000 n -0000033121 00000 n +0000033228 00000 n 0000022048 00000 n 0000023702 00000 n 0000000000 00000 f -0000024572 00000 n -0000024666 00000 n -0000024742 00000 n -0000024818 00000 n -0000024894 00000 n -0000024985 00000 n -0000026005 00000 n -0000026116 00000 n -0000026245 00000 n -0000026421 00000 n -0000026517 00000 n -0000026646 00000 n -0000026757 00000 n -0000026886 00000 n -0000027062 00000 n -0000027158 00000 n -0000027287 00000 n -0000027398 00000 n -0000027527 00000 n -0000027703 00000 n -0000027799 00000 n -0000027928 00000 n -0000028039 00000 n -0000028168 00000 n -0000028344 00000 n -0000028440 00000 n -0000028569 00000 n -0000028680 00000 n -0000028809 00000 n -0000028985 00000 n -0000029081 00000 n -0000029210 00000 n -0000029321 00000 n -0000029450 00000 n -0000029626 00000 n -0000029722 00000 n -0000029851 00000 n -0000029962 00000 n -0000030091 00000 n -0000030267 00000 n -0000030363 00000 n -0000030492 00000 n -0000030603 00000 n -0000030732 00000 n -0000030908 00000 n -0000031004 00000 n -0000031133 00000 n -0000031224 00000 n -0000031641 00000 n -0000031752 00000 n -0000031881 00000 n -0000032057 00000 n -0000032153 00000 n -0000032282 00000 n -0000032386 00000 n -0000032515 00000 n -0000032626 00000 n -0000032755 00000 n -0000032896 00000 n -0000032992 00000 n -0000033239 00000 n +0000024679 00000 n +0000024773 00000 n +0000024849 00000 n +0000024925 00000 n +0000025001 00000 n +0000025092 00000 n +0000026112 00000 n +0000026223 00000 n +0000026352 00000 n +0000026528 00000 n +0000026624 00000 n +0000026753 00000 n +0000026864 00000 n +0000026993 00000 n +0000027169 00000 n +0000027265 00000 n +0000027394 00000 n +0000027505 00000 n +0000027634 00000 n +0000027810 00000 n +0000027906 00000 n +0000028035 00000 n +0000028146 00000 n +0000028275 00000 n +0000028451 00000 n +0000028547 00000 n +0000028676 00000 n +0000028787 00000 n +0000028916 00000 n +0000029092 00000 n +0000029188 00000 n +0000029317 00000 n +0000029428 00000 n +0000029557 00000 n +0000029733 00000 n +0000029829 00000 n +0000029958 00000 n +0000030069 00000 n +0000030198 00000 n +0000030374 00000 n +0000030470 00000 n +0000030599 00000 n +0000030710 00000 n +0000030839 00000 n +0000031015 00000 n +0000031111 00000 n +0000031240 00000 n +0000031331 00000 n +0000031748 00000 n +0000031859 00000 n +0000031988 00000 n +0000032164 00000 n +0000032260 00000 n +0000032389 00000 n +0000032493 00000 n +0000032622 00000 n +0000032733 00000 n +0000032862 00000 n +0000033003 00000 n +0000033099 00000 n +0000033346 00000 n 0000021764 00000 n 0000021629 00000 n 0000000020 00000 n -0000064424 00000 n -0000057185 00000 n -0000053634 00000 n -0000051586 00000 n -0000048095 00000 n -0000064783 00000 n +0000064531 00000 n +0000057292 00000 n +0000053741 00000 n +0000051693 00000 n +0000048202 00000 n +0000064890 00000 n 0000022012 00000 n 0000022581 00000 n 0000023439 00000 n 0000023658 00000 n -0000024374 00000 n -0000045400 00000 n -0000047035 00000 n -0000045512 00000 n -0000045587 00000 n -0000047271 00000 n -0000048249 00000 n -0000048449 00000 n -0000050502 00000 n -0000048561 00000 n -0000048637 00000 n -0000050738 00000 n -0000051739 00000 n -0000051938 00000 n -0000052676 00000 n -0000051969 00000 n -0000052035 00000 n -0000052912 00000 n -0000053789 00000 n -0000053989 00000 n -0000056098 00000 n -0000054102 00000 n -0000054179 00000 n -0000056336 00000 n -0000057340 00000 n -0000057542 00000 n -0000062939 00000 n -0000057868 00000 n -0000057944 00000 n -0000063178 00000 n -0000064580 00000 n -0000064845 00000 n -0000064961 00000 n +0000024481 00000 n +0000045507 00000 n +0000047142 00000 n +0000045619 00000 n +0000045694 00000 n +0000047378 00000 n +0000048356 00000 n +0000048556 00000 n +0000050609 00000 n +0000048668 00000 n +0000048744 00000 n +0000050845 00000 n +0000051846 00000 n +0000052045 00000 n +0000052783 00000 n +0000052076 00000 n +0000052142 00000 n +0000053019 00000 n +0000053896 00000 n +0000054096 00000 n +0000056205 00000 n +0000054209 00000 n +0000054286 00000 n +0000056443 00000 n +0000057447 00000 n +0000057649 00000 n +0000063046 00000 n +0000057975 00000 n +0000058051 00000 n +0000063285 00000 n +0000064687 00000 n +0000064952 00000 n +0000065068 00000 n trailer << /Size 116 /Root 114 0 R /Info 115 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -65094 +65201 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/scrartcl-001.tpf b/required/latex-lab/testfiles-OR-luatex/scrartcl-001.tpf index e1372023b..6090fac2b 100644 --- a/required/latex-lab/testfiles-OR-luatex/scrartcl-001.tpf +++ b/required/latex-lab/testfiles-OR-luatex/scrartcl-001.tpf @@ -218,7 +218,7 @@ endobj << /Kids [72 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 74 0 obj << /justify <> @@ -816,45 +816,45 @@ xref 0000003940 00000 n 0000003962 00000 n 0000003984 00000 n -0000009342 00000 n +0000009449 00000 n 0000004042 00000 n 0000004828 00000 n 0000000000 00000 f 0000001984 00000 n -0000005705 00000 n -0000005791 00000 n -0000005868 00000 n -0000005945 00000 n -0000006022 00000 n -0000006114 00000 n -0000006358 00000 n -0000006469 00000 n +0000005812 00000 n +0000005898 00000 n +0000005975 00000 n +0000006052 00000 n +0000006129 00000 n +0000006221 00000 n +0000006465 00000 n +0000006576 00000 n 0000002181 00000 n -0000006629 00000 n -0000006756 00000 n -0000006868 00000 n -0000006960 00000 n -0000007128 00000 n -0000007224 00000 n -0000007352 00000 n -0000007463 00000 n +0000006736 00000 n +0000006863 00000 n +0000006975 00000 n +0000007067 00000 n +0000007235 00000 n +0000007331 00000 n +0000007459 00000 n +0000007570 00000 n 0000002408 00000 n -0000007623 00000 n -0000007750 00000 n -0000007862 00000 n -0000007954 00000 n -0000008122 00000 n -0000008218 00000 n -0000008346 00000 n -0000008457 00000 n +0000007730 00000 n +0000007857 00000 n +0000007969 00000 n +0000008061 00000 n +0000008229 00000 n +0000008325 00000 n +0000008453 00000 n +0000008564 00000 n 0000002635 00000 n -0000008618 00000 n -0000008746 00000 n -0000008858 00000 n -0000008950 00000 n -0000009118 00000 n -0000009214 00000 n -0000009461 00000 n +0000008725 00000 n +0000008853 00000 n +0000008965 00000 n +0000009057 00000 n +0000009225 00000 n +0000009321 00000 n +0000009568 00000 n 0000000020 00000 n 0000000073 00000 n 0000000126 00000 n @@ -864,14 +864,14 @@ xref 0000002922 00000 n 0000002974 00000 n 0000003034 00000 n -0000032018 00000 n -0000029685 00000 n +0000032125 00000 n +0000029792 00000 n 0000003086 00000 n 0000003147 00000 n 0000003200 00000 n 0000003261 00000 n -0000026582 00000 n -0000023707 00000 n +0000026689 00000 n +0000023814 00000 n 0000003314 00000 n 0000003375 00000 n 0000003428 00000 n @@ -880,42 +880,42 @@ xref 0000003603 00000 n 0000003656 00000 n 0000003717 00000 n -0000032372 00000 n +0000032479 00000 n 0000002140 00000 n 0000004006 00000 n 0000004252 00000 n 0000004791 00000 n -0000005507 00000 n -0000021638 00000 n -0000022717 00000 n -0000021692 00000 n -0000021766 00000 n -0000022953 00000 n -0000023861 00000 n -0000024061 00000 n -0000025541 00000 n -0000024145 00000 n -0000024219 00000 n -0000025777 00000 n -0000026735 00000 n -0000026934 00000 n -0000028631 00000 n -0000027030 00000 n -0000027105 00000 n -0000028866 00000 n -0000029838 00000 n -0000030037 00000 n -0000031028 00000 n -0000030092 00000 n -0000030167 00000 n -0000031264 00000 n -0000032172 00000 n -0000032433 00000 n -0000032660 00000 n -0000032697 00000 n -0000032938 00000 n +0000005614 00000 n +0000021745 00000 n +0000022824 00000 n +0000021799 00000 n +0000021873 00000 n +0000023060 00000 n +0000023968 00000 n +0000024168 00000 n +0000025648 00000 n +0000024252 00000 n +0000024326 00000 n +0000025884 00000 n +0000026842 00000 n +0000027041 00000 n +0000028738 00000 n +0000027137 00000 n +0000027212 00000 n +0000028973 00000 n +0000029945 00000 n +0000030144 00000 n +0000031135 00000 n +0000030199 00000 n +0000030274 00000 n +0000031371 00000 n +0000032279 00000 n +0000032540 00000 n +0000032767 00000 n +0000032804 00000 n +0000033045 00000 n trailer << /Size 103 /Root 101 0 R /Info 102 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -33148 +33255 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test-minipage.tpf b/required/latex-lab/testfiles-OR-luatex/test-minipage.tpf index c71b444d0..db2597797 100644 --- a/required/latex-lab/testfiles-OR-luatex/test-minipage.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test-minipage.tpf @@ -181,7 +181,7 @@ endobj << /Kids [78 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 80 0 obj << /justify <> @@ -201,7 +201,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -243,7 +243,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 28 0 R /K 31 0 R /ID (ID.010) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 28 0 R /K 31 0 R /ID (ID.010) >> endobj 31 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K 32 0 R /ID (ID.011) >> @@ -783,56 +783,56 @@ xref 0000003050 00000 n 0000003072 00000 n 0000003094 00000 n -0000010078 00000 n +0000010347 00000 n 0000003152 00000 n 0000003894 00000 n -0000006233 00000 n -0000004751 00000 n +0000006492 00000 n +0000004858 00000 n 0000000012 00000 f -0000004819 00000 n +0000004926 00000 n 0000000014 00000 f -0000004889 00000 n +0000004996 00000 n 0000000020 00000 f -0000005769 00000 n -0000004970 00000 n -0000006042 00000 n -0000005871 00000 n -0000006144 00000 n +0000006028 00000 n +0000005077 00000 n +0000006301 00000 n +0000006130 00000 n +0000006403 00000 n 0000000000 00000 f 0000001580 00000 n -0000006294 00000 n -0000006408 00000 n -0000006497 00000 n -0000006586 00000 n -0000006675 00000 n -0000006779 00000 n -0000006920 00000 n -0000007040 00000 n -0000007143 00000 n -0000007237 00000 n -0000007341 00000 n -0000007550 00000 n -0000007673 00000 n +0000006553 00000 n +0000006667 00000 n +0000006756 00000 n +0000006845 00000 n +0000006934 00000 n +0000007038 00000 n +0000007179 00000 n +0000007299 00000 n +0000007402 00000 n +0000007506 00000 n +0000007610 00000 n +0000007819 00000 n +0000007942 00000 n 0000001764 00000 n -0000007847 00000 n -0000007987 00000 n -0000008111 00000 n -0000008215 00000 n -0000008396 00000 n -0000008504 00000 n -0000008645 00000 n -0000008768 00000 n +0000008116 00000 n +0000008256 00000 n +0000008380 00000 n +0000008484 00000 n +0000008665 00000 n +0000008773 00000 n +0000008914 00000 n +0000009037 00000 n 0000001992 00000 n -0000008942 00000 n -0000009082 00000 n -0000009206 00000 n -0000009310 00000 n -0000009492 00000 n -0000009600 00000 n -0000009741 00000 n -0000009832 00000 n -0000009936 00000 n -0000010215 00000 n +0000009211 00000 n +0000009351 00000 n +0000009475 00000 n +0000009579 00000 n +0000009761 00000 n +0000009869 00000 n +0000010010 00000 n +0000010101 00000 n +0000010205 00000 n +0000010484 00000 n 0000000020 00000 n 0000000074 00000 n 0000002904 00000 n @@ -841,50 +841,50 @@ xref 0000002277 00000 n 0000002329 00000 n 0000002391 00000 n -0000031621 00000 n -0000028849 00000 n +0000031890 00000 n +0000029118 00000 n 0000002444 00000 n 0000002506 00000 n 0000002559 00000 n 0000002621 00000 n -0000026651 00000 n -0000024457 00000 n +0000026920 00000 n +0000024726 00000 n 0000002674 00000 n 0000002736 00000 n 0000002789 00000 n 0000002851 00000 n -0000031977 00000 n +0000032246 00000 n 0000001730 00000 n 0000003116 00000 n 0000003318 00000 n 0000003857 00000 n -0000004553 00000 n -0000022393 00000 n -0000023488 00000 n -0000022447 00000 n -0000023708 00000 n -0000024610 00000 n -0000024809 00000 n -0000025695 00000 n -0000024851 00000 n -0000025916 00000 n -0000026804 00000 n -0000027003 00000 n -0000027893 00000 n -0000027045 00000 n -0000028114 00000 n -0000029002 00000 n -0000029201 00000 n -0000030590 00000 n -0000029299 00000 n -0000030811 00000 n -0000031776 00000 n -0000032039 00000 n -0000032225 00000 n -0000032263 00000 n -0000032505 00000 n +0000004660 00000 n +0000022662 00000 n +0000023757 00000 n +0000022716 00000 n +0000023977 00000 n +0000024879 00000 n +0000025078 00000 n +0000025964 00000 n +0000025120 00000 n +0000026185 00000 n +0000027073 00000 n +0000027272 00000 n +0000028162 00000 n +0000027314 00000 n +0000028383 00000 n +0000029271 00000 n +0000029470 00000 n +0000030859 00000 n +0000029568 00000 n +0000031080 00000 n +0000032045 00000 n +0000032308 00000 n +0000032494 00000 n +0000032532 00000 n +0000032774 00000 n trailer << /Size 105 /Root 103 0 R /Info 104 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32715 +32984 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test-tnote-setup.tpf b/required/latex-lab/testfiles-OR-luatex/test-tnote-setup.tpf index 66254adbc..2db18c550 100644 --- a/required/latex-lab/testfiles-OR-luatex/test-tnote-setup.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test-tnote-setup.tpf @@ -186,7 +186,7 @@ endobj << /Kids [76 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 78 0 obj << /justify <> @@ -206,7 +206,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -462,57 +462,57 @@ xref 0000003549 00000 n 0000003571 00000 n 0000003593 00000 n -0000010884 00000 n +0000011143 00000 n 0000003651 00000 n 0000004439 00000 n -0000006778 00000 n -0000005296 00000 n +0000007037 00000 n +0000005403 00000 n 0000000012 00000 f -0000005364 00000 n +0000005471 00000 n 0000000014 00000 f -0000005434 00000 n +0000005541 00000 n 0000000020 00000 f -0000006314 00000 n -0000005515 00000 n -0000006587 00000 n -0000006416 00000 n -0000006689 00000 n +0000006573 00000 n +0000005622 00000 n +0000006846 00000 n +0000006675 00000 n +0000006948 00000 n 0000000000 00000 f 0000001990 00000 n -0000006839 00000 n -0000006967 00000 n -0000007056 00000 n -0000007145 00000 n -0000007234 00000 n -0000007338 00000 n -0000007455 00000 n -0000007578 00000 n +0000007098 00000 n +0000007226 00000 n +0000007315 00000 n +0000007404 00000 n +0000007493 00000 n +0000007597 00000 n +0000007714 00000 n +0000007837 00000 n 0000002181 00000 n -0000007752 00000 n -0000007892 00000 n -0000007996 00000 n -0000008147 00000 n -0000008270 00000 n +0000008011 00000 n +0000008151 00000 n +0000008255 00000 n +0000008406 00000 n +0000008529 00000 n 0000002406 00000 n -0000008444 00000 n -0000008584 00000 n -0000008688 00000 n -0000008874 00000 n -0000008997 00000 n +0000008703 00000 n +0000008843 00000 n +0000008947 00000 n +0000009133 00000 n +0000009256 00000 n 0000002631 00000 n -0000009172 00000 n -0000009312 00000 n -0000009434 00000 n -0000009538 00000 n -0000009690 00000 n -0000009833 00000 n -0000009974 00000 n -0000010098 00000 n -0000010202 00000 n -0000010354 00000 n -0000010497 00000 n -0000010638 00000 n -0000010742 00000 n +0000009431 00000 n +0000009571 00000 n +0000009693 00000 n +0000009797 00000 n +0000009949 00000 n +0000010092 00000 n +0000010233 00000 n +0000010357 00000 n +0000010461 00000 n +0000010613 00000 n +0000010756 00000 n +0000010897 00000 n +0000011001 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -522,36 +522,36 @@ xref 0000002917 00000 n 0000002969 00000 n 0000003031 00000 n -0000017904 00000 n -0000015789 00000 n +0000018163 00000 n +0000016048 00000 n 0000003084 00000 n 0000003146 00000 n 0000003199 00000 n 0000003261 00000 n 0000003314 00000 n 0000003375 00000 n -0000018256 00000 n +0000018515 00000 n 0000002140 00000 n 0000003615 00000 n 0000003847 00000 n 0000004402 00000 n -0000005098 00000 n -0000011021 00000 n -0000014557 00000 n -0000011255 00000 n -0000014778 00000 n -0000015943 00000 n -0000016143 00000 n -0000016948 00000 n -0000016186 00000 n -0000017169 00000 n -0000018057 00000 n -0000018318 00000 n -0000018475 00000 n -0000018511 00000 n -0000018735 00000 n +0000005205 00000 n +0000011280 00000 n +0000014816 00000 n +0000011514 00000 n +0000015037 00000 n +0000016202 00000 n +0000016402 00000 n +0000017207 00000 n +0000016445 00000 n +0000017428 00000 n +0000018316 00000 n +0000018577 00000 n +0000018734 00000 n +0000018770 00000 n +0000018994 00000 n trailer << /Size 93 /Root 91 0 R /Info 92 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -18946 +19205 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test1.tpf b/required/latex-lab/testfiles-OR-luatex/test1.tpf index 470f4e5e3..cefbbb84a 100644 --- a/required/latex-lab/testfiles-OR-luatex/test1.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test1.tpf @@ -80,7 +80,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 45 0 obj << /justify <> @@ -100,7 +100,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -380,71 +380,71 @@ xref 0000000988 00000 n 0000001010 00000 n 0000001032 00000 n -0000005371 00000 n +0000005630 00000 n 0000001090 00000 n 0000001458 00000 n -0000003797 00000 n -0000002315 00000 n +0000004056 00000 n +0000002422 00000 n 0000000012 00000 f -0000002383 00000 n +0000002490 00000 n 0000000014 00000 f -0000002453 00000 n +0000002560 00000 n 0000000020 00000 f -0000003333 00000 n -0000002534 00000 n -0000003606 00000 n -0000003435 00000 n -0000003708 00000 n +0000003592 00000 n +0000002641 00000 n +0000003865 00000 n +0000003694 00000 n +0000003967 00000 n 0000000000 00000 f -0000003858 00000 n -0000003956 00000 n -0000004045 00000 n -0000004134 00000 n -0000004223 00000 n -0000004327 00000 n -0000004486 00000 n -0000004609 00000 n -0000004749 00000 n -0000004873 00000 n -0000004977 00000 n -0000005123 00000 n -0000005231 00000 n +0000004117 00000 n +0000004215 00000 n +0000004304 00000 n +0000004393 00000 n +0000004482 00000 n +0000004586 00000 n +0000004745 00000 n +0000004868 00000 n +0000005008 00000 n +0000005132 00000 n +0000005236 00000 n +0000005382 00000 n +0000005490 00000 n 0000000842 00000 n 0000000707 00000 n 0000000020 00000 n -0000013806 00000 n -0000011362 00000 n -0000009387 00000 n -0000007409 00000 n -0000014160 00000 n +0000014065 00000 n +0000011621 00000 n +0000009646 00000 n +0000007668 00000 n +0000014419 00000 n 0000001054 00000 n 0000001154 00000 n 0000001421 00000 n -0000002117 00000 n -0000005508 00000 n -0000006440 00000 n -0000005562 00000 n -0000006660 00000 n -0000007562 00000 n -0000007761 00000 n -0000008445 00000 n -0000007792 00000 n -0000008666 00000 n -0000009540 00000 n -0000009739 00000 n -0000010420 00000 n -0000009770 00000 n -0000010641 00000 n -0000011515 00000 n -0000011714 00000 n -0000012817 00000 n -0000011778 00000 n -0000013038 00000 n -0000013960 00000 n -0000014222 00000 n -0000014321 00000 n +0000002224 00000 n +0000005767 00000 n +0000006699 00000 n +0000005821 00000 n +0000006919 00000 n +0000007821 00000 n +0000008020 00000 n +0000008704 00000 n +0000008051 00000 n +0000008925 00000 n +0000009799 00000 n +0000009998 00000 n +0000010679 00000 n +0000010029 00000 n +0000010900 00000 n +0000011774 00000 n +0000011973 00000 n +0000013076 00000 n +0000012037 00000 n +0000013297 00000 n +0000014219 00000 n +0000014481 00000 n +0000014580 00000 n trailer << /Size 68 /Root 66 0 R /Info 67 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -14455 +14714 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test10.tpf b/required/latex-lab/testfiles-OR-luatex/test10.tpf index 8d918fe9c..58ffe77d4 100644 --- a/required/latex-lab/testfiles-OR-luatex/test10.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test10.tpf @@ -166,7 +166,7 @@ endobj << /Kids [65 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 67 0 obj << /justify <> @@ -186,7 +186,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -494,46 +494,46 @@ xref 0000002930 00000 n 0000002952 00000 n 0000002974 00000 n -0000008712 00000 n +0000008971 00000 n 0000003032 00000 n 0000003616 00000 n -0000005953 00000 n -0000004473 00000 n +0000006212 00000 n +0000004580 00000 n 0000000012 00000 f -0000004541 00000 n +0000004648 00000 n 0000000014 00000 f -0000004611 00000 n +0000004718 00000 n 0000000020 00000 f -0000005491 00000 n -0000004692 00000 n -0000005764 00000 n -0000005593 00000 n -0000005866 00000 n +0000005750 00000 n +0000004799 00000 n +0000006023 00000 n +0000005852 00000 n +0000006125 00000 n 0000000000 00000 f 0000001457 00000 n -0000006014 00000 n -0000006112 00000 n -0000006201 00000 n -0000006290 00000 n -0000006379 00000 n -0000006483 00000 n -0000006726 00000 n -0000006849 00000 n +0000006273 00000 n +0000006371 00000 n +0000006460 00000 n +0000006549 00000 n +0000006638 00000 n +0000006742 00000 n +0000006985 00000 n +0000007108 00000 n 0000001648 00000 n -0000007023 00000 n -0000007163 00000 n -0000007286 00000 n +0000007282 00000 n +0000007422 00000 n +0000007545 00000 n 0000001873 00000 n -0000007460 00000 n -0000007600 00000 n -0000007738 00000 n -0000007842 00000 n -0000008024 00000 n -0000008132 00000 n -0000008273 00000 n -0000008396 00000 n +0000007719 00000 n +0000007859 00000 n +0000007997 00000 n +0000008101 00000 n +0000008283 00000 n +0000008391 00000 n +0000008532 00000 n +0000008655 00000 n 0000002100 00000 n -0000008571 00000 n +0000008830 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -543,46 +543,46 @@ xref 0000002387 00000 n 0000002439 00000 n 0000002501 00000 n -0000017263 00000 n -0000014786 00000 n +0000017522 00000 n +0000015045 00000 n 0000002554 00000 n 0000002616 00000 n 0000002669 00000 n 0000002731 00000 n -0000012811 00000 n -0000010833 00000 n -0000017617 00000 n +0000013070 00000 n +0000011092 00000 n +0000017876 00000 n 0000001607 00000 n 0000002996 00000 n 0000003200 00000 n 0000003579 00000 n -0000004275 00000 n -0000008849 00000 n -0000009864 00000 n -0000008902 00000 n -0000010084 00000 n -0000010986 00000 n -0000011185 00000 n -0000011869 00000 n -0000011216 00000 n -0000012090 00000 n -0000012964 00000 n -0000013163 00000 n -0000013844 00000 n -0000013194 00000 n -0000014065 00000 n -0000014939 00000 n -0000015138 00000 n -0000016260 00000 n -0000015214 00000 n -0000016481 00000 n -0000017417 00000 n -0000017679 00000 n -0000017822 00000 n -0000017858 00000 n -0000018082 00000 n +0000004382 00000 n +0000009108 00000 n +0000010123 00000 n +0000009161 00000 n +0000010343 00000 n +0000011245 00000 n +0000011444 00000 n +0000012128 00000 n +0000011475 00000 n +0000012349 00000 n +0000013223 00000 n +0000013422 00000 n +0000014103 00000 n +0000013453 00000 n +0000014324 00000 n +0000015198 00000 n +0000015397 00000 n +0000016519 00000 n +0000015473 00000 n +0000016740 00000 n +0000017676 00000 n +0000017938 00000 n +0000018081 00000 n +0000018117 00000 n +0000018341 00000 n trailer << /Size 92 /Root 90 0 R /Info 91 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -18293 +18552 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test11-series.tpf b/required/latex-lab/testfiles-OR-luatex/test11-series.tpf index 3a178b861..b0719f8bb 100644 --- a/required/latex-lab/testfiles-OR-luatex/test11-series.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test11-series.tpf @@ -98,7 +98,7 @@ endobj << /Kids [50 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 52 0 obj << /justify <> @@ -118,7 +118,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -419,78 +419,78 @@ xref 0000001273 00000 n 0000001295 00000 n 0000001317 00000 n -0000006690 00000 n +0000006949 00000 n 0000001375 00000 n 0000001876 00000 n -0000004215 00000 n -0000002733 00000 n +0000004474 00000 n +0000002840 00000 n 0000000012 00000 f -0000002801 00000 n +0000002908 00000 n 0000000014 00000 f -0000002871 00000 n +0000002978 00000 n 0000000020 00000 f -0000003751 00000 n -0000002952 00000 n -0000004024 00000 n -0000003853 00000 n -0000004126 00000 n +0000004010 00000 n +0000003059 00000 n +0000004283 00000 n +0000004112 00000 n +0000004385 00000 n 0000000000 00000 f -0000004276 00000 n -0000004374 00000 n -0000004463 00000 n -0000004552 00000 n -0000004641 00000 n -0000004745 00000 n -0000004920 00000 n -0000005043 00000 n -0000005183 00000 n -0000005306 00000 n -0000005446 00000 n -0000005570 00000 n -0000005674 00000 n -0000005820 00000 n -0000005928 00000 n -0000006068 00000 n -0000006192 00000 n -0000006296 00000 n -0000006442 00000 n -0000006550 00000 n +0000004535 00000 n +0000004633 00000 n +0000004722 00000 n +0000004811 00000 n +0000004900 00000 n +0000005004 00000 n +0000005179 00000 n +0000005302 00000 n +0000005442 00000 n +0000005565 00000 n +0000005705 00000 n +0000005829 00000 n +0000005933 00000 n +0000006079 00000 n +0000006187 00000 n +0000006327 00000 n +0000006451 00000 n +0000006555 00000 n +0000006701 00000 n +0000006809 00000 n 0000001127 00000 n 0000000992 00000 n 0000000020 00000 n -0000015178 00000 n -0000013018 00000 n -0000011043 00000 n -0000009065 00000 n -0000015532 00000 n +0000015437 00000 n +0000013277 00000 n +0000011302 00000 n +0000009324 00000 n +0000015791 00000 n 0000001339 00000 n 0000001460 00000 n 0000001839 00000 n -0000002535 00000 n -0000006827 00000 n -0000008068 00000 n -0000006905 00000 n -0000008288 00000 n -0000009218 00000 n -0000009417 00000 n -0000010101 00000 n -0000009448 00000 n -0000010322 00000 n -0000011196 00000 n -0000011395 00000 n -0000012076 00000 n -0000011426 00000 n -0000012297 00000 n -0000013171 00000 n -0000013370 00000 n -0000014217 00000 n -0000013412 00000 n -0000014438 00000 n -0000015332 00000 n -0000015594 00000 n -0000015693 00000 n +0000002642 00000 n +0000007086 00000 n +0000008327 00000 n +0000007164 00000 n +0000008547 00000 n +0000009477 00000 n +0000009676 00000 n +0000010360 00000 n +0000009707 00000 n +0000010581 00000 n +0000011455 00000 n +0000011654 00000 n +0000012335 00000 n +0000011685 00000 n +0000012556 00000 n +0000013430 00000 n +0000013629 00000 n +0000014476 00000 n +0000013671 00000 n +0000014697 00000 n +0000015591 00000 n +0000015853 00000 n +0000015952 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -15827 +16086 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test2.tpf b/required/latex-lab/testfiles-OR-luatex/test2.tpf index 78d04e2ae..520e9c263 100644 --- a/required/latex-lab/testfiles-OR-luatex/test2.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test2.tpf @@ -124,7 +124,7 @@ endobj << /Kids [46 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 48 0 obj << /justify <> @@ -144,7 +144,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -486,79 +486,79 @@ xref 0000001706 00000 n 0000001728 00000 n 0000001750 00000 n -0000006447 00000 n +0000006706 00000 n 0000001808 00000 n 0000002222 00000 n -0000004561 00000 n -0000003079 00000 n +0000004820 00000 n +0000003186 00000 n 0000000012 00000 f -0000003147 00000 n +0000003254 00000 n 0000000014 00000 f -0000003217 00000 n +0000003324 00000 n 0000000020 00000 f -0000004097 00000 n -0000003298 00000 n -0000004370 00000 n -0000004199 00000 n -0000004472 00000 n +0000004356 00000 n +0000003405 00000 n +0000004629 00000 n +0000004458 00000 n +0000004731 00000 n 0000000000 00000 f -0000004622 00000 n -0000004720 00000 n -0000004809 00000 n -0000004898 00000 n -0000004987 00000 n -0000005091 00000 n -0000005292 00000 n -0000005415 00000 n -0000005555 00000 n -0000005678 00000 n -0000005818 00000 n -0000005949 00000 n -0000006053 00000 n -0000006199 00000 n -0000006307 00000 n +0000004881 00000 n +0000004979 00000 n +0000005068 00000 n +0000005157 00000 n +0000005246 00000 n +0000005350 00000 n +0000005551 00000 n +0000005674 00000 n +0000005814 00000 n +0000005937 00000 n +0000006077 00000 n +0000006208 00000 n +0000006312 00000 n +0000006458 00000 n +0000006566 00000 n 0000001548 00000 n 0000001413 00000 n 0000000020 00000 n -0000017524 00000 n -0000014998 00000 n -0000012521 00000 n -0000010546 00000 n -0000008568 00000 n -0000017876 00000 n +0000017783 00000 n +0000015257 00000 n +0000012780 00000 n +0000010805 00000 n +0000008827 00000 n +0000018135 00000 n 0000001772 00000 n 0000001886 00000 n 0000002185 00000 n -0000002881 00000 n -0000006584 00000 n -0000007599 00000 n -0000006637 00000 n -0000007819 00000 n -0000008721 00000 n -0000008920 00000 n -0000009604 00000 n -0000008951 00000 n -0000009825 00000 n -0000010699 00000 n -0000010898 00000 n -0000011579 00000 n -0000010929 00000 n -0000011800 00000 n -0000012674 00000 n -0000012873 00000 n -0000013995 00000 n -0000012949 00000 n -0000014216 00000 n -0000015152 00000 n -0000015352 00000 n -0000016512 00000 n -0000015433 00000 n -0000016733 00000 n -0000017677 00000 n -0000017938 00000 n -0000018037 00000 n +0000002988 00000 n +0000006843 00000 n +0000007858 00000 n +0000006896 00000 n +0000008078 00000 n +0000008980 00000 n +0000009179 00000 n +0000009863 00000 n +0000009210 00000 n +0000010084 00000 n +0000010958 00000 n +0000011157 00000 n +0000011838 00000 n +0000011188 00000 n +0000012059 00000 n +0000012933 00000 n +0000013132 00000 n +0000014254 00000 n +0000013208 00000 n +0000014475 00000 n +0000015411 00000 n +0000015611 00000 n +0000016771 00000 n +0000015692 00000 n +0000016992 00000 n +0000017936 00000 n +0000018197 00000 n +0000018296 00000 n trailer << /Size 76 /Root 74 0 R /Info 75 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -18171 +18430 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test3.tpf b/required/latex-lab/testfiles-OR-luatex/test3.tpf index 8317efde3..ff2445e74 100644 --- a/required/latex-lab/testfiles-OR-luatex/test3.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test3.tpf @@ -124,7 +124,7 @@ endobj << /Kids [46 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 48 0 obj << /justify <> @@ -144,7 +144,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -486,79 +486,79 @@ xref 0000001706 00000 n 0000001728 00000 n 0000001750 00000 n -0000006447 00000 n +0000006706 00000 n 0000001808 00000 n 0000002222 00000 n -0000004561 00000 n -0000003079 00000 n +0000004820 00000 n +0000003186 00000 n 0000000012 00000 f -0000003147 00000 n +0000003254 00000 n 0000000014 00000 f -0000003217 00000 n +0000003324 00000 n 0000000020 00000 f -0000004097 00000 n -0000003298 00000 n -0000004370 00000 n -0000004199 00000 n -0000004472 00000 n +0000004356 00000 n +0000003405 00000 n +0000004629 00000 n +0000004458 00000 n +0000004731 00000 n 0000000000 00000 f -0000004622 00000 n -0000004720 00000 n -0000004809 00000 n -0000004898 00000 n -0000004987 00000 n -0000005091 00000 n -0000005292 00000 n -0000005415 00000 n -0000005555 00000 n -0000005678 00000 n -0000005818 00000 n -0000005949 00000 n -0000006053 00000 n -0000006199 00000 n -0000006307 00000 n +0000004881 00000 n +0000004979 00000 n +0000005068 00000 n +0000005157 00000 n +0000005246 00000 n +0000005350 00000 n +0000005551 00000 n +0000005674 00000 n +0000005814 00000 n +0000005937 00000 n +0000006077 00000 n +0000006208 00000 n +0000006312 00000 n +0000006458 00000 n +0000006566 00000 n 0000001548 00000 n 0000001413 00000 n 0000000020 00000 n -0000017524 00000 n -0000014998 00000 n -0000012521 00000 n -0000010546 00000 n -0000008568 00000 n -0000017876 00000 n +0000017783 00000 n +0000015257 00000 n +0000012780 00000 n +0000010805 00000 n +0000008827 00000 n +0000018135 00000 n 0000001772 00000 n 0000001886 00000 n 0000002185 00000 n -0000002881 00000 n -0000006584 00000 n -0000007599 00000 n -0000006637 00000 n -0000007819 00000 n -0000008721 00000 n -0000008920 00000 n -0000009604 00000 n -0000008951 00000 n -0000009825 00000 n -0000010699 00000 n -0000010898 00000 n -0000011579 00000 n -0000010929 00000 n -0000011800 00000 n -0000012674 00000 n -0000012873 00000 n -0000013995 00000 n -0000012949 00000 n -0000014216 00000 n -0000015152 00000 n -0000015352 00000 n -0000016512 00000 n -0000015433 00000 n -0000016733 00000 n -0000017677 00000 n -0000017938 00000 n -0000018037 00000 n +0000002988 00000 n +0000006843 00000 n +0000007858 00000 n +0000006896 00000 n +0000008078 00000 n +0000008980 00000 n +0000009179 00000 n +0000009863 00000 n +0000009210 00000 n +0000010084 00000 n +0000010958 00000 n +0000011157 00000 n +0000011838 00000 n +0000011188 00000 n +0000012059 00000 n +0000012933 00000 n +0000013132 00000 n +0000014254 00000 n +0000013208 00000 n +0000014475 00000 n +0000015411 00000 n +0000015611 00000 n +0000016771 00000 n +0000015692 00000 n +0000016992 00000 n +0000017936 00000 n +0000018197 00000 n +0000018296 00000 n trailer << /Size 76 /Root 74 0 R /Info 75 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -18171 +18430 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test4.tpf b/required/latex-lab/testfiles-OR-luatex/test4.tpf index d0db4042b..061cd5990 100644 --- a/required/latex-lab/testfiles-OR-luatex/test4.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test4.tpf @@ -124,7 +124,7 @@ endobj << /Kids [46 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 48 0 obj << /justify <> @@ -144,7 +144,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -486,79 +486,79 @@ xref 0000001706 00000 n 0000001728 00000 n 0000001750 00000 n -0000006445 00000 n +0000006704 00000 n 0000001808 00000 n 0000002222 00000 n -0000004559 00000 n -0000003079 00000 n +0000004818 00000 n +0000003186 00000 n 0000000012 00000 f -0000003147 00000 n +0000003254 00000 n 0000000014 00000 f -0000003217 00000 n +0000003324 00000 n 0000000020 00000 f -0000004097 00000 n -0000003298 00000 n -0000004370 00000 n -0000004199 00000 n -0000004472 00000 n +0000004356 00000 n +0000003405 00000 n +0000004629 00000 n +0000004458 00000 n +0000004731 00000 n 0000000000 00000 f -0000004620 00000 n -0000004718 00000 n -0000004807 00000 n -0000004896 00000 n -0000004985 00000 n -0000005089 00000 n -0000005290 00000 n -0000005413 00000 n -0000005553 00000 n -0000005676 00000 n -0000005816 00000 n -0000005947 00000 n -0000006051 00000 n -0000006197 00000 n -0000006305 00000 n +0000004879 00000 n +0000004977 00000 n +0000005066 00000 n +0000005155 00000 n +0000005244 00000 n +0000005348 00000 n +0000005549 00000 n +0000005672 00000 n +0000005812 00000 n +0000005935 00000 n +0000006075 00000 n +0000006206 00000 n +0000006310 00000 n +0000006456 00000 n +0000006564 00000 n 0000001548 00000 n 0000001413 00000 n 0000000020 00000 n -0000017522 00000 n -0000014996 00000 n -0000012519 00000 n -0000010544 00000 n -0000008566 00000 n -0000017874 00000 n +0000017781 00000 n +0000015255 00000 n +0000012778 00000 n +0000010803 00000 n +0000008825 00000 n +0000018133 00000 n 0000001772 00000 n 0000001886 00000 n 0000002185 00000 n -0000002881 00000 n -0000006582 00000 n -0000007597 00000 n -0000006635 00000 n -0000007817 00000 n -0000008719 00000 n -0000008918 00000 n -0000009602 00000 n -0000008949 00000 n -0000009823 00000 n -0000010697 00000 n -0000010896 00000 n -0000011577 00000 n -0000010927 00000 n -0000011798 00000 n -0000012672 00000 n -0000012871 00000 n -0000013993 00000 n -0000012947 00000 n -0000014214 00000 n -0000015150 00000 n -0000015350 00000 n -0000016510 00000 n -0000015431 00000 n -0000016731 00000 n -0000017675 00000 n -0000017936 00000 n -0000018035 00000 n +0000002988 00000 n +0000006841 00000 n +0000007856 00000 n +0000006894 00000 n +0000008076 00000 n +0000008978 00000 n +0000009177 00000 n +0000009861 00000 n +0000009208 00000 n +0000010082 00000 n +0000010956 00000 n +0000011155 00000 n +0000011836 00000 n +0000011186 00000 n +0000012057 00000 n +0000012931 00000 n +0000013130 00000 n +0000014252 00000 n +0000013206 00000 n +0000014473 00000 n +0000015409 00000 n +0000015609 00000 n +0000016769 00000 n +0000015690 00000 n +0000016990 00000 n +0000017934 00000 n +0000018195 00000 n +0000018294 00000 n trailer << /Size 76 /Root 74 0 R /Info 75 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -18169 +18428 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test5.tpf b/required/latex-lab/testfiles-OR-luatex/test5.tpf index 35c9b75cc..74e239f28 100644 --- a/required/latex-lab/testfiles-OR-luatex/test5.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test5.tpf @@ -211,7 +211,7 @@ endobj << /Kids [50 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 52 0 obj << /justify <> @@ -231,7 +231,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -622,83 +622,83 @@ xref 0000013430 00000 n 0000013452 00000 n 0000013474 00000 n -0000018835 00000 n +0000019094 00000 n 0000013532 00000 n 0000014038 00000 n -0000016375 00000 n -0000014895 00000 n +0000016634 00000 n +0000015002 00000 n 0000000012 00000 f -0000014963 00000 n +0000015070 00000 n 0000000014 00000 f -0000015033 00000 n +0000015140 00000 n 0000000020 00000 f -0000015913 00000 n -0000015114 00000 n -0000016186 00000 n -0000016015 00000 n -0000016288 00000 n +0000016172 00000 n +0000015221 00000 n +0000016445 00000 n +0000016274 00000 n +0000016547 00000 n 0000000000 00000 f -0000016436 00000 n -0000016534 00000 n -0000016623 00000 n -0000016712 00000 n -0000016801 00000 n -0000016905 00000 n -0000017106 00000 n -0000017229 00000 n -0000017369 00000 n -0000017492 00000 n -0000017632 00000 n -0000017777 00000 n -0000017881 00000 n -0000018060 00000 n -0000018168 00000 n -0000018308 00000 n -0000018412 00000 n -0000018553 00000 n -0000018657 00000 n +0000016695 00000 n +0000016793 00000 n +0000016882 00000 n +0000016971 00000 n +0000017060 00000 n +0000017164 00000 n +0000017365 00000 n +0000017488 00000 n +0000017628 00000 n +0000017751 00000 n +0000017891 00000 n +0000018036 00000 n +0000018140 00000 n +0000018319 00000 n +0000018427 00000 n +0000018567 00000 n +0000018671 00000 n +0000018812 00000 n +0000018916 00000 n 0000013272 00000 n 0000013137 00000 n 0000000020 00000 n -0000035025 00000 n -0000032213 00000 n -0000029736 00000 n -0000027761 00000 n -0000025783 00000 n -0000035377 00000 n +0000035284 00000 n +0000032472 00000 n +0000029995 00000 n +0000028020 00000 n +0000026042 00000 n +0000035636 00000 n 0000013496 00000 n 0000013638 00000 n 0000014001 00000 n -0000014697 00000 n -0000018972 00000 n -0000024323 00000 n -0000019304 00000 n -0000024543 00000 n -0000025936 00000 n -0000026135 00000 n -0000026819 00000 n -0000026166 00000 n -0000027040 00000 n -0000027914 00000 n -0000028113 00000 n -0000028794 00000 n -0000028144 00000 n -0000029015 00000 n -0000029889 00000 n -0000030088 00000 n -0000031210 00000 n -0000030164 00000 n -0000031431 00000 n -0000032367 00000 n -0000032567 00000 n -0000033985 00000 n -0000032663 00000 n -0000034206 00000 n -0000035178 00000 n -0000035439 00000 n -0000035538 00000 n +0000014804 00000 n +0000019231 00000 n +0000024582 00000 n +0000019563 00000 n +0000024802 00000 n +0000026195 00000 n +0000026394 00000 n +0000027078 00000 n +0000026425 00000 n +0000027299 00000 n +0000028173 00000 n +0000028372 00000 n +0000029053 00000 n +0000028403 00000 n +0000029274 00000 n +0000030148 00000 n +0000030347 00000 n +0000031469 00000 n +0000030423 00000 n +0000031690 00000 n +0000032626 00000 n +0000032826 00000 n +0000034244 00000 n +0000032922 00000 n +0000034465 00000 n +0000035437 00000 n +0000035698 00000 n +0000035797 00000 n trailer << /Size 80 /Root 78 0 R /Info 79 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -35672 +35931 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test6.tpf b/required/latex-lab/testfiles-OR-luatex/test6.tpf index 9bc951e1b..6b439e322 100644 --- a/required/latex-lab/testfiles-OR-luatex/test6.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test6.tpf @@ -142,7 +142,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /justify <> @@ -162,7 +162,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -517,82 +517,82 @@ xref 0000002018 00000 n 0000002040 00000 n 0000002062 00000 n -0000007366 00000 n +0000007625 00000 n 0000002120 00000 n 0000002617 00000 n -0000004954 00000 n -0000003474 00000 n +0000005213 00000 n +0000003581 00000 n 0000000012 00000 f -0000003542 00000 n +0000003649 00000 n 0000000014 00000 f -0000003612 00000 n +0000003719 00000 n 0000000020 00000 f -0000004492 00000 n -0000003693 00000 n -0000004765 00000 n -0000004594 00000 n -0000004867 00000 n +0000004751 00000 n +0000003800 00000 n +0000005024 00000 n +0000004853 00000 n +0000005126 00000 n 0000000000 00000 f -0000005015 00000 n -0000005113 00000 n -0000005202 00000 n -0000005291 00000 n -0000005380 00000 n -0000005484 00000 n -0000005735 00000 n -0000005858 00000 n -0000005998 00000 n -0000006121 00000 n -0000006261 00000 n -0000006454 00000 n -0000006562 00000 n -0000006702 00000 n -0000006825 00000 n -0000006965 00000 n -0000007118 00000 n -0000007226 00000 n +0000005274 00000 n +0000005372 00000 n +0000005461 00000 n +0000005550 00000 n +0000005639 00000 n +0000005743 00000 n +0000005994 00000 n +0000006117 00000 n +0000006257 00000 n +0000006380 00000 n +0000006520 00000 n +0000006713 00000 n +0000006821 00000 n +0000006961 00000 n +0000007084 00000 n +0000007224 00000 n +0000007377 00000 n +0000007485 00000 n 0000001860 00000 n 0000001725 00000 n 0000000020 00000 n -0000018973 00000 n -0000016602 00000 n -0000013961 00000 n -0000011848 00000 n -0000009727 00000 n -0000019325 00000 n +0000019232 00000 n +0000016861 00000 n +0000014220 00000 n +0000012107 00000 n +0000009986 00000 n +0000019584 00000 n 0000002084 00000 n 0000002233 00000 n 0000002580 00000 n -0000003276 00000 n -0000007503 00000 n -0000008730 00000 n -0000007580 00000 n -0000008950 00000 n -0000009880 00000 n -0000010079 00000 n -0000010892 00000 n -0000010122 00000 n -0000011113 00000 n -0000012001 00000 n -0000012200 00000 n -0000013005 00000 n -0000012243 00000 n -0000013226 00000 n -0000014114 00000 n -0000014313 00000 n -0000015585 00000 n -0000014400 00000 n -0000015806 00000 n -0000016756 00000 n -0000016956 00000 n -0000017975 00000 n -0000017025 00000 n -0000018196 00000 n -0000019126 00000 n -0000019387 00000 n -0000019486 00000 n +0000003383 00000 n +0000007762 00000 n +0000008989 00000 n +0000007839 00000 n +0000009209 00000 n +0000010139 00000 n +0000010338 00000 n +0000011151 00000 n +0000010381 00000 n +0000011372 00000 n +0000012260 00000 n +0000012459 00000 n +0000013264 00000 n +0000012502 00000 n +0000013485 00000 n +0000014373 00000 n +0000014572 00000 n +0000015844 00000 n +0000014659 00000 n +0000016065 00000 n +0000017015 00000 n +0000017215 00000 n +0000018234 00000 n +0000017284 00000 n +0000018455 00000 n +0000019385 00000 n +0000019646 00000 n +0000019745 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -19620 +19879 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test7.tpf b/required/latex-lab/testfiles-OR-luatex/test7.tpf index 6f01cc408..7c6b5b0ff 100644 --- a/required/latex-lab/testfiles-OR-luatex/test7.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test7.tpf @@ -160,7 +160,7 @@ endobj << /Kids [55 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 57 0 obj << /justify <> @@ -180,7 +180,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -554,88 +554,88 @@ xref 0000002285 00000 n 0000002307 00000 n 0000002329 00000 n -0000008327 00000 n +0000008586 00000 n 0000002387 00000 n 0000002973 00000 n -0000005310 00000 n -0000003830 00000 n +0000005569 00000 n +0000003937 00000 n 0000000012 00000 f -0000003898 00000 n +0000004005 00000 n 0000000014 00000 f -0000003968 00000 n +0000004075 00000 n 0000000020 00000 f -0000004848 00000 n -0000004049 00000 n -0000005121 00000 n -0000004950 00000 n -0000005223 00000 n +0000005107 00000 n +0000004156 00000 n +0000005380 00000 n +0000005209 00000 n +0000005482 00000 n 0000000000 00000 f -0000005371 00000 n -0000005469 00000 n -0000005558 00000 n -0000005647 00000 n -0000005736 00000 n -0000005856 00000 n -0000006107 00000 n -0000006230 00000 n -0000006370 00000 n -0000006493 00000 n -0000006633 00000 n -0000006758 00000 n -0000006854 00000 n -0000006958 00000 n -0000007104 00000 n -0000007212 00000 n -0000007352 00000 n -0000007475 00000 n -0000007615 00000 n -0000007733 00000 n -0000007829 00000 n -0000007933 00000 n -0000008079 00000 n -0000008187 00000 n +0000005630 00000 n +0000005728 00000 n +0000005817 00000 n +0000005906 00000 n +0000005995 00000 n +0000006115 00000 n +0000006366 00000 n +0000006489 00000 n +0000006629 00000 n +0000006752 00000 n +0000006892 00000 n +0000007017 00000 n +0000007113 00000 n +0000007217 00000 n +0000007363 00000 n +0000007471 00000 n +0000007611 00000 n +0000007734 00000 n +0000007874 00000 n +0000007992 00000 n +0000008088 00000 n +0000008192 00000 n +0000008338 00000 n +0000008446 00000 n 0000002127 00000 n 0000001992 00000 n 0000000020 00000 n -0000020230 00000 n -0000017530 00000 n -0000014889 00000 n -0000012776 00000 n -0000010655 00000 n -0000020582 00000 n +0000020489 00000 n +0000017789 00000 n +0000015148 00000 n +0000013035 00000 n +0000010914 00000 n +0000020841 00000 n 0000002351 00000 n 0000002493 00000 n 0000002936 00000 n -0000003632 00000 n -0000008464 00000 n -0000009672 00000 n -0000008529 00000 n -0000009892 00000 n -0000010808 00000 n -0000011007 00000 n -0000011820 00000 n -0000011050 00000 n -0000012041 00000 n -0000012929 00000 n -0000013128 00000 n -0000013933 00000 n -0000013171 00000 n -0000014154 00000 n -0000015042 00000 n -0000015241 00000 n -0000016513 00000 n -0000015328 00000 n -0000016734 00000 n -0000017684 00000 n -0000017884 00000 n -0000019204 00000 n -0000017969 00000 n -0000019425 00000 n -0000020383 00000 n -0000020644 00000 n -0000020743 00000 n +0000003739 00000 n +0000008723 00000 n +0000009931 00000 n +0000008788 00000 n +0000010151 00000 n +0000011067 00000 n +0000011266 00000 n +0000012079 00000 n +0000011309 00000 n +0000012300 00000 n +0000013188 00000 n +0000013387 00000 n +0000014192 00000 n +0000013430 00000 n +0000014413 00000 n +0000015301 00000 n +0000015500 00000 n +0000016772 00000 n +0000015587 00000 n +0000016993 00000 n +0000017943 00000 n +0000018143 00000 n +0000019463 00000 n +0000018228 00000 n +0000019684 00000 n +0000020642 00000 n +0000020903 00000 n +0000021002 00000 n trailer << /Size 85 /Root 83 0 R /Info 84 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -20877 +21136 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test8.tpf b/required/latex-lab/testfiles-OR-luatex/test8.tpf index 0a749c5fc..36e7b89b0 100644 --- a/required/latex-lab/testfiles-OR-luatex/test8.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test8.tpf @@ -104,7 +104,7 @@ endobj << /Kids [47 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 49 0 obj << /justify <> @@ -124,7 +124,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -417,75 +417,75 @@ xref 0000001390 00000 n 0000001412 00000 n 0000001434 00000 n -0000006487 00000 n +0000006746 00000 n 0000001492 00000 n 0000001952 00000 n -0000004289 00000 n -0000002809 00000 n +0000004548 00000 n +0000002916 00000 n 0000000012 00000 f -0000002877 00000 n +0000002984 00000 n 0000000014 00000 f -0000002947 00000 n +0000003054 00000 n 0000000020 00000 f -0000003827 00000 n -0000003028 00000 n -0000004100 00000 n -0000003929 00000 n -0000004202 00000 n +0000004086 00000 n +0000003135 00000 n +0000004359 00000 n +0000004188 00000 n +0000004461 00000 n 0000000000 00000 f -0000004350 00000 n -0000004448 00000 n -0000004537 00000 n -0000004626 00000 n -0000004715 00000 n -0000004819 00000 n -0000005062 00000 n -0000005185 00000 n -0000005325 00000 n -0000005448 00000 n -0000005588 00000 n -0000005726 00000 n -0000005830 00000 n -0000005976 00000 n -0000006084 00000 n -0000006224 00000 n -0000006347 00000 n +0000004609 00000 n +0000004707 00000 n +0000004796 00000 n +0000004885 00000 n +0000004974 00000 n +0000005078 00000 n +0000005321 00000 n +0000005444 00000 n +0000005584 00000 n +0000005707 00000 n +0000005847 00000 n +0000005985 00000 n +0000006089 00000 n +0000006235 00000 n +0000006343 00000 n +0000006483 00000 n +0000006606 00000 n 0000001244 00000 n 0000001109 00000 n 0000000020 00000 n -0000015038 00000 n -0000012561 00000 n -0000010586 00000 n -0000008608 00000 n -0000015392 00000 n +0000015297 00000 n +0000012820 00000 n +0000010845 00000 n +0000008867 00000 n +0000015651 00000 n 0000001456 00000 n 0000001584 00000 n 0000001915 00000 n -0000002611 00000 n -0000006624 00000 n -0000007639 00000 n -0000006677 00000 n -0000007859 00000 n -0000008761 00000 n -0000008960 00000 n -0000009644 00000 n -0000008991 00000 n -0000009865 00000 n -0000010739 00000 n -0000010938 00000 n -0000011619 00000 n -0000010969 00000 n -0000011840 00000 n -0000012714 00000 n -0000012913 00000 n -0000014035 00000 n -0000012989 00000 n -0000014256 00000 n -0000015192 00000 n -0000015454 00000 n -0000015553 00000 n +0000002718 00000 n +0000006883 00000 n +0000007898 00000 n +0000006936 00000 n +0000008118 00000 n +0000009020 00000 n +0000009219 00000 n +0000009903 00000 n +0000009250 00000 n +0000010124 00000 n +0000010998 00000 n +0000011197 00000 n +0000011878 00000 n +0000011228 00000 n +0000012099 00000 n +0000012973 00000 n +0000013172 00000 n +0000014294 00000 n +0000013248 00000 n +0000014515 00000 n +0000015451 00000 n +0000015713 00000 n +0000015812 00000 n trailer << /Size 72 /Root 70 0 R /Info 71 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -15687 +15946 %%EOF diff --git a/required/latex-lab/testfiles-OR-luatex/test9.tpf b/required/latex-lab/testfiles-OR-luatex/test9.tpf index a2e34b66a..4663bcb4d 100644 --- a/required/latex-lab/testfiles-OR-luatex/test9.tpf +++ b/required/latex-lab/testfiles-OR-luatex/test9.tpf @@ -120,7 +120,7 @@ endobj << /Kids [55 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 57 0 obj << /justify <> @@ -140,7 +140,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -427,38 +427,38 @@ xref 0000001848 00000 n 0000001870 00000 n 0000001892 00000 n -0000006483 00000 n +0000006742 00000 n 0000001950 00000 n 0000002364 00000 n -0000004701 00000 n -0000003221 00000 n +0000004960 00000 n +0000003328 00000 n 0000000012 00000 f -0000003289 00000 n +0000003396 00000 n 0000000014 00000 f -0000003359 00000 n +0000003466 00000 n 0000000020 00000 f -0000004239 00000 n -0000003440 00000 n -0000004512 00000 n -0000004341 00000 n -0000004614 00000 n +0000004498 00000 n +0000003547 00000 n +0000004771 00000 n +0000004600 00000 n +0000004873 00000 n 0000000000 00000 f 0000000842 00000 n -0000004762 00000 n -0000004860 00000 n -0000004949 00000 n -0000005038 00000 n -0000005127 00000 n -0000005231 00000 n -0000005390 00000 n -0000005513 00000 n +0000005021 00000 n +0000005119 00000 n +0000005208 00000 n +0000005297 00000 n +0000005386 00000 n +0000005490 00000 n +0000005649 00000 n +0000005772 00000 n 0000001019 00000 n -0000005687 00000 n -0000005827 00000 n -0000005951 00000 n -0000006055 00000 n -0000006235 00000 n -0000006343 00000 n +0000005946 00000 n +0000006086 00000 n +0000006210 00000 n +0000006314 00000 n +0000006494 00000 n +0000006602 00000 n 0000000020 00000 n 0000001702 00000 n 0000000074 00000 n @@ -466,46 +466,46 @@ xref 0000001305 00000 n 0000001357 00000 n 0000001419 00000 n -0000014717 00000 n -0000012557 00000 n +0000014976 00000 n +0000012816 00000 n 0000001472 00000 n 0000001534 00000 n 0000001587 00000 n 0000001649 00000 n -0000010582 00000 n -0000008604 00000 n -0000015071 00000 n +0000010841 00000 n +0000008863 00000 n +0000015330 00000 n 0000000992 00000 n 0000001914 00000 n 0000002044 00000 n 0000002327 00000 n -0000003023 00000 n -0000006620 00000 n -0000007635 00000 n -0000006673 00000 n -0000007855 00000 n -0000008757 00000 n -0000008956 00000 n -0000009640 00000 n -0000008987 00000 n -0000009861 00000 n -0000010735 00000 n -0000010934 00000 n -0000011615 00000 n -0000010965 00000 n -0000011836 00000 n -0000012710 00000 n -0000012909 00000 n -0000013756 00000 n -0000012951 00000 n -0000013977 00000 n -0000014871 00000 n -0000015133 00000 n -0000015276 00000 n -0000015312 00000 n -0000015536 00000 n +0000003130 00000 n +0000006879 00000 n +0000007894 00000 n +0000006932 00000 n +0000008114 00000 n +0000009016 00000 n +0000009215 00000 n +0000009899 00000 n +0000009246 00000 n +0000010120 00000 n +0000010994 00000 n +0000011193 00000 n +0000011874 00000 n +0000011224 00000 n +0000012095 00000 n +0000012969 00000 n +0000013168 00000 n +0000014015 00000 n +0000013210 00000 n +0000014236 00000 n +0000015130 00000 n +0000015392 00000 n +0000015535 00000 n +0000015571 00000 n +0000015795 00000 n trailer << /Size 82 /Root 80 0 R /Info 81 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -15747 +16006 %%EOF diff --git a/required/latex-lab/testfiles-OR/memoir-001.tpf b/required/latex-lab/testfiles-OR/memoir-001.tpf index fd8beccfc..a3c4a7697 100644 --- a/required/latex-lab/testfiles-OR/memoir-001.tpf +++ b/required/latex-lab/testfiles-OR/memoir-001.tpf @@ -607,7 +607,7 @@ endobj << /Kids [80 0 R 81 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj 83 0 obj << /justify <> @@ -1833,117 +1833,117 @@ xref 0000037623 00000 n 0000037645 00000 n 0000037667 00000 n -0000049605 00000 n +0000049712 00000 n 0000037725 00000 n 0000039545 00000 n 0000000000 00000 f -0000040415 00000 n -0000040509 00000 n -0000040585 00000 n -0000040661 00000 n -0000040752 00000 n +0000040522 00000 n +0000040616 00000 n +0000040692 00000 n +0000040768 00000 n +0000040859 00000 n 0000037293 00000 n -0000041568 00000 n -0000041743 00000 n -0000041869 00000 n -0000042008 00000 n -0000042170 00000 n -0000042297 00000 n -0000042472 00000 n -0000042598 00000 n -0000042737 00000 n -0000042899 00000 n -0000043026 00000 n -0000043203 00000 n -0000043330 00000 n -0000043469 00000 n -0000043631 00000 n -0000043758 00000 n -0000043935 00000 n -0000044062 00000 n -0000044201 00000 n -0000044363 00000 n -0000044490 00000 n -0000044667 00000 n -0000044794 00000 n -0000044933 00000 n -0000045095 00000 n -0000045222 00000 n -0000045399 00000 n -0000045526 00000 n -0000045665 00000 n -0000045827 00000 n -0000045954 00000 n -0000046131 00000 n -0000046258 00000 n -0000046397 00000 n -0000046559 00000 n -0000046686 00000 n -0000046863 00000 n -0000046990 00000 n -0000047129 00000 n -0000047291 00000 n -0000047418 00000 n -0000047509 00000 n -0000047844 00000 n -0000048021 00000 n -0000048148 00000 n -0000048287 00000 n -0000048449 00000 n -0000048576 00000 n -0000048746 00000 n -0000048873 00000 n -0000049050 00000 n -0000049177 00000 n -0000049316 00000 n -0000049478 00000 n +0000041675 00000 n +0000041850 00000 n +0000041976 00000 n +0000042115 00000 n +0000042277 00000 n +0000042404 00000 n +0000042579 00000 n +0000042705 00000 n +0000042844 00000 n +0000043006 00000 n +0000043133 00000 n +0000043310 00000 n +0000043437 00000 n +0000043576 00000 n +0000043738 00000 n +0000043865 00000 n +0000044042 00000 n +0000044169 00000 n +0000044308 00000 n +0000044470 00000 n +0000044597 00000 n +0000044774 00000 n +0000044901 00000 n +0000045040 00000 n +0000045202 00000 n +0000045329 00000 n +0000045506 00000 n +0000045633 00000 n +0000045772 00000 n +0000045934 00000 n +0000046061 00000 n +0000046238 00000 n +0000046365 00000 n +0000046504 00000 n +0000046666 00000 n +0000046793 00000 n +0000046970 00000 n +0000047097 00000 n +0000047236 00000 n +0000047398 00000 n +0000047525 00000 n +0000047616 00000 n +0000047951 00000 n +0000048128 00000 n +0000048255 00000 n +0000048394 00000 n +0000048556 00000 n +0000048683 00000 n +0000048853 00000 n +0000048980 00000 n +0000049157 00000 n +0000049284 00000 n +0000049423 00000 n +0000049585 00000 n 0000000015 00000 n 0000037428 00000 n 0000012173 00000 n -0000137184 00000 n -0000138078 00000 n -0000132646 00000 n -0000128110 00000 n -0000130378 00000 n -0000134914 00000 n -0000138243 00000 n +0000137291 00000 n +0000138185 00000 n +0000132753 00000 n +0000128217 00000 n +0000130485 00000 n +0000135021 00000 n +0000138350 00000 n 0000037689 00000 n 0000038440 00000 n 0000039298 00000 n 0000039501 00000 n -0000040217 00000 n -0000125795 00000 n -0000049723 00000 n -0000049877 00000 n -0000049955 00000 n -0000049979 00000 n -0000050057 00000 n -0000050079 00000 n -0000050552 00000 n -0000053216 00000 n -0000053434 00000 n -0000063735 00000 n -0000063960 00000 n -0000079696 00000 n -0000079965 00000 n -0000098841 00000 n -0000099110 00000 n -0000109837 00000 n -0000110071 00000 n -0000125484 00000 n -0000126020 00000 n -0000128288 00000 n -0000130556 00000 n -0000132824 00000 n -0000135094 00000 n -0000137364 00000 n -0000138302 00000 n -0000138418 00000 n +0000040324 00000 n +0000125902 00000 n +0000049830 00000 n +0000049984 00000 n +0000050062 00000 n +0000050086 00000 n +0000050164 00000 n +0000050186 00000 n +0000050659 00000 n +0000053323 00000 n +0000053541 00000 n +0000063842 00000 n +0000064067 00000 n +0000079803 00000 n +0000080072 00000 n +0000098948 00000 n +0000099217 00000 n +0000109944 00000 n +0000110178 00000 n +0000125591 00000 n +0000126127 00000 n +0000128395 00000 n +0000130663 00000 n +0000132931 00000 n +0000135201 00000 n +0000137471 00000 n +0000138409 00000 n +0000138525 00000 n trailer << /Size 111 /Root 109 0 R /Info 110 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -138551 +138658 %%EOF diff --git a/required/latex-lab/testfiles-OR/scrartcl-001.tpf b/required/latex-lab/testfiles-OR/scrartcl-001.tpf index c1878e325..11f8d7ccd 100644 --- a/required/latex-lab/testfiles-OR/scrartcl-001.tpf +++ b/required/latex-lab/testfiles-OR/scrartcl-001.tpf @@ -531,7 +531,7 @@ endobj << /Kids [70 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 72 0 obj << /justify <> @@ -1428,46 +1428,46 @@ xref 0000016509 00000 n 0000016531 00000 n 0000016553 00000 n -0000022634 00000 n +0000022741 00000 n 0000016611 00000 n 0000017535 00000 n 0000000000 00000 f 0000014683 00000 n -0000018412 00000 n -0000018498 00000 n -0000018575 00000 n -0000018652 00000 n -0000018744 00000 n -0000019110 00000 n -0000019283 00000 n +0000018519 00000 n +0000018605 00000 n +0000018682 00000 n +0000018759 00000 n +0000018851 00000 n +0000019217 00000 n +0000019390 00000 n 0000014857 00000 n -0000019439 00000 n +0000019546 00000 n 0000000015 00000 n -0000019564 00000 n -0000019676 00000 n -0000019768 00000 n -0000019996 00000 n -0000020156 00000 n -0000020282 00000 n -0000020456 00000 n +0000019671 00000 n +0000019783 00000 n +0000019875 00000 n +0000020103 00000 n +0000020263 00000 n +0000020389 00000 n +0000020563 00000 n 0000015058 00000 n -0000020613 00000 n +0000020720 00000 n 0000000068 00000 n -0000020739 00000 n -0000020851 00000 n -0000020943 00000 n -0000021171 00000 n -0000021331 00000 n -0000021457 00000 n -0000021632 00000 n +0000020846 00000 n +0000020958 00000 n +0000021050 00000 n +0000021278 00000 n +0000021438 00000 n +0000021564 00000 n +0000021739 00000 n 0000015260 00000 n -0000021790 00000 n +0000021897 00000 n 0000000121 00000 n -0000021916 00000 n -0000022028 00000 n -0000022120 00000 n -0000022348 00000 n -0000022508 00000 n +0000022023 00000 n +0000022135 00000 n +0000022227 00000 n +0000022455 00000 n +0000022615 00000 n 0000000174 00000 n 0000016338 00000 n 0000012348 00000 n @@ -1475,14 +1475,14 @@ xref 0000015520 00000 n 0000015570 00000 n 0000015628 00000 n -0000083760 00000 n -0000079225 00000 n +0000083867 00000 n +0000079332 00000 n 0000015678 00000 n 0000015737 00000 n 0000015788 00000 n 0000015847 00000 n -0000076959 00000 n -0000081492 00000 n +0000077066 00000 n +0000081599 00000 n 0000015898 00000 n 0000015957 00000 n 0000016008 00000 n @@ -1491,39 +1491,39 @@ xref 0000016177 00000 n 0000016228 00000 n 0000016287 00000 n -0000083938 00000 n +0000084045 00000 n 0000016575 00000 n 0000016975 00000 n 0000017498 00000 n -0000018214 00000 n -0000074744 00000 n -0000022753 00000 n -0000022867 00000 n -0000023120 00000 n -0000023627 00000 n -0000024064 00000 n -0000038989 00000 n -0000039247 00000 n -0000062416 00000 n -0000062676 00000 n -0000072276 00000 n -0000072501 00000 n -0000074519 00000 n -0000074870 00000 n -0000077136 00000 n -0000079403 00000 n -0000081671 00000 n -0000083996 00000 n -0000084187 00000 n -0000084288 00000 n -0000084363 00000 n -0000084399 00000 n -0000084638 00000 n +0000018321 00000 n +0000074851 00000 n +0000022860 00000 n +0000022974 00000 n +0000023227 00000 n +0000023734 00000 n +0000024171 00000 n +0000039096 00000 n +0000039354 00000 n +0000062523 00000 n +0000062783 00000 n +0000072383 00000 n +0000072608 00000 n +0000074626 00000 n +0000074977 00000 n +0000077243 00000 n +0000079510 00000 n +0000081778 00000 n +0000084103 00000 n +0000084294 00000 n +0000084395 00000 n +0000084470 00000 n +0000084506 00000 n +0000084745 00000 n trailer << /Size 96 /Root 94 0 R /Info 95 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -84847 +84954 %%EOF diff --git a/required/latex-lab/testfiles-OR/tagging-002-longtable.tpf b/required/latex-lab/testfiles-OR/tagging-002-longtable.tpf index ff1179c99..234f3f6af 100644 --- a/required/latex-lab/testfiles-OR/tagging-002-longtable.tpf +++ b/required/latex-lab/testfiles-OR/tagging-002-longtable.tpf @@ -245,69 +245,79 @@ endstream endobj 45 0 obj << -/Length 1834 +/Length 1995 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F63 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(ab)-30(c)]TJ ET EMC /Artifact BMC EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 263.104 627.048 Td [(T)83(est)]TJ ET EMC -/footnotemark <> BDC +/footnotemark <> BDC EMC -/text-fragment <> BDC +/text-fragment <> BDC BT /F50 6.9738 Tf 281.697 630.664 Td [(1)]TJ ET EMC -/footnotemark <> BDC +/footnotemark <> BDC EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F62 11.9552 Tf 133.768 583.621 Td [(1.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F63 9.9626 Tf 164.396 583.621 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F62 11.9552 Tf 164.396 583.621 Td [(bla)]TJ ET EMC /Artifact BMC EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 263.104 556.865 Td [(T)83(est)]TJ ET EMC -/footnotemark <> BDC +/footnotemark <> BDC EMC -/text-fragment <> BDC +/text-fragment <> BDC BT /F50 6.9738 Tf 281.697 560.48 Td [(2)]TJ ET EMC -/footnotemark <> BDC +/footnotemark <> BDC EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC EMC @@ -315,45 +325,45 @@ q 1 0 0 1 133.768 535.146 cm []0 d 0 J 0.398 w 0 0 m 137.482 0 l S Q -/text-block <> BDC +/text-block <> BDC EMC -/footnotelabel <> BDC +/footnotelabel <> BDC EMC -/text-fragment <> BDC +/text-fragment <> BDC BT /F60 5.9776 Tf 147.547 528.522 Td [(1)]TJ ET EMC -/footnotelabel <> BDC +/footnotelabel <> BDC EMC -/text-block <> BDC +/text-block <> BDC EMC -/text-block <> BDC +/text-block <> BDC BT /F51 7.9701 Tf 151.697 525.709 Td [(ab)-30(c)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/text-block <> BDC +/text-block <> BDC EMC -/footnotelabel <> BDC +/footnotelabel <> BDC EMC -/text-fragment <> BDC +/text-fragment <> BDC BT /F60 5.9776 Tf 147.547 519.035 Td [(2)]TJ ET EMC -/footnotelabel <> BDC +/footnotelabel <> BDC EMC -/text-block <> BDC +/text-block <> BDC EMC -/text-block <> BDC +/text-block <> BDC BT /F51 7.9701 Tf 151.697 516.223 Td [(ab)-30(c)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -369,13 +379,13 @@ endobj /Resources 44 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 52 0 R +/Parent 53 0 R >> endobj 44 0 obj << /ExtGState 1 0 R -/Font << /F47 46 0 R /F45 47 0 R /F50 48 0 R /F62 49 0 R /F60 50 0 R /F51 51 0 R >> +/Font << /F47 46 0 R /F63 47 0 R /F45 48 0 R /F50 49 0 R /F62 50 0 R /F60 51 0 R /F51 52 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -391,23 +401,23 @@ endobj 4 0 obj << >> endobj -53 0 obj +54 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 13 0 R 20 0 R 21 0 R 22 0 R 21 0 R 20 0 R 30 0 R 29 0 R 35 0 R 36 0 R 37 0 R 36 0 R 35 0 R 25 0 R 26 0 R 27 0 R 26 0 R 25 0 R 25 0 R 25 0 R 40 0 R 41 0 R 42 0 R 41 0 R 40 0 R 40 0 R 40 0 R ] +<< /Nums [0 [ 14 0 R 13 0 R 13 0 R 20 0 R 21 0 R 22 0 R 21 0 R 20 0 R 30 0 R 29 0 R 29 0 R 35 0 R 36 0 R 37 0 R 36 0 R 35 0 R 25 0 R 26 0 R 27 0 R 26 0 R 25 0 R 25 0 R 25 0 R 40 0 R 41 0 R 42 0 R 41 0 R 40 0 R 40 0 R 40 0 R ] ] >> endobj -54 0 obj +55 0 obj << /Limits [(ID.002) (ID.034)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 18 0 R (ID.011) 19 0 R (ID.012) 20 0 R (ID.013) 21 0 R (ID.014) 22 0 R (ID.015) 23 0 R (ID.016) 24 0 R (ID.017) 25 0 R (ID.018) 26 0 R (ID.019) 27 0 R (ID.020) 28 0 R (ID.021) 29 0 R (ID.022) 30 0 R (ID.023) 31 0 R (ID.024) 32 0 R (ID.025) 33 0 R (ID.026) 34 0 R (ID.027) 35 0 R (ID.028) 36 0 R (ID.029) 37 0 R (ID.030) 38 0 R (ID.031) 39 0 R (ID.032) 40 0 R (ID.033) 41 0 R (ID.034) 42 0 R ] >> endobj -55 0 obj -<< /Kids [54 0 R] >> +56 0 obj +<< /Kids [55 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj -56 0 obj +57 0 obj << /justify <> /sup <> /TH-both <> @@ -428,10 +438,10 @@ endobj << /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 16 0 R 23 0 R 28 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /section /P 12 0 R /K [14 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /P 12 0 R /K [14 0 R <> <>] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /S /section-number /P 13 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /P 13 0 R /K <> /ID (ID.007) >> endobj 16 0 obj << /Type /StructElem /S /Table /P 12 0 R /K 17 0 R /ID (ID.008) >> @@ -446,13 +456,13 @@ endobj << /Type /StructElem /S /Div /P 18 0 R /K 20 0 R /ID (ID.011) >> endobj 20 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 19 0 R /K [<> 21 0 R <>] /ID (ID.012) >> +<< /Type /StructElem /C /justify /S /text-block /P 19 0 R /K [<> 21 0 R <>] /ID (ID.012) >> endobj 21 0 obj -<< /Type /StructElem /S /footnotemark /P 20 0 R /Ref [ 23 0 R ] /K [<> 22 0 R <>] /ID (ID.013) >> +<< /Type /StructElem /S /footnotemark /P 20 0 R /Ref [ 23 0 R ] /K [<> 22 0 R <>] /ID (ID.013) >> endobj 22 0 obj -<< /Type /StructElem /C /sup /S /text-fragment /P 21 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /C /sup /S /text-fragment /P 21 0 R /K <> /ID (ID.014) >> endobj 23 0 obj << /Type /StructElem /S /footnote /P 12 0 R /Ref [ 21 0 R ] /K [26 0 R 24 0 R] /ID (ID.015) >> @@ -461,22 +471,22 @@ endobj << /Type /StructElem /S /Div /P 23 0 R /K 25 0 R /ID (ID.016) >> endobj 25 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 24 0 R /K [<> <> <> <>] /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /text-block /P 24 0 R /K [<> <> <> <>] /ID (ID.017) >> endobj 26 0 obj -<< /Type /StructElem /S /footnotelabel /P 23 0 R /K [<> 27 0 R <>] /ID (ID.018) >> +<< /Type /StructElem /S /footnotelabel /P 23 0 R /K [<> 27 0 R <>] /ID (ID.018) >> endobj 27 0 obj -<< /Type /StructElem /C /sup /S /text-fragment /P 26 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /C /sup /S /text-fragment /P 26 0 R /K <> /ID (ID.019) >> endobj 28 0 obj << /Type /StructElem /S /Sect /P 12 0 R /K [29 0 R 31 0 R 38 0 R] /ID (ID.020) >> endobj 29 0 obj -<< /Type /StructElem /T /S /subsection /P 28 0 R /K [30 0 R <>] /ID (ID.021) >> +<< /Type /StructElem /T /S /subsection /P 28 0 R /K [30 0 R <> <>] /ID (ID.021) >> endobj 30 0 obj -<< /Type /StructElem /S /section-number /P 29 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /S /heading-number /P 29 0 R /K <> /ID (ID.022) >> endobj 31 0 obj << /Type /StructElem /S /Table /P 28 0 R /K 32 0 R /ID (ID.023) >> @@ -491,13 +501,13 @@ endobj << /Type /StructElem /S /Div /P 33 0 R /K 35 0 R /ID (ID.026) >> endobj 35 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 34 0 R /K [<> 36 0 R <>] /ID (ID.027) >> +<< /Type /StructElem /C /justify /S /text-block /P 34 0 R /K [<> 36 0 R <>] /ID (ID.027) >> endobj 36 0 obj -<< /Type /StructElem /S /footnotemark /P 35 0 R /Ref [ 38 0 R ] /K [<> 37 0 R <>] /ID (ID.028) >> +<< /Type /StructElem /S /footnotemark /P 35 0 R /Ref [ 38 0 R ] /K [<> 37 0 R <>] /ID (ID.028) >> endobj 37 0 obj -<< /Type /StructElem /C /sup /S /text-fragment /P 36 0 R /K <> /ID (ID.029) >> +<< /Type /StructElem /C /sup /S /text-fragment /P 36 0 R /K <> /ID (ID.029) >> endobj 38 0 obj << /Type /StructElem /S /footnote /P 28 0 R /Ref [ 36 0 R ] /K [41 0 R 39 0 R] /ID (ID.030) >> @@ -506,36 +516,64 @@ endobj << /Type /StructElem /S /Div /P 38 0 R /K 40 0 R /ID (ID.031) >> endobj 40 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 39 0 R /K [<> <> <> <>] /ID (ID.032) >> +<< /Type /StructElem /C /justify /S /text-block /P 39 0 R /K [<> <> <> <>] /ID (ID.032) >> endobj 41 0 obj -<< /Type /StructElem /S /footnotelabel /P 38 0 R /K [<> 42 0 R <>] /ID (ID.033) >> +<< /Type /StructElem /S /footnotelabel /P 38 0 R /K [<> 42 0 R <>] /ID (ID.033) >> endobj 42 0 obj -<< /Type /StructElem /C /sup /S /text-fragment /P 41 0 R /K <> /ID (ID.034) >> +<< /Type /StructElem /C /sup /S /text-fragment /P 41 0 R /K <> /ID (ID.034) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 55 0 R /ClassMap 56 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 56 0 R /ClassMap 57 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -58 0 obj +59 0 obj [531.1 590.1 472.1] endobj -59 0 obj +60 0 obj [611 611] endobj -60 0 obj +61 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4] endobj -61 0 obj +62 0 obj [569.3 569.3] endobj -62 0 obj +63 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8] endobj -63 0 obj +64 0 obj +[333] +endobj +65 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8] endobj -64 0 obj +66 0 obj +<< +/Length1 1144 +/Length2 1422 +/Length3 0 +/Length 2566 +>> +[BINARY STREAM] +endobj +67 0 obj +<< +/Type /FontDescriptor +/FontName /MUQHVU+PdfTeX-Space +/Flags 4 +/FontBBox [0 -290 333 1127] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 0 +/XHeight 500 +/CharSet (/space) +/FontFile 66 0 R +>> +endobj +68 0 obj << /Length1 727 /Length2 7574 @@ -544,7 +582,7 @@ endobj >> [BINARY STREAM] endobj -65 0 obj +69 0 obj << /Type /FontDescriptor /FontName /AZUAYJ+SFBX1200 @@ -557,10 +595,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/a/b/l/one/period) -/FontFile 64 0 R +/FontFile 68 0 R >> endobj -66 0 obj +70 0 obj << /Length1 727 /Length2 2916 @@ -569,7 +607,7 @@ endobj >> [BINARY STREAM] endobj -67 0 obj +71 0 obj << /Type /FontDescriptor /FontName /AAUTQH+SFBX1440 @@ -582,10 +620,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/a/b/c/one) -/FontFile 66 0 R +/FontFile 70 0 R >> endobj -68 0 obj +72 0 obj << /Length1 721 /Length2 14010 @@ -594,7 +632,7 @@ endobj >> [BINARY STREAM] endobj -69 0 obj +73 0 obj << /Type /FontDescriptor /FontName /QNUIBG+SFRM0600 @@ -607,10 +645,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/one/two) -/FontFile 68 0 R +/FontFile 72 0 R >> endobj -70 0 obj +74 0 obj << /Length1 721 /Length2 1158 @@ -619,7 +657,7 @@ endobj >> [BINARY STREAM] endobj -71 0 obj +75 0 obj << /Type /FontDescriptor /FontName /JDSMEO+SFRM0700 @@ -632,10 +670,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/one/two) -/FontFile 70 0 R +/FontFile 74 0 R >> endobj -72 0 obj +76 0 obj << /Length1 721 /Length2 9381 @@ -644,7 +682,7 @@ endobj >> [BINARY STREAM] endobj -73 0 obj +77 0 obj << /Type /FontDescriptor /FontName /WOWNJR+SFRM0800 @@ -657,10 +695,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/b/c) -/FontFile 72 0 R +/FontFile 76 0 R >> endobj -74 0 obj +78 0 obj << /Length1 721 /Length2 9015 @@ -669,7 +707,7 @@ endobj >> [BINARY STREAM] endobj -75 0 obj +79 0 obj << /Type /FontDescriptor /FontName /SSKXDU+SFRM1000 @@ -682,16 +720,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/T/e/one/s/t) -/FontFile 74 0 R +/FontFile 78 0 R >> endobj -57 0 obj +58 0 obj << /Type /Encoding /Differences [46/period 49/one/two 84/T 97/a/b/c 101/e 108/l 115/s/t] >> endobj -76 0 obj +80 0 obj << /Length 2030 >> @@ -835,20 +873,20 @@ end %%EOF endstream endobj -49 0 obj +50 0 obj << /Type /Font /Subtype /Type1 /BaseFont /AZUAYJ+SFBX1200 -/FontDescriptor 65 0 R +/FontDescriptor 69 0 R /FirstChar 46 /LastChar 108 -/Widths 60 0 R -/Encoding 57 0 R -/ToUnicode 76 0 R +/Widths 61 0 R +/Encoding 58 0 R +/ToUnicode 80 0 R >> endobj -77 0 obj +81 0 obj << /Length 2030 >> @@ -997,15 +1035,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /AAUTQH+SFBX1440 -/FontDescriptor 67 0 R +/FontDescriptor 71 0 R /FirstChar 49 /LastChar 99 -/Widths 63 0 R -/Encoding 57 0 R -/ToUnicode 77 0 R +/Widths 65 0 R +/Encoding 58 0 R +/ToUnicode 81 0 R >> endobj -78 0 obj +82 0 obj << /Length 2030 >> @@ -1149,20 +1187,20 @@ end %%EOF endstream endobj -50 0 obj +51 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QNUIBG+SFRM0600 -/FontDescriptor 69 0 R +/FontDescriptor 73 0 R /FirstChar 49 /LastChar 50 -/Widths 59 0 R -/Encoding 57 0 R -/ToUnicode 78 0 R +/Widths 60 0 R +/Encoding 58 0 R +/ToUnicode 82 0 R >> endobj -79 0 obj +83 0 obj << /Length 2030 >> @@ -1306,20 +1344,20 @@ end %%EOF endstream endobj -48 0 obj +49 0 obj << /Type /Font /Subtype /Type1 /BaseFont /JDSMEO+SFRM0700 -/FontDescriptor 71 0 R +/FontDescriptor 75 0 R /FirstChar 49 /LastChar 50 -/Widths 61 0 R -/Encoding 57 0 R -/ToUnicode 79 0 R +/Widths 62 0 R +/Encoding 58 0 R +/ToUnicode 83 0 R >> endobj -80 0 obj +84 0 obj << /Length 2030 >> @@ -1463,20 +1501,20 @@ end %%EOF endstream endobj -51 0 obj +52 0 obj << /Type /Font /Subtype /Type1 /BaseFont /WOWNJR+SFRM0800 -/FontDescriptor 73 0 R +/FontDescriptor 77 0 R /FirstChar 97 /LastChar 99 -/Widths 58 0 R -/Encoding 57 0 R -/ToUnicode 80 0 R +/Widths 59 0 R +/Encoding 58 0 R +/ToUnicode 84 0 R >> endobj -81 0 obj +85 0 obj << /Length 2030 >> @@ -1620,130 +1658,185 @@ end %%EOF endstream endobj -47 0 obj +48 0 obj << /Type /Font /Subtype /Type1 /BaseFont /SSKXDU+SFRM1000 -/FontDescriptor 75 0 R +/FontDescriptor 79 0 R /FirstChar 49 /LastChar 116 -/Widths 62 0 R -/Encoding 57 0 R -/ToUnicode 81 0 R +/Widths 63 0 R +/Encoding 58 0 R +/ToUnicode 85 0 R >> endobj -52 0 obj +86 0 obj +<< +/Length 654 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: ProcSet (CIDInit) +%%IncludeResource: ProcSet (CIDInit) +%%BeginResource: CMap (TeX-pdftexspace-builtin-0) +%%Title: (TeX-pdftexspace-builtin-0 TeX pdftexspace-builtin 0) +%%Version: 1.000 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo +<< /Registry (TeX) +/Ordering (pdftexspace-builtin) +/Supplement 0 +>> def +/CMapName /TeX-pdftexspace-builtin-0 def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +0 beginbfrange +endbfrange +1 beginbfchar +<20> <0020> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj +47 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /MUQHVU+PdfTeX-Space +/FontDescriptor 67 0 R +/FirstChar 32 +/LastChar 32 +/Widths 64 0 R +/ToUnicode 86 0 R +>> +endobj +53 0 obj << /Type /Pages /Count 1 /Kids [15 0 R] >> endobj -82 0 obj +87 0 obj << /Type /Catalog -/Pages 52 0 R -/MarkInfo 53 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 43 0 R +/Pages 53 0 R +/MarkInfo 54 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 43 0 R >> endobj -83 0 obj +88 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 84 +0 89 0000000008 65535 f -0000014360 00000 n -0000014407 00000 n -0000014429 00000 n -0000014451 00000 n -0000020239 00000 n -0000014509 00000 n -0000015364 00000 n +0000014533 00000 n +0000014580 00000 n +0000014602 00000 n +0000014624 00000 n +0000020601 00000 n +0000014682 00000 n +0000015551 00000 n 0000000000 00000 f -0000016241 00000 n -0000016326 00000 n -0000016402 00000 n -0000016478 00000 n -0000016583 00000 n -0000016726 00000 n -0000014077 00000 n -0000016845 00000 n -0000016929 00000 n -0000017010 00000 n -0000017091 00000 n -0000017173 00000 n -0000017342 00000 n -0000017517 00000 n -0000017643 00000 n -0000017755 00000 n -0000017837 00000 n -0000018069 00000 n -0000018231 00000 n -0000018358 00000 n -0000018457 00000 n -0000018603 00000 n -0000018722 00000 n -0000018806 00000 n -0000018887 00000 n -0000018968 00000 n -0000019050 00000 n -0000019220 00000 n -0000019397 00000 n -0000019524 00000 n -0000019636 00000 n -0000019718 00000 n -0000019950 00000 n -0000020112 00000 n +0000016535 00000 n +0000016620 00000 n +0000016696 00000 n +0000016772 00000 n +0000016877 00000 n +0000017053 00000 n +0000014238 00000 n +0000017172 00000 n +0000017256 00000 n +0000017337 00000 n +0000017418 00000 n +0000017500 00000 n +0000017669 00000 n +0000017844 00000 n +0000017970 00000 n +0000018082 00000 n +0000018164 00000 n +0000018396 00000 n +0000018558 00000 n +0000018685 00000 n +0000018784 00000 n +0000018964 00000 n +0000019083 00000 n +0000019167 00000 n +0000019248 00000 n +0000019329 00000 n +0000019411 00000 n +0000019582 00000 n +0000019759 00000 n +0000019886 00000 n +0000019998 00000 n +0000020080 00000 n +0000020312 00000 n +0000020474 00000 n 0000000015 00000 n -0000014212 00000 n +0000014373 00000 n 0000012184 00000 n -0000076390 00000 n -0000085454 00000 n -0000080922 00000 n -0000074123 00000 n -0000078656 00000 n -0000083188 00000 n -0000085632 00000 n -0000014473 00000 n -0000014741 00000 n -0000015327 00000 n -0000016043 00000 n -0000071926 00000 n -0000020357 00000 n -0000020393 00000 n -0000020419 00000 n -0000020813 00000 n -0000020843 00000 n -0000021260 00000 n -0000021576 00000 n -0000029974 00000 n -0000030210 00000 n -0000033950 00000 n -0000034179 00000 n -0000049008 00000 n -0000049235 00000 n -0000051211 00000 n -0000051438 00000 n -0000061637 00000 n -0000061862 00000 n -0000071695 00000 n -0000072034 00000 n -0000074301 00000 n -0000076567 00000 n -0000078833 00000 n -0000081099 00000 n -0000083365 00000 n -0000085691 00000 n -0000085806 00000 n +0000079656 00000 n +0000089611 00000 n +0000088720 00000 n +0000084188 00000 n +0000077389 00000 n +0000081922 00000 n +0000086454 00000 n +0000089775 00000 n +0000014646 00000 n +0000014928 00000 n +0000015514 00000 n +0000016337 00000 n +0000075192 00000 n +0000020719 00000 n +0000020755 00000 n +0000020781 00000 n +0000021175 00000 n +0000021205 00000 n +0000021622 00000 n +0000021644 00000 n +0000021960 00000 n +0000024624 00000 n +0000024842 00000 n +0000033240 00000 n +0000033476 00000 n +0000037216 00000 n +0000037445 00000 n +0000052274 00000 n +0000052501 00000 n +0000054477 00000 n +0000054704 00000 n +0000064903 00000 n +0000065128 00000 n +0000074961 00000 n +0000075300 00000 n +0000077567 00000 n +0000079833 00000 n +0000082099 00000 n +0000084365 00000 n +0000086631 00000 n +0000088898 00000 n +0000089834 00000 n +0000089949 00000 n trailer -<< /Size 84 -/Root 82 0 R -/Info 83 0 R +<< /Size 89 +/Root 87 0 R +/Info 88 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -85938 +90081 %%EOF diff --git a/required/latex-lab/testfiles-OR/tlb-multicol-marks-tagged.tlg b/required/latex-lab/testfiles-OR/tlb-multicol-marks-tagged.tlg index 1e0a871d0..8932e3521 100644 --- a/required/latex-lab/testfiles-OR/tlb-multicol-marks-tagged.tlg +++ b/required/latex-lab/testfiles-OR/tlb-multicol-marks-tagged.tlg @@ -404,7 +404,7 @@ If that doesn't work, type X to quit. [6]<><> (tlb-multicol-marks-tagged.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~66 structure objects -(tagpdf) with ~50 'MC' leaf nodes. +(tagpdf) with ~58 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-bib/bib-003.tlg b/required/latex-lab/testfiles-bib/bib-003.tlg index 8a4d92fe3..a3a93a856 100644 --- a/required/latex-lab/testfiles-bib/bib-003.tlg +++ b/required/latex-lab/testfiles-bib/bib-003.tlg @@ -159,12 +159,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 c ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,11,14,section,,,} ...\marks4{b+,11,14,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,11,14,} ...\marks4{e+,11,14,} ...\penalty 10000 diff --git a/required/latex-lab/testfiles-bib/bib-004.tlg b/required/latex-lab/testfiles-bib/bib-004.tlg index d20b03fc9..55873bbed 100644 --- a/required/latex-lab/testfiles-bib/bib-004.tlg +++ b/required/latex-lab/testfiles-bib/bib-004.tlg @@ -249,12 +249,12 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 c .....\T1/cmr/bx/n/14.4 e .....\T1/cmr/bx/n/14.4 s -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 ....\marks4{b-,19,18,section,,,} ....\marks4{b+,19,18,section,,,} +....\pdfliteral page{EMC} ....\marks4{e-,19,18,} ....\marks4{e+,19,18,} ....\penalty 10000 diff --git a/required/latex-lab/testfiles-bib/bib-005.luatex.tpf b/required/latex-lab/testfiles-bib/bib-005.luatex.tpf index 64871cb7b..987fe4976 100644 --- a/required/latex-lab/testfiles-bib/bib-005.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-005.luatex.tpf @@ -158,7 +158,7 @@ endobj << /Kids [61 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 63 0 obj << /justify <> @@ -178,7 +178,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -863,82 +863,82 @@ xref 0000002175 00000 n 0000002197 00000 n 0000002219 00000 n -0000009292 00000 n +0000009551 00000 n 0000002277 00000 n 0000003024 00000 n -0000005372 00000 n -0000003890 00000 n +0000005631 00000 n +0000003997 00000 n 0000000012 00000 f -0000003958 00000 n +0000004065 00000 n 0000000014 00000 f -0000004028 00000 n +0000004135 00000 n 0000000020 00000 f -0000004908 00000 n -0000004109 00000 n -0000005181 00000 n -0000005010 00000 n -0000005283 00000 n +0000005167 00000 n +0000004216 00000 n +0000005440 00000 n +0000005269 00000 n +0000005542 00000 n 0000000000 00000 f -0000005433 00000 n -0000005547 00000 n -0000005636 00000 n -0000005725 00000 n -0000005814 00000 n -0000005918 00000 n -0000006145 00000 n -0000006288 00000 n -0000006431 00000 n -0000006535 00000 n -0000006762 00000 n -0000006905 00000 n -0000007048 00000 n -0000007152 00000 n -0000007329 00000 n -0000007433 00000 n -0000007558 00000 n -0000007662 00000 n -0000007791 00000 n -0000007890 00000 n -0000007994 00000 n -0000008136 00000 n -0000008240 00000 n -0000008369 00000 n -0000008468 00000 n -0000008572 00000 n -0000008714 00000 n -0000008818 00000 n -0000008947 00000 n -0000009046 00000 n -0000009150 00000 n -0000009429 00000 n +0000005692 00000 n +0000005806 00000 n +0000005895 00000 n +0000005984 00000 n +0000006073 00000 n +0000006177 00000 n +0000006404 00000 n +0000006547 00000 n +0000006690 00000 n +0000006794 00000 n +0000007021 00000 n +0000007164 00000 n +0000007307 00000 n +0000007411 00000 n +0000007588 00000 n +0000007692 00000 n +0000007817 00000 n +0000007921 00000 n +0000008050 00000 n +0000008149 00000 n +0000008253 00000 n +0000008395 00000 n +0000008499 00000 n +0000008628 00000 n +0000008727 00000 n +0000008831 00000 n +0000008973 00000 n +0000009077 00000 n +0000009206 00000 n +0000009305 00000 n +0000009409 00000 n +0000009688 00000 n 0000002041 00000 n 0000001906 00000 n 0000000020 00000 n -0000047107 00000 n -0000023267 00000 n -0000045164 00000 n -0000047265 00000 n +0000047366 00000 n +0000023526 00000 n +0000045423 00000 n +0000047524 00000 n 0000002241 00000 n 0000002432 00000 n 0000002987 00000 n -0000003683 00000 n -0000021587 00000 n -0000021698 00000 n -0000022320 00000 n -0000021730 00000 n -0000022541 00000 n -0000023421 00000 n -0000023621 00000 n -0000032567 00000 n -0000023828 00000 n -0000043170 00000 n -0000032774 00000 n -0000043375 00000 n -0000045323 00000 n -0000047327 00000 n -0000047442 00000 n +0000003790 00000 n +0000021846 00000 n +0000021957 00000 n +0000022579 00000 n +0000021989 00000 n +0000022800 00000 n +0000023680 00000 n +0000023880 00000 n +0000032826 00000 n +0000024087 00000 n +0000043429 00000 n +0000033033 00000 n +0000043634 00000 n +0000045582 00000 n +0000047586 00000 n +0000047701 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47574 +47833 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-005.tpf b/required/latex-lab/testfiles-bib/bib-005.tpf index 1f02653af..4e55ef604 100644 --- a/required/latex-lab/testfiles-bib/bib-005.tpf +++ b/required/latex-lab/testfiles-bib/bib-005.tpf @@ -385,7 +385,7 @@ endobj << /Kids [60 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 62 0 obj << /justify <> @@ -405,7 +405,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -996,84 +996,84 @@ xref 0000014059 00000 n 0000014081 00000 n 0000014103 00000 n -0000021037 00000 n +0000021296 00000 n 0000014161 00000 n 0000014892 00000 n -0000017240 00000 n -0000015758 00000 n +0000017499 00000 n +0000015865 00000 n 0000000012 00000 f -0000015826 00000 n +0000015933 00000 n 0000000014 00000 f -0000015896 00000 n +0000016003 00000 n 0000000020 00000 f -0000016776 00000 n -0000015977 00000 n -0000017049 00000 n -0000016878 00000 n -0000017151 00000 n +0000017035 00000 n +0000016084 00000 n +0000017308 00000 n +0000017137 00000 n +0000017410 00000 n 0000000000 00000 f -0000017301 00000 n -0000017415 00000 n -0000017504 00000 n -0000017593 00000 n -0000017697 00000 n +0000017560 00000 n +0000017674 00000 n +0000017763 00000 n +0000017852 00000 n +0000017956 00000 n 0000013789 00000 n -0000017918 00000 n -0000018059 00000 n -0000018200 00000 n -0000018304 00000 n -0000018525 00000 n -0000018666 00000 n -0000018807 00000 n -0000018911 00000 n -0000019086 00000 n -0000019190 00000 n -0000019315 00000 n -0000019419 00000 n -0000019546 00000 n -0000019645 00000 n -0000019749 00000 n -0000019889 00000 n -0000019993 00000 n -0000020120 00000 n -0000020219 00000 n -0000020323 00000 n -0000020463 00000 n -0000020567 00000 n -0000020694 00000 n -0000020793 00000 n -0000020897 00000 n +0000018177 00000 n +0000018318 00000 n +0000018459 00000 n +0000018563 00000 n +0000018784 00000 n +0000018925 00000 n +0000019066 00000 n +0000019170 00000 n +0000019345 00000 n +0000019449 00000 n +0000019574 00000 n +0000019678 00000 n +0000019805 00000 n +0000019904 00000 n +0000020008 00000 n +0000020148 00000 n +0000020252 00000 n +0000020379 00000 n +0000020478 00000 n +0000020582 00000 n +0000020722 00000 n +0000020826 00000 n +0000020953 00000 n +0000021052 00000 n +0000021156 00000 n 0000000015 00000 n 0000013924 00000 n 0000012170 00000 n -0000046780 00000 n -0000047671 00000 n -0000044513 00000 n -0000047835 00000 n +0000047039 00000 n +0000047930 00000 n +0000044772 00000 n +0000048094 00000 n 0000014125 00000 n 0000014316 00000 n 0000014855 00000 n -0000015551 00000 n -0000042272 00000 n -0000021174 00000 n -0000021377 00000 n -0000021399 00000 n -0000021868 00000 n -0000024532 00000 n -0000024750 00000 n -0000034856 00000 n -0000035089 00000 n -0000042004 00000 n -0000042424 00000 n -0000044691 00000 n -0000046958 00000 n -0000047894 00000 n -0000048009 00000 n +0000015658 00000 n +0000042531 00000 n +0000021433 00000 n +0000021636 00000 n +0000021658 00000 n +0000022127 00000 n +0000024791 00000 n +0000025009 00000 n +0000035115 00000 n +0000035348 00000 n +0000042263 00000 n +0000042683 00000 n +0000044950 00000 n +0000047217 00000 n +0000048153 00000 n +0000048268 00000 n trailer << /Size 78 /Root 76 0 R /Info 77 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -48141 +48400 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-006.luatex.tpf b/required/latex-lab/testfiles-bib/bib-006.luatex.tpf index 916d63555..af214d074 100644 --- a/required/latex-lab/testfiles-bib/bib-006.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-006.luatex.tpf @@ -227,7 +227,7 @@ endobj << /Kids [86 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 88 0 obj << /justify <> @@ -247,7 +247,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -950,63 +950,63 @@ xref 0000004046 00000 n 0000004068 00000 n 0000004090 00000 n -0000011695 00000 n +0000011954 00000 n 0000004148 00000 n 0000004995 00000 n -0000007343 00000 n -0000005861 00000 n +0000007602 00000 n +0000005968 00000 n 0000000012 00000 f -0000005929 00000 n +0000006036 00000 n 0000000014 00000 f -0000005999 00000 n +0000006106 00000 n 0000000020 00000 f -0000006879 00000 n -0000006080 00000 n -0000007152 00000 n -0000006981 00000 n -0000007254 00000 n +0000007138 00000 n +0000006187 00000 n +0000007411 00000 n +0000007240 00000 n +0000007513 00000 n 0000000000 00000 f 0000002120 00000 n -0000007404 00000 n -0000007518 00000 n -0000007607 00000 n -0000007696 00000 n -0000007785 00000 n -0000007889 00000 n -0000008116 00000 n -0000008235 00000 n +0000007663 00000 n +0000007777 00000 n +0000007866 00000 n +0000007955 00000 n +0000008044 00000 n +0000008148 00000 n +0000008375 00000 n +0000008494 00000 n 0000002318 00000 n -0000008367 00000 n -0000008486 00000 n +0000008626 00000 n +0000008745 00000 n 0000002545 00000 n -0000008618 00000 n -0000008722 00000 n -0000008949 00000 n -0000009068 00000 n +0000008877 00000 n +0000008981 00000 n +0000009208 00000 n +0000009327 00000 n 0000002770 00000 n -0000009200 00000 n -0000009319 00000 n +0000009459 00000 n +0000009578 00000 n 0000002997 00000 n -0000009451 00000 n -0000009555 00000 n -0000009732 00000 n -0000009836 00000 n -0000009961 00000 n -0000010065 00000 n -0000010194 00000 n -0000010293 00000 n -0000010397 00000 n -0000010539 00000 n -0000010643 00000 n -0000010772 00000 n -0000010871 00000 n -0000010975 00000 n -0000011117 00000 n -0000011221 00000 n -0000011350 00000 n -0000011449 00000 n -0000011553 00000 n -0000011832 00000 n +0000009710 00000 n +0000009814 00000 n +0000009991 00000 n +0000010095 00000 n +0000010220 00000 n +0000010324 00000 n +0000010453 00000 n +0000010552 00000 n +0000010656 00000 n +0000010798 00000 n +0000010902 00000 n +0000011031 00000 n +0000011130 00000 n +0000011234 00000 n +0000011376 00000 n +0000011480 00000 n +0000011609 00000 n +0000011708 00000 n +0000011812 00000 n +0000012091 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -1017,42 +1017,42 @@ xref 0000003285 00000 n 0000003337 00000 n 0000003399 00000 n -0000049527 00000 n -0000025684 00000 n +0000049786 00000 n +0000025943 00000 n 0000003452 00000 n 0000003514 00000 n -0000047582 00000 n +0000047841 00000 n 0000003567 00000 n 0000003629 00000 n 0000003682 00000 n 0000003744 00000 n 0000003797 00000 n 0000003859 00000 n -0000049686 00000 n +0000049945 00000 n 0000002270 00000 n 0000004112 00000 n 0000004339 00000 n 0000004958 00000 n -0000005654 00000 n -0000024004 00000 n -0000024115 00000 n -0000024737 00000 n -0000024147 00000 n -0000024958 00000 n -0000025838 00000 n -0000026038 00000 n -0000034984 00000 n -0000026245 00000 n -0000045587 00000 n -0000035191 00000 n -0000045792 00000 n -0000047742 00000 n -0000049748 00000 n -0000049934 00000 n -0000049972 00000 n -0000050214 00000 n +0000005761 00000 n +0000024263 00000 n +0000024374 00000 n +0000024996 00000 n +0000024406 00000 n +0000025217 00000 n +0000026097 00000 n +0000026297 00000 n +0000035243 00000 n +0000026504 00000 n +0000045846 00000 n +0000035450 00000 n +0000046051 00000 n +0000048001 00000 n +0000050007 00000 n +0000050193 00000 n +0000050231 00000 n +0000050473 00000 n trailer << /Size 106 /Root 104 0 R /Info 105 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -50424 +50683 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-006.tpf b/required/latex-lab/testfiles-bib/bib-006.tpf index f1ba251a5..1ca558d4b 100644 --- a/required/latex-lab/testfiles-bib/bib-006.tpf +++ b/required/latex-lab/testfiles-bib/bib-006.tpf @@ -502,7 +502,7 @@ endobj << /Kids [84 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 86 0 obj << /justify <> @@ -522,7 +522,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1137,65 +1137,65 @@ xref 0000016040 00000 n 0000016062 00000 n 0000016084 00000 n -0000023870 00000 n +0000024129 00000 n 0000016142 00000 n 0000017029 00000 n -0000019377 00000 n -0000017895 00000 n +0000019636 00000 n +0000018002 00000 n 0000000012 00000 f -0000017963 00000 n +0000018070 00000 n 0000000014 00000 f -0000018033 00000 n +0000018140 00000 n 0000000020 00000 f -0000018913 00000 n -0000018114 00000 n -0000019186 00000 n -0000019015 00000 n -0000019288 00000 n +0000019172 00000 n +0000018221 00000 n +0000019445 00000 n +0000019274 00000 n +0000019547 00000 n 0000000000 00000 f 0000014263 00000 n -0000019438 00000 n -0000019552 00000 n -0000019641 00000 n -0000019730 00000 n -0000019834 00000 n -0000020055 00000 n -0000020238 00000 n +0000019697 00000 n +0000019811 00000 n +0000019900 00000 n +0000019989 00000 n +0000020093 00000 n +0000020314 00000 n +0000020497 00000 n 0000014438 00000 n 0000000015 00000 n -0000020368 00000 n -0000020551 00000 n +0000020627 00000 n +0000020810 00000 n 0000014639 00000 n 0000000069 00000 n -0000020681 00000 n -0000020785 00000 n -0000021008 00000 n -0000021193 00000 n +0000020940 00000 n +0000021044 00000 n +0000021267 00000 n +0000021452 00000 n 0000014840 00000 n 0000000123 00000 n -0000021324 00000 n -0000021509 00000 n +0000021583 00000 n +0000021768 00000 n 0000015041 00000 n 0000000177 00000 n -0000021640 00000 n -0000021744 00000 n -0000021919 00000 n -0000022023 00000 n -0000022148 00000 n -0000022252 00000 n -0000022379 00000 n -0000022478 00000 n -0000022582 00000 n -0000022722 00000 n -0000022826 00000 n -0000022953 00000 n -0000023052 00000 n -0000023156 00000 n -0000023296 00000 n -0000023400 00000 n -0000023527 00000 n -0000023626 00000 n -0000023730 00000 n +0000021899 00000 n +0000022003 00000 n +0000022178 00000 n +0000022282 00000 n +0000022407 00000 n +0000022511 00000 n +0000022638 00000 n +0000022737 00000 n +0000022841 00000 n +0000022981 00000 n +0000023085 00000 n +0000023212 00000 n +0000023311 00000 n +0000023415 00000 n +0000023555 00000 n +0000023659 00000 n +0000023786 00000 n +0000023885 00000 n +0000023989 00000 n 0000000231 00000 n 0000015905 00000 n 0000012400 00000 n @@ -1203,44 +1203,44 @@ xref 0000015300 00000 n 0000015350 00000 n 0000015410 00000 n -0000049613 00000 n -0000050504 00000 n +0000049872 00000 n +0000050763 00000 n 0000015461 00000 n 0000015521 00000 n -0000047346 00000 n +0000047605 00000 n 0000015572 00000 n 0000015632 00000 n 0000015683 00000 n 0000015743 00000 n 0000015794 00000 n 0000015854 00000 n -0000050668 00000 n +0000050927 00000 n 0000016106 00000 n 0000016389 00000 n 0000016992 00000 n -0000017688 00000 n -0000045105 00000 n -0000024007 00000 n -0000024210 00000 n -0000024232 00000 n -0000024701 00000 n -0000027365 00000 n -0000027583 00000 n -0000037689 00000 n -0000037922 00000 n -0000044837 00000 n -0000045257 00000 n -0000047524 00000 n -0000049791 00000 n -0000050727 00000 n -0000050909 00000 n -0000050947 00000 n -0000051189 00000 n +0000017795 00000 n +0000045364 00000 n +0000024266 00000 n +0000024469 00000 n +0000024491 00000 n +0000024960 00000 n +0000027624 00000 n +0000027842 00000 n +0000037948 00000 n +0000038181 00000 n +0000045096 00000 n +0000045516 00000 n +0000047783 00000 n +0000050050 00000 n +0000050986 00000 n +0000051168 00000 n +0000051206 00000 n +0000051448 00000 n trailer << /Size 104 /Root 102 0 R /Info 103 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -51399 +51658 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-007-natbib.luatex.tpf b/required/latex-lab/testfiles-bib/bib-007-natbib.luatex.tpf index e429dfdc1..e7dd65301 100644 --- a/required/latex-lab/testfiles-bib/bib-007-natbib.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-007-natbib.luatex.tpf @@ -142,7 +142,7 @@ endobj << /Kids [61 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 63 0 obj << /justify <> @@ -162,7 +162,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -847,82 +847,82 @@ xref 0000002134 00000 n 0000002156 00000 n 0000002178 00000 n -0000009027 00000 n +0000009286 00000 n 0000002236 00000 n 0000002948 00000 n -0000005296 00000 n -0000003814 00000 n +0000005555 00000 n +0000003921 00000 n 0000000012 00000 f -0000003882 00000 n +0000003989 00000 n 0000000014 00000 f -0000003952 00000 n +0000004059 00000 n 0000000020 00000 f -0000004832 00000 n -0000004033 00000 n -0000005105 00000 n -0000004934 00000 n -0000005207 00000 n +0000005091 00000 n +0000004140 00000 n +0000005364 00000 n +0000005193 00000 n +0000005466 00000 n 0000000000 00000 f -0000005357 00000 n -0000005471 00000 n -0000005560 00000 n -0000005649 00000 n -0000005738 00000 n -0000005842 00000 n -0000006035 00000 n -0000006178 00000 n -0000006321 00000 n -0000006425 00000 n -0000006618 00000 n -0000006761 00000 n -0000006904 00000 n -0000007008 00000 n -0000007184 00000 n -0000007288 00000 n -0000007411 00000 n -0000007515 00000 n -0000007605 00000 n -0000007704 00000 n -0000007808 00000 n -0000007949 00000 n -0000008053 00000 n -0000008143 00000 n -0000008242 00000 n -0000008346 00000 n -0000008488 00000 n -0000008592 00000 n -0000008682 00000 n -0000008781 00000 n -0000008885 00000 n -0000009164 00000 n +0000005616 00000 n +0000005730 00000 n +0000005819 00000 n +0000005908 00000 n +0000005997 00000 n +0000006101 00000 n +0000006294 00000 n +0000006437 00000 n +0000006580 00000 n +0000006684 00000 n +0000006877 00000 n +0000007020 00000 n +0000007163 00000 n +0000007267 00000 n +0000007443 00000 n +0000007547 00000 n +0000007670 00000 n +0000007774 00000 n +0000007864 00000 n +0000007963 00000 n +0000008067 00000 n +0000008208 00000 n +0000008312 00000 n +0000008402 00000 n +0000008501 00000 n +0000008605 00000 n +0000008747 00000 n +0000008851 00000 n +0000008941 00000 n +0000009040 00000 n +0000009144 00000 n +0000009423 00000 n 0000002000 00000 n 0000001865 00000 n 0000000020 00000 n -0000050479 00000 n -0000023009 00000 n -0000048536 00000 n -0000050637 00000 n +0000050738 00000 n +0000023268 00000 n +0000048795 00000 n +0000050896 00000 n 0000002200 00000 n 0000002356 00000 n 0000002911 00000 n -0000003607 00000 n -0000021329 00000 n -0000021440 00000 n -0000022062 00000 n -0000021472 00000 n -0000022283 00000 n -0000023163 00000 n -0000023363 00000 n -0000032356 00000 n -0000023617 00000 n -0000046542 00000 n -0000032563 00000 n -0000046747 00000 n -0000048695 00000 n -0000050699 00000 n -0000050814 00000 n +0000003714 00000 n +0000021588 00000 n +0000021699 00000 n +0000022321 00000 n +0000021731 00000 n +0000022542 00000 n +0000023422 00000 n +0000023622 00000 n +0000032615 00000 n +0000023876 00000 n +0000046801 00000 n +0000032822 00000 n +0000047006 00000 n +0000048954 00000 n +0000050958 00000 n +0000051073 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -50946 +51205 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-007-natbib.tpf b/required/latex-lab/testfiles-bib/bib-007-natbib.tpf index 0e74c5b35..b18f28954 100644 --- a/required/latex-lab/testfiles-bib/bib-007-natbib.tpf +++ b/required/latex-lab/testfiles-bib/bib-007-natbib.tpf @@ -370,7 +370,7 @@ endobj << /Kids [60 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 62 0 obj << /justify <> @@ -390,7 +390,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -981,84 +981,84 @@ xref 0000014021 00000 n 0000014043 00000 n 0000014065 00000 n -0000020997 00000 n +0000021256 00000 n 0000014123 00000 n 0000014854 00000 n -0000017202 00000 n -0000015720 00000 n +0000017461 00000 n +0000015827 00000 n 0000000012 00000 f -0000015788 00000 n +0000015895 00000 n 0000000014 00000 f -0000015858 00000 n +0000015965 00000 n 0000000020 00000 f -0000016738 00000 n -0000015939 00000 n -0000017011 00000 n -0000016840 00000 n -0000017113 00000 n +0000016997 00000 n +0000016046 00000 n +0000017270 00000 n +0000017099 00000 n +0000017372 00000 n 0000000000 00000 f -0000017263 00000 n -0000017377 00000 n -0000017466 00000 n -0000017555 00000 n -0000017659 00000 n +0000017522 00000 n +0000017636 00000 n +0000017725 00000 n +0000017814 00000 n +0000017918 00000 n 0000013751 00000 n -0000017880 00000 n -0000018021 00000 n -0000018162 00000 n -0000018266 00000 n -0000018487 00000 n -0000018628 00000 n -0000018769 00000 n -0000018873 00000 n -0000019048 00000 n -0000019152 00000 n -0000019275 00000 n -0000019379 00000 n -0000019506 00000 n -0000019605 00000 n -0000019709 00000 n -0000019849 00000 n -0000019953 00000 n -0000020080 00000 n -0000020179 00000 n -0000020283 00000 n -0000020423 00000 n -0000020527 00000 n -0000020654 00000 n -0000020753 00000 n -0000020857 00000 n +0000018139 00000 n +0000018280 00000 n +0000018421 00000 n +0000018525 00000 n +0000018746 00000 n +0000018887 00000 n +0000019028 00000 n +0000019132 00000 n +0000019307 00000 n +0000019411 00000 n +0000019534 00000 n +0000019638 00000 n +0000019765 00000 n +0000019864 00000 n +0000019968 00000 n +0000020108 00000 n +0000020212 00000 n +0000020339 00000 n +0000020438 00000 n +0000020542 00000 n +0000020682 00000 n +0000020786 00000 n +0000020913 00000 n +0000021012 00000 n +0000021116 00000 n 0000000015 00000 n 0000013886 00000 n 0000012177 00000 n -0000054775 00000 n -0000055666 00000 n -0000052508 00000 n -0000055830 00000 n +0000055034 00000 n +0000055925 00000 n +0000052767 00000 n +0000056089 00000 n 0000014087 00000 n 0000014278 00000 n 0000014817 00000 n -0000015513 00000 n -0000050223 00000 n -0000021134 00000 n -0000021337 00000 n -0000021359 00000 n -0000021852 00000 n -0000024516 00000 n -0000024734 00000 n -0000034840 00000 n -0000035073 00000 n -0000049917 00000 n -0000050419 00000 n -0000052686 00000 n -0000054953 00000 n -0000055889 00000 n -0000056004 00000 n +0000015620 00000 n +0000050482 00000 n +0000021393 00000 n +0000021596 00000 n +0000021618 00000 n +0000022111 00000 n +0000024775 00000 n +0000024993 00000 n +0000035099 00000 n +0000035332 00000 n +0000050176 00000 n +0000050678 00000 n +0000052945 00000 n +0000055212 00000 n +0000056148 00000 n +0000056263 00000 n trailer << /Size 78 /Root 76 0 R /Info 77 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -56136 +56395 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-008-natbib.luatex.tpf b/required/latex-lab/testfiles-bib/bib-008-natbib.luatex.tpf index d9e1ce531..d6b47b084 100644 --- a/required/latex-lab/testfiles-bib/bib-008-natbib.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-008-natbib.luatex.tpf @@ -303,7 +303,7 @@ endobj << /Kids [104 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 106 0 obj << /justify <> @@ -323,7 +323,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1038,71 +1038,71 @@ xref 0000006076 00000 n 0000006098 00000 n 0000006120 00000 n -0000014504 00000 n +0000014763 00000 n 0000006179 00000 n 0000007171 00000 n -0000009520 00000 n -0000008038 00000 n +0000009779 00000 n +0000008145 00000 n 0000000012 00000 f -0000008106 00000 n +0000008213 00000 n 0000000014 00000 f -0000008176 00000 n +0000008283 00000 n 0000000020 00000 f -0000009056 00000 n -0000008257 00000 n -0000009329 00000 n -0000009158 00000 n -0000009431 00000 n +0000009315 00000 n +0000008364 00000 n +0000009588 00000 n +0000009417 00000 n +0000009690 00000 n 0000000000 00000 f 0000002862 00000 n -0000009581 00000 n -0000009695 00000 n -0000009784 00000 n -0000009873 00000 n -0000009962 00000 n -0000010066 00000 n -0000010259 00000 n -0000010420 00000 n +0000009840 00000 n +0000009954 00000 n +0000010043 00000 n +0000010132 00000 n +0000010221 00000 n +0000010325 00000 n +0000010518 00000 n +0000010679 00000 n 0000003091 00000 n -0000010552 00000 n +0000010811 00000 n 0000003318 00000 n -0000010684 00000 n -0000010845 00000 n +0000010943 00000 n +0000011104 00000 n 0000003545 00000 n -0000010977 00000 n +0000011236 00000 n 0000003771 00000 n -0000011109 00000 n -0000011213 00000 n -0000011408 00000 n -0000011569 00000 n +0000011368 00000 n +0000011472 00000 n +0000011667 00000 n +0000011828 00000 n 0000003998 00000 n -0000011701 00000 n +0000011960 00000 n 0000004225 00000 n -0000011834 00000 n -0000011996 00000 n +0000012093 00000 n +0000012255 00000 n 0000004452 00000 n -0000012129 00000 n +0000012388 00000 n 0000004680 00000 n -0000012262 00000 n -0000012366 00000 n -0000012543 00000 n -0000012647 00000 n -0000012770 00000 n -0000012874 00000 n -0000013003 00000 n -0000013102 00000 n -0000013206 00000 n -0000013348 00000 n -0000013452 00000 n -0000013581 00000 n -0000013680 00000 n -0000013784 00000 n -0000013926 00000 n -0000014030 00000 n -0000014159 00000 n -0000014258 00000 n -0000014362 00000 n -0000014643 00000 n +0000012521 00000 n +0000012625 00000 n +0000012802 00000 n +0000012906 00000 n +0000013029 00000 n +0000013133 00000 n +0000013262 00000 n +0000013361 00000 n +0000013465 00000 n +0000013607 00000 n +0000013711 00000 n +0000013840 00000 n +0000013939 00000 n +0000014043 00000 n +0000014185 00000 n +0000014289 00000 n +0000014418 00000 n +0000014517 00000 n +0000014621 00000 n +0000014902 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -1117,11 +1117,11 @@ xref 0000004969 00000 n 0000005021 00000 n 0000005083 00000 n -0000055995 00000 n -0000028508 00000 n +0000056254 00000 n +0000028767 00000 n 0000005136 00000 n 0000005198 00000 n -0000054048 00000 n +0000054307 00000 n 0000005251 00000 n 0000005313 00000 n 0000005366 00000 n @@ -1134,31 +1134,31 @@ xref 0000005773 00000 n 0000005826 00000 n 0000005888 00000 n -0000056156 00000 n +0000056415 00000 n 0000003014 00000 n 0000006142 00000 n 0000006448 00000 n 0000007132 00000 n -0000007830 00000 n -0000026822 00000 n -0000026934 00000 n -0000027558 00000 n -0000026967 00000 n -0000027781 00000 n -0000028664 00000 n -0000028867 00000 n -0000037862 00000 n -0000029122 00000 n -0000052051 00000 n -0000038071 00000 n -0000052258 00000 n -0000054210 00000 n -0000056219 00000 n -0000056456 00000 n -0000056494 00000 n -0000056738 00000 n +0000007937 00000 n +0000027081 00000 n +0000027193 00000 n +0000027817 00000 n +0000027226 00000 n +0000028040 00000 n +0000028923 00000 n +0000029126 00000 n +0000038121 00000 n +0000029381 00000 n +0000052310 00000 n +0000038330 00000 n +0000052517 00000 n +0000054469 00000 n +0000056478 00000 n +0000056715 00000 n +0000056753 00000 n +0000056997 00000 n trailer << /Size 124 /Root 122 0 R /Info 123 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -56948 +57207 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-008-natbib.tpf b/required/latex-lab/testfiles-bib/bib-008-natbib.tpf index b139333e7..a50b36464 100644 --- a/required/latex-lab/testfiles-bib/bib-008-natbib.tpf +++ b/required/latex-lab/testfiles-bib/bib-008-natbib.tpf @@ -603,7 +603,7 @@ endobj << /Kids [101 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 103 0 obj << /justify <> @@ -623,7 +623,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1184,77 +1184,77 @@ xref 0000017772 00000 n 0000017794 00000 n 0000017816 00000 n -0000026449 00000 n +0000026708 00000 n 0000017875 00000 n 0000018921 00000 n -0000021270 00000 n -0000019788 00000 n +0000021529 00000 n +0000019895 00000 n 0000000012 00000 f -0000019856 00000 n +0000019963 00000 n 0000000014 00000 f -0000019926 00000 n +0000020033 00000 n 0000000020 00000 f -0000020806 00000 n -0000020007 00000 n -0000021079 00000 n -0000020908 00000 n -0000021181 00000 n +0000021065 00000 n +0000020114 00000 n +0000021338 00000 n +0000021167 00000 n +0000021440 00000 n 0000000000 00000 f 0000014845 00000 n -0000021331 00000 n -0000021445 00000 n -0000021534 00000 n -0000021623 00000 n -0000021727 00000 n -0000021949 00000 n -0000022172 00000 n +0000021590 00000 n +0000021704 00000 n +0000021793 00000 n +0000021882 00000 n +0000021986 00000 n +0000022208 00000 n +0000022431 00000 n 0000015048 00000 n 0000000015 00000 n -0000022302 00000 n +0000022561 00000 n 0000015249 00000 n 0000000069 00000 n -0000022432 00000 n -0000022656 00000 n +0000022691 00000 n +0000022915 00000 n 0000015449 00000 n 0000000123 00000 n -0000022786 00000 n +0000023045 00000 n 0000015650 00000 n 0000000177 00000 n -0000022917 00000 n -0000023021 00000 n -0000023245 00000 n -0000023471 00000 n +0000023176 00000 n +0000023280 00000 n +0000023504 00000 n +0000023730 00000 n 0000015850 00000 n 0000000231 00000 n -0000023602 00000 n +0000023861 00000 n 0000016051 00000 n 0000000285 00000 n -0000023733 00000 n -0000023959 00000 n +0000023992 00000 n +0000024218 00000 n 0000016251 00000 n 0000000339 00000 n -0000024090 00000 n +0000024349 00000 n 0000016452 00000 n 0000000393 00000 n -0000024221 00000 n -0000024325 00000 n -0000024500 00000 n -0000024604 00000 n -0000024727 00000 n -0000024831 00000 n -0000024958 00000 n -0000025057 00000 n -0000025161 00000 n -0000025301 00000 n -0000025405 00000 n -0000025532 00000 n -0000025631 00000 n -0000025735 00000 n -0000025875 00000 n -0000025979 00000 n -0000026106 00000 n -0000026205 00000 n -0000026309 00000 n +0000024480 00000 n +0000024584 00000 n +0000024759 00000 n +0000024863 00000 n +0000024986 00000 n +0000025090 00000 n +0000025217 00000 n +0000025316 00000 n +0000025420 00000 n +0000025560 00000 n +0000025664 00000 n +0000025791 00000 n +0000025890 00000 n +0000025994 00000 n +0000026134 00000 n +0000026238 00000 n +0000026365 00000 n +0000026464 00000 n +0000026568 00000 n 0000000447 00000 n 0000017649 00000 n 0000012623 00000 n @@ -1262,10 +1262,10 @@ xref 0000016711 00000 n 0000016761 00000 n 0000016821 00000 n -0000057340 00000 n +0000057599 00000 n 0000016872 00000 n 0000016932 00000 n -0000055068 00000 n +0000055327 00000 n 0000016983 00000 n 0000017043 00000 n 0000017094 00000 n @@ -1278,31 +1278,31 @@ xref 0000017487 00000 n 0000017538 00000 n 0000017598 00000 n -0000057522 00000 n +0000057781 00000 n 0000017838 00000 n 0000018214 00000 n 0000018882 00000 n -0000019580 00000 n -0000052781 00000 n -0000026588 00000 n -0000026792 00000 n -0000027286 00000 n -0000037393 00000 n -0000037628 00000 n -0000052473 00000 n -0000052978 00000 n -0000055250 00000 n -0000057581 00000 n -0000057758 00000 n -0000057876 00000 n -0000057958 00000 n -0000057996 00000 n -0000058239 00000 n +0000019687 00000 n +0000053040 00000 n +0000026847 00000 n +0000027051 00000 n +0000027545 00000 n +0000037652 00000 n +0000037887 00000 n +0000052732 00000 n +0000053237 00000 n +0000055509 00000 n +0000057840 00000 n +0000058017 00000 n +0000058135 00000 n +0000058217 00000 n +0000058255 00000 n +0000058498 00000 n trailer << /Size 119 /Root 117 0 R /Info 118 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -58449 +58708 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-009.luatex.tpf b/required/latex-lab/testfiles-bib/bib-009.luatex.tpf index 1293afdc5..b778fa7e2 100644 --- a/required/latex-lab/testfiles-bib/bib-009.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-009.luatex.tpf @@ -227,7 +227,7 @@ endobj << /Kids [86 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 88 0 obj << /justify <> @@ -247,7 +247,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -950,63 +950,63 @@ xref 0000004046 00000 n 0000004068 00000 n 0000004090 00000 n -0000011695 00000 n +0000011954 00000 n 0000004148 00000 n 0000004995 00000 n -0000007343 00000 n -0000005861 00000 n +0000007602 00000 n +0000005968 00000 n 0000000012 00000 f -0000005929 00000 n +0000006036 00000 n 0000000014 00000 f -0000005999 00000 n +0000006106 00000 n 0000000020 00000 f -0000006879 00000 n -0000006080 00000 n -0000007152 00000 n -0000006981 00000 n -0000007254 00000 n +0000007138 00000 n +0000006187 00000 n +0000007411 00000 n +0000007240 00000 n +0000007513 00000 n 0000000000 00000 f 0000002120 00000 n -0000007404 00000 n -0000007518 00000 n -0000007607 00000 n -0000007696 00000 n -0000007785 00000 n -0000007889 00000 n -0000008116 00000 n -0000008235 00000 n +0000007663 00000 n +0000007777 00000 n +0000007866 00000 n +0000007955 00000 n +0000008044 00000 n +0000008148 00000 n +0000008375 00000 n +0000008494 00000 n 0000002318 00000 n -0000008367 00000 n -0000008486 00000 n +0000008626 00000 n +0000008745 00000 n 0000002545 00000 n -0000008618 00000 n -0000008722 00000 n -0000008949 00000 n -0000009068 00000 n +0000008877 00000 n +0000008981 00000 n +0000009208 00000 n +0000009327 00000 n 0000002770 00000 n -0000009200 00000 n -0000009319 00000 n +0000009459 00000 n +0000009578 00000 n 0000002997 00000 n -0000009451 00000 n -0000009555 00000 n -0000009732 00000 n -0000009836 00000 n -0000009961 00000 n -0000010065 00000 n -0000010194 00000 n -0000010293 00000 n -0000010397 00000 n -0000010539 00000 n -0000010643 00000 n -0000010772 00000 n -0000010871 00000 n -0000010975 00000 n -0000011117 00000 n -0000011221 00000 n -0000011350 00000 n -0000011449 00000 n -0000011553 00000 n -0000011832 00000 n +0000009710 00000 n +0000009814 00000 n +0000009991 00000 n +0000010095 00000 n +0000010220 00000 n +0000010324 00000 n +0000010453 00000 n +0000010552 00000 n +0000010656 00000 n +0000010798 00000 n +0000010902 00000 n +0000011031 00000 n +0000011130 00000 n +0000011234 00000 n +0000011376 00000 n +0000011480 00000 n +0000011609 00000 n +0000011708 00000 n +0000011812 00000 n +0000012091 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -1017,42 +1017,42 @@ xref 0000003285 00000 n 0000003337 00000 n 0000003399 00000 n -0000049528 00000 n -0000025685 00000 n +0000049787 00000 n +0000025944 00000 n 0000003452 00000 n 0000003514 00000 n -0000047583 00000 n +0000047842 00000 n 0000003567 00000 n 0000003629 00000 n 0000003682 00000 n 0000003744 00000 n 0000003797 00000 n 0000003859 00000 n -0000049687 00000 n +0000049946 00000 n 0000002270 00000 n 0000004112 00000 n 0000004339 00000 n 0000004958 00000 n -0000005654 00000 n -0000024005 00000 n -0000024116 00000 n -0000024738 00000 n -0000024148 00000 n -0000024959 00000 n -0000025839 00000 n -0000026039 00000 n -0000034985 00000 n -0000026246 00000 n -0000045588 00000 n -0000035192 00000 n -0000045793 00000 n -0000047743 00000 n -0000049749 00000 n -0000049935 00000 n -0000049973 00000 n -0000050216 00000 n +0000005761 00000 n +0000024264 00000 n +0000024375 00000 n +0000024997 00000 n +0000024407 00000 n +0000025218 00000 n +0000026098 00000 n +0000026298 00000 n +0000035244 00000 n +0000026505 00000 n +0000045847 00000 n +0000035451 00000 n +0000046052 00000 n +0000048002 00000 n +0000050008 00000 n +0000050194 00000 n +0000050232 00000 n +0000050475 00000 n trailer << /Size 106 /Root 104 0 R /Info 105 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -50426 +50685 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-009.tpf b/required/latex-lab/testfiles-bib/bib-009.tpf index 716aed996..5fe0ee123 100644 --- a/required/latex-lab/testfiles-bib/bib-009.tpf +++ b/required/latex-lab/testfiles-bib/bib-009.tpf @@ -502,7 +502,7 @@ endobj << /Kids [84 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 86 0 obj << /justify <> @@ -522,7 +522,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1137,65 +1137,65 @@ xref 0000016041 00000 n 0000016063 00000 n 0000016085 00000 n -0000023871 00000 n +0000024130 00000 n 0000016143 00000 n 0000017030 00000 n -0000019378 00000 n -0000017896 00000 n +0000019637 00000 n +0000018003 00000 n 0000000012 00000 f -0000017964 00000 n +0000018071 00000 n 0000000014 00000 f -0000018034 00000 n +0000018141 00000 n 0000000020 00000 f -0000018914 00000 n -0000018115 00000 n -0000019187 00000 n -0000019016 00000 n -0000019289 00000 n +0000019173 00000 n +0000018222 00000 n +0000019446 00000 n +0000019275 00000 n +0000019548 00000 n 0000000000 00000 f 0000014264 00000 n -0000019439 00000 n -0000019553 00000 n -0000019642 00000 n -0000019731 00000 n -0000019835 00000 n -0000020056 00000 n -0000020239 00000 n +0000019698 00000 n +0000019812 00000 n +0000019901 00000 n +0000019990 00000 n +0000020094 00000 n +0000020315 00000 n +0000020498 00000 n 0000014439 00000 n 0000000015 00000 n -0000020369 00000 n -0000020552 00000 n +0000020628 00000 n +0000020811 00000 n 0000014640 00000 n 0000000069 00000 n -0000020682 00000 n -0000020786 00000 n -0000021009 00000 n -0000021194 00000 n +0000020941 00000 n +0000021045 00000 n +0000021268 00000 n +0000021453 00000 n 0000014841 00000 n 0000000123 00000 n -0000021325 00000 n -0000021510 00000 n +0000021584 00000 n +0000021769 00000 n 0000015042 00000 n 0000000177 00000 n -0000021641 00000 n -0000021745 00000 n -0000021920 00000 n -0000022024 00000 n -0000022149 00000 n -0000022253 00000 n -0000022380 00000 n -0000022479 00000 n -0000022583 00000 n -0000022723 00000 n -0000022827 00000 n -0000022954 00000 n -0000023053 00000 n -0000023157 00000 n -0000023297 00000 n -0000023401 00000 n -0000023528 00000 n -0000023627 00000 n -0000023731 00000 n +0000021900 00000 n +0000022004 00000 n +0000022179 00000 n +0000022283 00000 n +0000022408 00000 n +0000022512 00000 n +0000022639 00000 n +0000022738 00000 n +0000022842 00000 n +0000022982 00000 n +0000023086 00000 n +0000023213 00000 n +0000023312 00000 n +0000023416 00000 n +0000023556 00000 n +0000023660 00000 n +0000023787 00000 n +0000023886 00000 n +0000023990 00000 n 0000000231 00000 n 0000015906 00000 n 0000012401 00000 n @@ -1203,44 +1203,44 @@ xref 0000015301 00000 n 0000015351 00000 n 0000015411 00000 n -0000049614 00000 n -0000050505 00000 n +0000049873 00000 n +0000050764 00000 n 0000015462 00000 n 0000015522 00000 n -0000047347 00000 n +0000047606 00000 n 0000015573 00000 n 0000015633 00000 n 0000015684 00000 n 0000015744 00000 n 0000015795 00000 n 0000015855 00000 n -0000050669 00000 n +0000050928 00000 n 0000016107 00000 n 0000016390 00000 n 0000016993 00000 n -0000017689 00000 n -0000045106 00000 n -0000024008 00000 n -0000024211 00000 n -0000024233 00000 n -0000024702 00000 n -0000027366 00000 n -0000027584 00000 n -0000037690 00000 n -0000037923 00000 n -0000044838 00000 n -0000045258 00000 n -0000047525 00000 n -0000049792 00000 n -0000050728 00000 n -0000050910 00000 n -0000050948 00000 n -0000051191 00000 n +0000017796 00000 n +0000045365 00000 n +0000024267 00000 n +0000024470 00000 n +0000024492 00000 n +0000024961 00000 n +0000027625 00000 n +0000027843 00000 n +0000037949 00000 n +0000038182 00000 n +0000045097 00000 n +0000045517 00000 n +0000047784 00000 n +0000050051 00000 n +0000050987 00000 n +0000051169 00000 n +0000051207 00000 n +0000051450 00000 n trailer << /Size 104 /Root 102 0 R /Info 103 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -51401 +51660 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-010-natbib.luatex.tpf b/required/latex-lab/testfiles-bib/bib-010-natbib.luatex.tpf index ca1104bea..0ffe0ed32 100644 --- a/required/latex-lab/testfiles-bib/bib-010-natbib.luatex.tpf +++ b/required/latex-lab/testfiles-bib/bib-010-natbib.luatex.tpf @@ -303,7 +303,7 @@ endobj << /Kids [92 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 94 0 obj << /justify <> @@ -1015,59 +1015,59 @@ xref 0000006075 00000 n 0000006097 00000 n 0000006119 00000 n -0000012484 00000 n +0000012591 00000 n 0000006177 00000 n 0000007166 00000 n 0000000000 00000 f 0000002853 00000 n -0000008052 00000 n -0000008154 00000 n -0000008231 00000 n -0000008308 00000 n -0000008385 00000 n -0000008477 00000 n -0000008656 00000 n -0000008805 00000 n +0000008159 00000 n +0000008261 00000 n +0000008338 00000 n +0000008415 00000 n +0000008492 00000 n +0000008584 00000 n +0000008763 00000 n +0000008912 00000 n 0000003078 00000 n -0000008924 00000 n +0000009031 00000 n 0000003305 00000 n -0000009043 00000 n -0000009192 00000 n +0000009150 00000 n +0000009299 00000 n 0000003532 00000 n -0000009311 00000 n +0000009418 00000 n 0000003758 00000 n -0000009430 00000 n -0000009522 00000 n -0000009703 00000 n -0000009852 00000 n +0000009537 00000 n +0000009629 00000 n +0000009810 00000 n +0000009959 00000 n 0000003985 00000 n -0000009971 00000 n +0000010078 00000 n 0000004212 00000 n -0000010091 00000 n -0000010241 00000 n +0000010198 00000 n +0000010348 00000 n 0000004439 00000 n -0000010361 00000 n +0000010468 00000 n 0000004666 00000 n -0000010481 00000 n -0000010573 00000 n -0000010733 00000 n -0000010825 00000 n -0000010936 00000 n -0000011028 00000 n -0000011144 00000 n -0000011231 00000 n -0000011323 00000 n -0000011452 00000 n -0000011544 00000 n -0000011660 00000 n -0000011747 00000 n -0000011839 00000 n -0000011968 00000 n -0000012060 00000 n -0000012176 00000 n -0000012263 00000 n -0000012355 00000 n -0000012603 00000 n +0000010588 00000 n +0000010680 00000 n +0000010840 00000 n +0000010932 00000 n +0000011043 00000 n +0000011135 00000 n +0000011251 00000 n +0000011338 00000 n +0000011430 00000 n +0000011559 00000 n +0000011651 00000 n +0000011767 00000 n +0000011854 00000 n +0000011946 00000 n +0000012075 00000 n +0000012167 00000 n +0000012283 00000 n +0000012370 00000 n +0000012462 00000 n +0000012710 00000 n 0000000020 00000 n 0000000073 00000 n 0000000126 00000 n @@ -1082,11 +1082,11 @@ xref 0000004953 00000 n 0000005005 00000 n 0000005066 00000 n -0000053773 00000 n -0000026569 00000 n +0000053880 00000 n +0000026676 00000 n 0000005119 00000 n 0000005180 00000 n -0000051827 00000 n +0000051934 00000 n 0000005233 00000 n 0000005294 00000 n 0000005347 00000 n @@ -1099,32 +1099,32 @@ xref 0000005750 00000 n 0000005803 00000 n 0000005864 00000 n -0000053934 00000 n +0000054041 00000 n 0000003002 00000 n 0000006141 00000 n 0000006446 00000 n 0000007129 00000 n -0000007845 00000 n -0000024782 00000 n -0000024911 00000 n -0000025606 00000 n -0000024943 00000 n -0000025016 00000 n -0000025842 00000 n -0000026725 00000 n -0000026926 00000 n -0000035489 00000 n -0000027181 00000 n -0000049710 00000 n -0000035730 00000 n -0000050037 00000 n -0000051988 00000 n -0000053995 00000 n -0000054232 00000 n -0000054270 00000 n -0000054511 00000 n +0000007952 00000 n +0000024889 00000 n +0000025018 00000 n +0000025713 00000 n +0000025050 00000 n +0000025123 00000 n +0000025949 00000 n +0000026832 00000 n +0000027033 00000 n +0000035596 00000 n +0000027288 00000 n +0000049817 00000 n +0000035837 00000 n +0000050144 00000 n +0000052095 00000 n +0000054102 00000 n +0000054339 00000 n +0000054377 00000 n +0000054618 00000 n trailer << /Size 113 /Root 111 0 R /Info 112 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -54721 +54828 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-010-natbib.tpf b/required/latex-lab/testfiles-bib/bib-010-natbib.tpf index 5cff0208e..b96b869d2 100644 --- a/required/latex-lab/testfiles-bib/bib-010-natbib.tpf +++ b/required/latex-lab/testfiles-bib/bib-010-natbib.tpf @@ -604,7 +604,7 @@ endobj << /Kids [89 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 91 0 obj << /justify <> @@ -1158,65 +1158,65 @@ xref 0000017777 00000 n 0000017799 00000 n 0000017821 00000 n -0000024437 00000 n +0000024544 00000 n 0000017879 00000 n 0000018922 00000 n 0000000000 00000 f 0000014836 00000 n -0000019808 00000 n -0000019910 00000 n -0000019987 00000 n -0000020064 00000 n -0000020156 00000 n -0000020363 00000 n -0000020572 00000 n +0000019915 00000 n +0000020017 00000 n +0000020094 00000 n +0000020171 00000 n +0000020263 00000 n +0000020470 00000 n +0000020679 00000 n 0000015038 00000 n 0000000015 00000 n -0000020689 00000 n +0000020796 00000 n 0000015239 00000 n 0000000068 00000 n -0000020806 00000 n -0000021016 00000 n +0000020913 00000 n +0000021123 00000 n 0000015439 00000 n 0000000121 00000 n -0000021133 00000 n +0000021240 00000 n 0000015640 00000 n 0000000174 00000 n -0000021251 00000 n -0000021343 00000 n -0000021552 00000 n -0000021764 00000 n +0000021358 00000 n +0000021450 00000 n +0000021659 00000 n +0000021871 00000 n 0000015840 00000 n 0000000227 00000 n -0000021882 00000 n +0000021989 00000 n 0000016041 00000 n 0000000280 00000 n -0000022000 00000 n -0000022212 00000 n +0000022107 00000 n +0000022319 00000 n 0000016241 00000 n 0000000333 00000 n -0000022330 00000 n +0000022437 00000 n 0000016442 00000 n 0000000386 00000 n -0000022448 00000 n -0000022540 00000 n -0000022698 00000 n -0000022790 00000 n -0000022901 00000 n -0000022993 00000 n -0000023107 00000 n -0000023194 00000 n -0000023286 00000 n -0000023413 00000 n -0000023505 00000 n -0000023619 00000 n -0000023706 00000 n -0000023798 00000 n -0000023925 00000 n -0000024017 00000 n -0000024131 00000 n -0000024218 00000 n -0000024310 00000 n +0000022555 00000 n +0000022647 00000 n +0000022805 00000 n +0000022897 00000 n +0000023008 00000 n +0000023100 00000 n +0000023214 00000 n +0000023301 00000 n +0000023393 00000 n +0000023520 00000 n +0000023612 00000 n +0000023726 00000 n +0000023813 00000 n +0000023905 00000 n +0000024032 00000 n +0000024124 00000 n +0000024238 00000 n +0000024325 00000 n +0000024417 00000 n 0000000439 00000 n 0000017630 00000 n 0000012615 00000 n @@ -1224,10 +1224,10 @@ xref 0000016700 00000 n 0000016750 00000 n 0000016809 00000 n -0000055537 00000 n +0000055644 00000 n 0000016860 00000 n 0000016919 00000 n -0000053269 00000 n +0000053376 00000 n 0000016970 00000 n 0000017029 00000 n 0000017080 00000 n @@ -1240,31 +1240,31 @@ xref 0000017469 00000 n 0000017520 00000 n 0000017579 00000 n -0000055716 00000 n +0000055823 00000 n 0000017843 00000 n 0000018218 00000 n 0000018885 00000 n -0000019601 00000 n -0000050987 00000 n -0000024556 00000 n -0000024804 00000 n -0000025297 00000 n -0000035604 00000 n -0000035837 00000 n -0000050681 00000 n -0000051180 00000 n -0000053447 00000 n -0000055774 00000 n -0000055951 00000 n -0000056069 00000 n -0000056151 00000 n -0000056189 00000 n -0000056430 00000 n +0000019708 00000 n +0000051094 00000 n +0000024663 00000 n +0000024911 00000 n +0000025404 00000 n +0000035711 00000 n +0000035944 00000 n +0000050788 00000 n +0000051287 00000 n +0000053554 00000 n +0000055881 00000 n +0000056058 00000 n +0000056176 00000 n +0000056258 00000 n +0000056296 00000 n +0000056537 00000 n trailer << /Size 107 /Root 105 0 R /Info 106 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -56640 +56747 %%EOF diff --git a/required/latex-lab/testfiles-bib/bib-011-biblatex.tlg b/required/latex-lab/testfiles-bib/bib-011-biblatex.tlg index 4953b4627..6ec1123cd 100644 --- a/required/latex-lab/testfiles-bib/bib-011-biblatex.tlg +++ b/required/latex-lab/testfiles-bib/bib-011-biblatex.tlg @@ -342,12 +342,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 c ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,6,10,section,,,} ...\marks4{b+,6,10,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,6,10,} ...\marks4{e+,6,10,} ...\penalty 10000 @@ -970,12 +970,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 c ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,17,27,section,,,} ...\marks4{b+,17,27,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,17,27,} ...\marks4{e+,17,27,} ...\penalty 10000 diff --git a/required/latex-lab/testfiles-bib/bib-011-natbib-hyperref.tlg b/required/latex-lab/testfiles-bib/bib-011-natbib-hyperref.tlg index 977f1e52c..4d9abec62 100644 --- a/required/latex-lab/testfiles-bib/bib-011-natbib-hyperref.tlg +++ b/required/latex-lab/testfiles-bib/bib-011-natbib-hyperref.tlg @@ -583,12 +583,12 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 c .....\T1/cmr/bx/n/14.4 e .....\T1/cmr/bx/n/14.4 s -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 ....\marks4{b-,27,22,section,,,} ....\marks4{b+,27,22,section,,,} +....\pdfliteral page{EMC} ....\marks4{e-,27,22,} ....\marks4{e+,27,22,} ....\penalty 10000 diff --git a/required/latex-lab/testfiles-bib/bib-012-biblatex.tlg b/required/latex-lab/testfiles-bib/bib-012-biblatex.tlg index 91abf4e71..6f6550a81 100644 --- a/required/latex-lab/testfiles-bib/bib-012-biblatex.tlg +++ b/required/latex-lab/testfiles-bib/bib-012-biblatex.tlg @@ -412,12 +412,12 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 c .....\T1/cmr/bx/n/14.4 e .....\T1/cmr/bx/n/14.4 s -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 ....\marks4{b-,10,12,section,,,} ....\marks4{b+,10,12,section,,,} +....\pdfliteral page{EMC} ....\marks4{e-,10,12,} ....\marks4{e+,10,12,} ....\penalty 10000 @@ -1057,12 +1057,12 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 c .....\T1/cmr/bx/n/14.4 e .....\T1/cmr/bx/n/14.4 s -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 ....\marks4{b-,21,29,section,,,} ....\marks4{b+,21,29,section,,,} +....\pdfliteral page{EMC} ....\marks4{e-,21,29,} ....\marks4{e+,21,29,} ....\penalty 10000 diff --git a/required/latex-lab/testfiles-bib/bib-013-biblatex-1293.tlg b/required/latex-lab/testfiles-bib/bib-013-biblatex-1293.tlg index c7202615e..214301a8e 100644 --- a/required/latex-lab/testfiles-bib/bib-013-biblatex-1293.tlg +++ b/required/latex-lab/testfiles-bib/bib-013-biblatex-1293.tlg @@ -859,12 +859,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 c ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,12,16,section,,,} ...\marks4{b+,12,16,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,12,16,} ...\marks4{e+,12,16,} ...\penalty 10000 diff --git a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.luatex.tlg b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.luatex.tlg index b9cc51f9c..6d1a650c0 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.luatex.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.luatex.tlg @@ -57,6 +57,7 @@ Completed box being shipped out [1] ......\OT1/cmr/bx/n/14.4 . ......\OT1/cmr/bx/n/14.4 1 ......\glue 16.19998 +......\glue 0.0 .....\OT1/cmr/bx/n/14.4 b .....\OT1/cmr/bx/n/14.4 l .....\OT1/cmr/bx/n/14.4 u diff --git a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.tlg b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.tlg index e5ba85c9f..3b0adca72 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-block.tlg @@ -51,6 +51,7 @@ Completed box being shipped out [1] ......\T1/cmr/bx/n/14.4 . ......\T1/cmr/bx/n/14.4 1 ......\glue 15.83623 +......\pdffakespace .....\T1/cmr/bx/n/14.4 b .....\T1/cmr/bx/n/14.4 l .....\T1/cmr/bx/n/14.4 u diff --git a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.luatex.tlg b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.luatex.tlg index cbe637230..8e5484150 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.luatex.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.luatex.tlg @@ -57,6 +57,7 @@ Completed box being shipped out [1] ......\OT1/cmr/bx/n/14.4 . ......\OT1/cmr/bx/n/14.4 1 ......\glue 16.19998 +......\glue 0.0 .....\OT1/cmr/bx/n/14.4 b .....\OT1/cmr/bx/n/14.4 l .....\OT1/cmr/bx/n/14.4 u diff --git a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.tlg b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.tlg index a1bb80734..be861121c 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-amsthm-cleveref-block.tlg @@ -51,6 +51,7 @@ Completed box being shipped out [1] ......\T1/cmr/bx/n/14.4 . ......\T1/cmr/bx/n/14.4 1 ......\glue 15.83623 +......\pdffakespace .....\T1/cmr/bx/n/14.4 b .....\T1/cmr/bx/n/14.4 l .....\T1/cmr/bx/n/14.4 u diff --git a/required/latex-lab/testfiles-block/aliasctr-test-block.luatex.tlg b/required/latex-lab/testfiles-block/aliasctr-test-block.luatex.tlg index 05900b4fe..bd2498623 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-block.luatex.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-block.luatex.tlg @@ -57,6 +57,7 @@ Completed box being shipped out [1] ......\OT1/cmr/bx/n/14.4 . ......\OT1/cmr/bx/n/14.4 1 ......\glue 16.19998 +......\glue 0.0 .....\OT1/cmr/bx/n/14.4 b .....\OT1/cmr/bx/n/14.4 l .....\OT1/cmr/bx/n/14.4 u diff --git a/required/latex-lab/testfiles-block/aliasctr-test-block.tlg b/required/latex-lab/testfiles-block/aliasctr-test-block.tlg index af4e88ba4..036ac9284 100644 --- a/required/latex-lab/testfiles-block/aliasctr-test-block.tlg +++ b/required/latex-lab/testfiles-block/aliasctr-test-block.tlg @@ -51,6 +51,7 @@ Completed box being shipped out [1] ......\T1/cmr/bx/n/14.4 . ......\T1/cmr/bx/n/14.4 1 ......\glue 15.83623 +......\pdffakespace .....\T1/cmr/bx/n/14.4 b .....\T1/cmr/bx/n/14.4 l .....\T1/cmr/bx/n/14.4 u 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 dd05b2de8..c174f33ae 100644 --- a/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-hyperref-01.luatex.tlg @@ -13,7 +13,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 7 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -23,7 +23,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -88,7 +88,7 @@ Package tagpdf Info: closing structure 10 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 9 tagged /semantic-para -Package tagpdf Info: closing structure 8 tagged /Div +Package tagpdf Info: closing structure 8 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... @@ -113,7 +113,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 20 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -123,7 +123,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -188,7 +188,7 @@ Package tagpdf Info: closing structure 23 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 22 tagged /semantic-para -Package tagpdf Info: closing structure 21 tagged /Div +Package tagpdf Info: closing structure 21 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... @@ -213,7 +213,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 33 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -223,7 +223,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -288,7 +288,7 @@ Package tagpdf Info: closing structure 36 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 35 tagged /semantic-para -Package tagpdf Info: closing structure 34 tagged /Div +Package tagpdf Info: closing structure 34 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... diff --git a/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg b/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg index 545cfc2e5..2b905c631 100644 --- a/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-hyperref-01.tlg @@ -13,7 +13,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 6 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -23,7 +23,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -88,7 +88,7 @@ Package tagpdf Info: closing structure 9 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 8 tagged /semantic-para -Package tagpdf Info: closing structure 7 tagged /Div +Package tagpdf Info: closing structure 7 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... @@ -113,7 +113,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 19 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -123,7 +123,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -188,7 +188,7 @@ Package tagpdf Info: closing structure 22 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 21 tagged /semantic-para -Package tagpdf Info: closing structure 20 tagged /Div +Package tagpdf Info: closing structure 20 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... @@ -213,7 +213,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 32 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -223,7 +223,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-list-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |para-vspace={33pt}| [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -288,7 +288,7 @@ Package tagpdf Info: closing structure 35 tagged /enumerate [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 34 tagged /semantic-para -Package tagpdf Info: closing structure 33 tagged /Div +Package tagpdf Info: closing structure 33 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... diff --git a/required/latex-lab/testfiles-block/blocks-item-02.luatex.tlg b/required/latex-lab/testfiles-block/blocks-item-02.luatex.tlg index 4a1492aa1..099a74b40 100644 --- a/required/latex-lab/testfiles-block/blocks-item-02.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-item-02.luatex.tlg @@ -234,13 +234,51 @@ Package tagpdf Info: closing structure 17 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 25 tagged /section [Template] ==> Using instance 'list' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -498,15 +536,6 @@ Completed box being shipped out [1] ....\OT1/cmr/bx/n/14.4 c ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 s -....\hbox(3.22221+0.0)x0.0, glue set - 6.37486fil, direction TLT -.....\pdfliteral page -.....\pdfliteral page -.....\pdfcolorstack 0 push {1.0 0.0 0.0 rg 1.0 0.0 0.0 RG} -.....\TU/lmr/m/n/10 -.....\glue(\spaceskip) -0.74672 plus 1.20831 minus 0.80553 -.....\OT1/cmr/bx/n/5 4 -.....\glue 0.0 plus 1.0fil minus 1.0fil -....\pdfcolorstack 0 pop ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 @@ -548,7 +577,7 @@ Package tagpdf Info: closing structure 24 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~27 structure objects -(tagpdf) with ~15 'MC' leaf nodes. +(tagpdf) with ~14 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-item-02.tlg b/required/latex-lab/testfiles-block/blocks-item-02.tlg index ebc729e32..bcb446457 100644 --- a/required/latex-lab/testfiles-block/blocks-item-02.tlg +++ b/required/latex-lab/testfiles-block/blocks-item-02.tlg @@ -236,13 +236,51 @@ Package tagpdf Info: closing structure 16 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 24 tagged /section [Template] ==> Using instance 'list' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -286,13 +324,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,14,-1,} -...\marks4{b+,14,-1,} +...\marks4{b-,13,-1,} +...\marks4{b+,13,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,14,23,} -...\marks4{e+,14,23,} +...\marks4{e-,13,23,} +...\marks4{e+,13,23,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -503,26 +541,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 c ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} -....\pdfliteral page{/Artifact BMC} -....\hbox(3.22144+0.0)x0.0, glue set - 6.37344fil -.....\pdfcolorstack 0 push {1.0 0.0 0.0 rg 1.0 0.0 0.0 RG} -.....\glue 2.5827 plus 1.20804 minus 0.80536 -.....\T1/cmr/bx/n/5 4 -.....\glue 0.0 plus 1.0fil minus 1.0fil -....\pdfcolorstack 0 pop -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,12,24,section,,,} ...\marks4{b+,12,24,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,12,24,} ...\marks4{e+,12,24,} -...\marks4{b-,13,-1,} -...\marks4{b+,13,-1,} -...\marks4{e-,13,24,} -...\marks4{e+,13,24,} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 ...\glue -9.90036 plus -0.86089 @@ -541,8 +567,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,15,-1,} -..\marks4{b+,15,-1,} +..\marks4{b-,14,-1,} +..\marks4{b+,14,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -550,8 +576,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,15,23,} -..\marks4{e+,15,23,} +..\marks4{e-,14,23,} +..\marks4{e+,14,23,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -563,7 +589,7 @@ Package tagpdf Info: closing structure 23 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~26 structure objects -(tagpdf) with ~15 'MC' leaf nodes. +(tagpdf) with ~14 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-item-03.luatex.tlg b/required/latex-lab/testfiles-block/blocks-item-03.luatex.tlg index f63f721f5..75e77b2a2 100644 --- a/required/latex-lab/testfiles-block/blocks-item-03.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-item-03.luatex.tlg @@ -118,6 +118,35 @@ If that doesn't work, type X to quit. ========= Empty biblio should generate only warning [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'list' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... diff --git a/required/latex-lab/testfiles-block/blocks-item-03.tlg b/required/latex-lab/testfiles-block/blocks-item-03.tlg index 008f12ced..732573eb0 100644 --- a/required/latex-lab/testfiles-block/blocks-item-03.tlg +++ b/required/latex-lab/testfiles-block/blocks-item-03.tlg @@ -118,6 +118,35 @@ If that doesn't work, type X to quit. ========= Empty biblio should generate only warning [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'list' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... diff --git a/required/latex-lab/testfiles-block/blocks-list-01.luatex.tlg b/required/latex-lab/testfiles-block/blocks-list-01.luatex.tlg index 80cb43972..39435dd2a 100644 --- a/required/latex-lab/testfiles-block/blocks-list-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-01.luatex.tlg @@ -2,6 +2,105 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'verse' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'quote-1' of type 'block' on line ... @@ -14,7 +113,7 @@ Don't change this file in any respect. ]<><> (blocks-list-01.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~22 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-list-01.tlg b/required/latex-lab/testfiles-block/blocks-list-01.tlg index 286640fea..f803bbfcf 100644 --- a/required/latex-lab/testfiles-block/blocks-list-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-01.tlg @@ -2,6 +2,105 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'verse' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'quote-1' of type 'block' on line ... @@ -14,7 +113,7 @@ Don't change this file in any respect. ]<><> (blocks-list-01.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~21 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-list-01b.luatex.tlg b/required/latex-lab/testfiles-block/blocks-list-01b.luatex.tlg index 5e80ea11c..f939475da 100644 --- a/required/latex-lab/testfiles-block/blocks-list-01b.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-01b.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-list-01b.tlg b/required/latex-lab/testfiles-block/blocks-list-01b.tlg index 9c7feb8a7..3b3c764be 100644 --- a/required/latex-lab/testfiles-block/blocks-list-01b.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-01b.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-list-03b.luatex.tlg b/required/latex-lab/testfiles-block/blocks-list-03b.luatex.tlg index 52f31b0e6..5b69d5661 100644 --- a/required/latex-lab/testfiles-block/blocks-list-03b.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-03b.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-list-03b.tlg b/required/latex-lab/testfiles-block/blocks-list-03b.tlg index f81b41fc8..8d78da825 100644 --- a/required/latex-lab/testfiles-block/blocks-list-03b.tlg +++ b/required/latex-lab/testfiles-block/blocks-list-03b.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-minipage-gh544.luatex.tlg b/required/latex-lab/testfiles-block/blocks-minipage-gh544.luatex.tlg index 14955fdce..cfdba29ae 100644 --- a/required/latex-lab/testfiles-block/blocks-minipage-gh544.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-minipage-gh544.luatex.tlg @@ -20,7 +20,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 7 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -30,7 +30,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-display-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: || [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -50,7 +50,7 @@ Package tagpdf Info: closing structure 10 tagged /text-block [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 9 tagged /semantic-para -Package tagpdf Info: closing structure 8 tagged /Div +Package tagpdf Info: closing structure 8 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... diff --git a/required/latex-lab/testfiles-block/blocks-minipage-gh544.tlg b/required/latex-lab/testfiles-block/blocks-minipage-gh544.tlg index 3c1e948e3..115965182 100644 --- a/required/latex-lab/testfiles-block/blocks-minipage-gh544.tlg +++ b/required/latex-lab/testfiles-block/blocks-minipage-gh544.tlg @@ -20,7 +20,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 6 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -30,7 +30,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. [Template] ==> Using instance 'std-display-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: || [Blocks] ==> @endpe=false on input line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -50,7 +50,7 @@ Package tagpdf Info: closing structure 9 tagged /text-block [Blocks] ==> flattened=false on input line ... [Blocks] ==> Structure-end semantic-para after displayblock on input line ... Package tagpdf Info: closing structure 8 tagged /semantic-para -Package tagpdf Info: closing structure 7 tagged /Div +Package tagpdf Info: closing structure 7 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... diff --git a/required/latex-lab/testfiles-block/blocks-noop-recipe.luatex.tlg b/required/latex-lab/testfiles-block/blocks-noop-recipe.luatex.tlg index 788c17c60..86abe4338 100644 --- a/required/latex-lab/testfiles-block/blocks-noop-recipe.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-noop-recipe.luatex.tlg @@ -2,14 +2,330 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'displayblock' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |tagging-recipe=noop, left-margin =\dimeval {-3cm+0pt}, right-margin=\dimeval {+0pt}, para-indent =\parindent |\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |left-margin={\dimeval {-3cm+0pt}},right-margin={\dimeval {+0pt}},para-indent={\parindent }| [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Blocks] ==> blockenv common ending on input line ... [Template] ==> Using instance 'displayblock' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |tagging-recipe=noop, left-margin =\dimeval {3cm+0pt}, right-margin=\dimeval {1cm+0pt}, para-indent =\parindent |\BooleanFalse |\NoValue |\NoValue | @@ -17,6 +333,104 @@ Don't change this file in any respect. [Template] ==> template: 'std'; argument: |left-margin={\dimeval {3cm+0pt}},right-margin={\dimeval {1cm+0pt}},para-indent={\parindent }| [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -49,12 +463,13 @@ TEST 1: Show PDF Tags title="Section" rolemaps-to="H1" > - - 1 - + 1 + + Section - - 1.1 - + 1.1 + + Subsection - - 1.1.1 - + 1.1.1 + + Subsubsection - - 2 - + 2 + + Subsubsection .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 S @@ -304,8 +726,12 @@ Completed box being shipped out [1] .....\OT1/cmr/bx/n/12 1 .....\OT1/cmr/bx/n/12 . .....\OT1/cmr/bx/n/12 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 10.17 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/12 S @@ -382,8 +808,12 @@ Completed box being shipped out [1] .....\OT1/cmr/bx/n/10 1 .....\OT1/cmr/bx/n/10 . .....\OT1/cmr/bx/n/10 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 8.16994 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/10 S @@ -959,8 +1389,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 2 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 S @@ -1090,7 +1524,7 @@ Completed box being shipped out [1] <><> (blocks-noop-recipe.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~35 structure objects -(tagpdf) with ~18 'MC' leaf nodes. +(tagpdf) with ~22 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-noop-recipe.tlg b/required/latex-lab/testfiles-block/blocks-noop-recipe.tlg index 73f7adbca..5977d2741 100644 --- a/required/latex-lab/testfiles-block/blocks-noop-recipe.tlg +++ b/required/latex-lab/testfiles-block/blocks-noop-recipe.tlg @@ -2,14 +2,330 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'displayblock' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |tagging-recipe=noop, left-margin =\dimeval {-3cm+0pt}, right-margin=\dimeval {+0pt}, para-indent =\parindent |\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... [Template] ==> template: 'std'; argument: |left-margin={\dimeval {-3cm+0pt}},right-margin={\dimeval {+0pt}},para-indent={\parindent }| [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Blocks] ==> blockenv common ending on input line ... [Template] ==> Using instance 'displayblock' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |tagging-recipe=noop, left-margin =\dimeval {3cm+0pt}, right-margin=\dimeval {1cm+0pt}, para-indent =\parindent |\BooleanFalse |\NoValue |\NoValue | @@ -17,6 +333,104 @@ Don't change this file in any respect. [Template] ==> template: 'std'; argument: |left-margin={\dimeval {3cm+0pt}},right-margin={\dimeval {1cm+0pt}},para-indent={\parindent }| [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -49,12 +463,13 @@ TEST 1: Show PDF Tags title="Section" rolemaps-to="H1" > - 1 - + + Section - 1.1 - + + Subsection - 1.1.1 - + + Subsubsection - 2 - + + Subsubsection > BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 S ....\T1/cmr/bx/n/14.4 e @@ -278,18 +708,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 i ....\T1/cmr/bx/n/14.4 o ....\T1/cmr/bx/n/14.4 n -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}Section}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -297,18 +723,30 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.71869 ...\hbox(8.28131+0.0)x345.0, glue set 251.03824fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,4,10,heading-number,,,} +.....\marks4{b+,4,10,heading-number,,,} .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,4,10,} +.....\marks4{e+,4,10,} +.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,5,9,subsection,,,} +.....\marks4{b+,5,9,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,5,9,} +.....\marks4{e+,5,9,} +....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 S ....\T1/cmr/bx/n/12 u @@ -320,18 +758,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/12 i ....\T1/cmr/bx/n/12 o ....\T1/cmr/bx/n/12 n -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,10,section-number,,,} -...\marks4{b+,3,10,section-number,,,} -...\marks4{e-,3,10,} -...\marks4{e+,3,10,} -...\marks4{b-,4,9,subsection,,,} -...\marks4{b+,4,9,subsection,,,} -...\marks4{e-,4,9,} -...\marks4{e+,4,9,} +...\marks4{b-,6,9,subsection,,,} +...\marks4{b+,6,9,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,6,9,} +...\marks4{e+,6,9,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1}Subsection}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\penalty 10000 @@ -340,7 +774,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.8507 ...\hbox(6.1493+0.0)x345.0, glue set 302.45483fil -....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 s ....\T1/cmr/m/n/10 o @@ -355,10 +789,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,5,12,text-block,,,} -...\marks4{b+,5,12,text-block,,,} -...\marks4{e-,5,12,} -...\marks4{e+,5,12,} +...\marks4{b-,7,12,text-block,,,} +...\marks4{b+,7,12,text-block,,,} +...\marks4{e-,7,12,} +...\marks4{e+,7,12,} ...\penalty -51 ...\glue 10.0 plus 4.0 minus 5.0 ...\glue -10.0 plus -4.0 minus -5.0 @@ -370,20 +804,32 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.0989 ...\hbox(6.9011+0.0)x430.35826, glue set 324.04117fil, shifted -85.35826 -....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(6.48453+0.0)x35.13031 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,8,15,heading-number,,,} +.....\marks4{b+,8,15,heading-number,,,} .....\T1/cmr/bx/n/10 1 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,8,15,} +.....\marks4{e+,8,15,} +.....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsubsection <> BDC} +.....\marks4{b-,9,14,subsubsection,,,} +.....\marks4{b+,9,14,subsubsection,,,} .....\glue 11.4972 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,9,14,} +.....\marks4{e+,9,14,} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsubsection <> BDC} ....\T1/cmr/bx/n/10 S ....\T1/cmr/bx/n/10 u @@ -398,18 +844,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 i ....\T1/cmr/bx/n/10 o ....\T1/cmr/bx/n/10 n -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,6,15,section-number,,,} -...\marks4{b+,6,15,section-number,,,} -...\marks4{e-,6,15,} -...\marks4{e+,6,15,} -...\marks4{b-,7,14,subsubsection,,,} -...\marks4{b+,7,14,subsubsection,,,} -...\marks4{e-,7,14,} -...\marks4{e+,7,14,} +...\marks4{b-,10,14,subsubsection,,,} +...\marks4{b+,10,14,subsubsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,10,14,} +...\marks4{e+,10,14,} ...\write1{\@writefile{toc}{\protect \contentsline {subsubsection}{\protect \numberline {1.1.1}Subsubsection}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -417,7 +859,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+1.94397)x430.35826, glue set - 0.18715, shifted -85.35826 -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 L ....\T1/cmr/m/n/10 o @@ -521,8 +963,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 c ....\T1/cmr/m/n/10 , ....\glue(\rightskip) 0.0 -...\marks4{b-,8,17,text-block,,,} -...\marks4{b+,8,17,text-block,,,} +...\marks4{b-,11,17,text-block,,,} +...\marks4{b+,11,17,text-block,,,} ...\penalty 10150 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x430.35826, glue set 183.4741fil, shifted -85.35826 @@ -588,13 +1030,13 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,8,17,} -...\marks4{e+,8,17,} +...\marks4{e-,11,17,} +...\marks4{e+,11,17,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x430.35826, glue set - 0.16077, shifted -85.35826 -....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 L @@ -695,8 +1137,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 a ....\T1/cmr/m/n/10 t ....\glue(\rightskip) 0.0 -...\marks4{b-,9,19,text-block,,,} -...\marks4{b+,9,19,text-block,,,} +...\marks4{b-,12,19,text-block,,,} +...\marks4{b+,12,19,text-block,,,} ...\penalty 10150 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x430.35826, glue set 167.92235fil, shifted -85.35826 @@ -766,15 +1208,15 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,9,19,} -...\marks4{e+,9,19,} +...\marks4{e-,12,19,} +...\marks4{e+,12,19,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x345.0, glue set 290.00977fil -....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 f @@ -791,15 +1233,15 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,10,21,text-block,,,} -...\marks4{b+,10,21,text-block,,,} -...\marks4{e-,10,21,} -...\marks4{e+,10,21,} +...\marks4{b-,13,21,text-block,,,} +...\marks4{b+,13,21,text-block,,,} +...\marks4{e-,13,21,} +...\marks4{e+,13,21,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 257.43439fil -....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 s @@ -823,10 +1265,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,11,23,text-block,,,} -...\marks4{b+,11,23,text-block,,,} -...\marks4{e-,11,23,} -...\marks4{e+,11,23,} +...\marks4{b-,14,23,text-block,,,} +...\marks4{b+,14,23,text-block,,,} +...\marks4{e-,14,23,} +...\marks4{e+,14,23,} ...\penalty -51 ...\glue 8.0 plus 3.0 minus 4.0 ...\glue -8.0 plus -3.0 minus -4.0 @@ -838,16 +1280,28 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.06242 ...\hbox(9.93758+0.0)x231.189, glue set 109.43973fil, shifted 85.35826 -....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,15,26,heading-number,,,} +.....\marks4{b+,15,26,heading-number,,,} .....\T1/cmr/bx/n/14.4 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,15,26,} +.....\marks4{e+,15,26,} +.....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,16,25,section,,,} +.....\marks4{b+,16,25,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,16,25,} +.....\marks4{e+,16,25,} +....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 S ....\T1/cmr/bx/n/14.4 u @@ -862,18 +1316,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 i ....\T1/cmr/bx/n/14.4 o ....\T1/cmr/bx/n/14.4 n -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,12,26,section-number,,,} -...\marks4{b+,12,26,section-number,,,} -...\marks4{e-,12,26,} -...\marks4{e+,12,26,} -...\marks4{b-,13,25,section,,,} -...\marks4{b+,13,25,section,,,} -...\marks4{e-,13,25,} -...\marks4{e+,13,25,} +...\marks4{b-,17,25,section,,,} +...\marks4{b+,17,25,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,17,25,} +...\marks4{e+,17,25,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}Subsubsection}{\thepage }{target*.4}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -888,18 +1338,18 @@ Completed box being shipped out [1] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,14,30,itemlabel,,,} -.......\marks4{b+,14,30,itemlabel,,,} +.......\marks4{b-,18,30,itemlabel,,,} +.......\marks4{b+,18,30,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,14,30,} -.......\marks4{e+,14,30,} +.......\marks4{e-,18,30,} +.......\marks4{e+,18,30,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 a @@ -912,10 +1362,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,15,33,text-block,,,} -...\marks4{b+,15,33,text-block,,,} -...\marks4{e-,15,33,} -...\marks4{e+,15,33,} +...\marks4{b-,19,33,text-block,,,} +...\marks4{b+,19,33,text-block,,,} +...\marks4{e-,19,33,} +...\marks4{e+,19,33,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -927,7 +1377,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+0.0)x345.0, glue set 278.82172fil -....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 s ....\T1/cmr/m/n/10 o @@ -948,10 +1398,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,16,34,text-block,,,} -...\marks4{b+,16,34,text-block,,,} -...\marks4{e-,16,34,} -...\marks4{e+,16,34,} +...\marks4{b-,20,34,text-block,,,} +...\marks4{b+,20,34,text-block,,,} +...\marks4{e-,20,34,} +...\marks4{e+,20,34,} ...\kern 0.0 ...\hbox(0.0+0.0)x0.0 ...\glue 0.0 plus 1.0fil @@ -959,8 +1409,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,18,-1,} -..\marks4{b+,18,-1,} +..\marks4{b-,22,-1,} +..\marks4{b+,22,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -968,8 +1418,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,18,24,} -..\marks4{e+,18,24,} +..\marks4{e-,22,24,} +..\marks4{e+,22,24,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -979,7 +1429,7 @@ Completed box being shipped out [1] <><> (blocks-noop-recipe.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~34 structure objects -(tagpdf) with ~18 'MC' leaf nodes. +(tagpdf) with ~22 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-quote-02.luatex.tlg b/required/latex-lab/testfiles-block/blocks-quote-02.luatex.tlg index b9509f5f2..0daeb9e78 100644 --- a/required/latex-lab/testfiles-block/blocks-quote-02.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-quote-02.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -129,13 +231,54 @@ Package tagpdf Info: closing structure 9 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 23 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -443,7 +586,7 @@ Package tagpdf Info: closing structure 6 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~48 structure objects -(tagpdf) with ~24 'MC' leaf nodes. +(tagpdf) with ~25 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-quote-02.tlg b/required/latex-lab/testfiles-block/blocks-quote-02.tlg index da9102d16..8b4804767 100644 --- a/required/latex-lab/testfiles-block/blocks-quote-02.tlg +++ b/required/latex-lab/testfiles-block/blocks-quote-02.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -129,13 +231,54 @@ Package tagpdf Info: closing structure 8 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 22 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -206,18 +349,18 @@ Overfull \hbox (0.80394pt too wide) in paragraph at lines ... ..\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ...\glue 0.0 plus 1.0fil minus 1.0fil ...\hbox(4.37393+0.0)x4.99878 -....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/itemlabel <> BDC} -....\marks4{b-,13,28,itemlabel,,,} -....\marks4{b+,13,28,itemlabel,,,} +....\marks4{b-,14,28,itemlabel,,,} +....\marks4{b+,14,28,itemlabel,,,} ....\hbox(0.0+0.0)x0.0 ....\penalty 10000 ....\TS1/cmr/m/n/10 ^^88 ....\pdfliteral page{EMC} -....\marks4{e-,13,28,} -....\marks4{e+,13,28,} +....\marks4{e-,14,28,} +....\marks4{e+,14,28,} ..\glue 4.99878 -.\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-block <> BDC} .\penalty 0 .\T1/cmr/m/it/10 T @@ -398,18 +541,18 @@ Overfull \hbox (3.16397pt too wide) in paragraph at lines ... ..\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ...\glue 0.0 plus 1.0fil minus 1.0fil ...\hbox(4.37393+0.0)x4.99878 -....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/itemlabel <> BDC} -....\marks4{b-,17,38,itemlabel,,,} -....\marks4{b+,17,38,itemlabel,,,} +....\marks4{b-,18,38,itemlabel,,,} +....\marks4{b+,18,38,itemlabel,,,} ....\hbox(0.0+0.0)x0.0 ....\penalty 10000 ....\TS1/cmr/m/n/10 ^^88 ....\pdfliteral page{EMC} -....\marks4{e-,17,38,} -....\marks4{e+,17,38,} +....\marks4{e-,18,38,} +....\marks4{e+,18,38,} ..\glue 4.99878 -.\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-block <> BDC} .\penalty 0 .\T1/cmr/m/it/10 W @@ -435,7 +578,7 @@ Overfull \hbox (3.16397pt too wide) in paragraph at lines ... .\T1/cmr/m/it/10 n .\glue 3.5769 plus 1.53294 minus 1.02197 .\pdfliteral page{EMC} -.\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-fragment <> BDC} .\T1/cmr/m/it/10 L .\kern -3.67911 @@ -451,7 +594,7 @@ Overfull \hbox (3.16397pt too wide) in paragraph at lines ... .\kern -1.27747 .\T1/cmr/m/it/10 X .\pdfliteral page{EMC} -.\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-block <> BDC} .\glue 3.5769 plus 1.53294 minus 1.02197 .\T1/cmr/m/it/10 d @@ -567,7 +710,7 @@ Package tagpdf Info: closing structure 5 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~47 structure objects -(tagpdf) with ~24 'MC' leaf nodes. +(tagpdf) with ~25 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-theorem-01.luatex.tlg b/required/latex-lab/testfiles-block/blocks-theorem-01.luatex.tlg index f02cd66f0..0edc567ca 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-01.luatex.tlg @@ -34,20 +34,122 @@ l. ...\ShowInstanceValues{captionedtext}{thm} Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -94,7 +196,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -110,7 +212,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -118,7 +220,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -140,7 +242,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -148,17 +250,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -166,17 +269,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 14 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -261,7 +364,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -277,7 +380,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -285,7 +388,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -307,7 +410,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -315,17 +418,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -333,17 +437,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 24 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -384,7 +488,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -400,7 +504,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -408,7 +512,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -430,7 +534,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -438,17 +542,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -456,17 +561,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 29 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -492,20 +597,121 @@ Package tagpdf Info: closing structure 6 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 35 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 35 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 34 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -540,7 +746,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -556,7 +762,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -564,7 +770,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -586,7 +792,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -594,7 +800,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -604,7 +810,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -617,7 +823,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -625,17 +831,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 39 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -691,7 +897,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -707,7 +913,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -715,7 +921,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -737,7 +943,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -745,17 +951,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -763,17 +970,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 46 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -798,13 +1005,54 @@ Package tagpdf Info: closing structure 45 tagged /theorem-like Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 51 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -1040,7 +1288,7 @@ Package tagpdf Info: closing structure 33 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~79 structure objects -(tagpdf) with ~50 'MC' leaf nodes. +(tagpdf) with ~52 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree @@ -1048,5 +1296,5 @@ Package tagpdf Info: writing RoleMap Package tagpdf Info: writing ClassMap Package tagpdf Info: writing NameSpaces Package tagpdf Info: writing StructElems -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 11 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 12 has no kids Package tagpdf Info: writing Root diff --git a/required/latex-lab/testfiles-block/blocks-theorem-01.tlg b/required/latex-lab/testfiles-block/blocks-theorem-01.tlg index 85697949d..6eee57644 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-01.tlg @@ -34,20 +34,122 @@ l. ...\ShowInstanceValues{captionedtext}{thm} Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -94,7 +196,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -110,7 +212,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -118,7 +220,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -140,7 +242,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -148,17 +250,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -166,17 +269,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 13 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -261,7 +364,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -277,7 +380,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -285,7 +388,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -307,7 +410,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -315,17 +418,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -333,17 +437,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 23 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -384,7 +488,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -400,7 +504,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -408,7 +512,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -430,7 +534,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -438,17 +542,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -456,17 +561,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 28 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -492,20 +597,121 @@ Package tagpdf Info: closing structure 5 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 34 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 34 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 33 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -540,7 +746,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -556,7 +762,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -564,7 +770,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -586,7 +792,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -594,7 +800,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -604,7 +810,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -617,7 +823,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -625,17 +831,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 38 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -691,7 +897,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -707,7 +913,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -715,7 +921,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -737,7 +943,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -745,17 +951,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -763,17 +970,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 45 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -798,13 +1005,54 @@ Package tagpdf Info: closing structure 44 tagged /theorem-like Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 50 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -1011,7 +1259,7 @@ Package tagpdf Info: closing structure 52 tagged /itemize Package tagpdf Info: closing structure 51 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {38} +> {40} > {62}. [2]<><> (blocks-theorem-01.aux) Package tagpdf Info: closing structure 49 tagged /Sect @@ -1019,7 +1267,7 @@ Package tagpdf Info: closing structure 32 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~78 structure objects -(tagpdf) with ~50 'MC' leaf nodes. +(tagpdf) with ~52 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-theorem-02.luatex.tlg b/required/latex-lab/testfiles-block/blocks-theorem-02.luatex.tlg index 840ad14f1..350f01876 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-02.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-02.luatex.tlg @@ -4,21 +4,97 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data Overfull \hbox (6.64462pt too wide) in paragraph at lines ... []\OT1/cmr/bx/n/14.4 On theorem-like struc-tures (num-ber-ing scheme \hbox(10.79999+3.59999)x345.0, glue set - 1.0, direction TLT @@ -33,6 +109,7 @@ Overfull \hbox (6.64462pt too wide) in paragraph at lines ... ..\glue 0.0 ..\OT1/cmr/bx/n/14.4 4 ..\glue 16.19998 +..\glue 0.0 .\OT1/cmr/bx/n/14.4 O .\OT1/cmr/bx/n/14.4 n .\glue(\spaceskip) 5.4 plus 2.7 minus 1.79999 @@ -91,6 +168,32 @@ Overfull \hbox (6.64462pt too wide) in paragraph at lines ... .\OT1/cmr/bx/n/14.4 m .\OT1/cmr/bx/n/14.4 e .\glue(\rightskip) 0.0 +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -136,7 +239,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -152,7 +255,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -160,7 +263,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -182,7 +285,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -190,17 +293,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -208,17 +312,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 14 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -272,7 +376,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -288,7 +392,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -296,7 +400,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -318,7 +422,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -326,17 +430,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -344,17 +449,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 21 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -395,7 +500,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -411,7 +516,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -419,7 +524,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -441,7 +546,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -449,17 +554,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -467,17 +573,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 26 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -503,20 +609,121 @@ Package tagpdf Info: closing structure 6 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 32 tagged /section-number +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 32 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 31 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -551,7 +758,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -567,7 +774,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -575,7 +782,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -597,7 +804,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -605,7 +812,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -615,7 +822,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -628,7 +835,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -636,17 +843,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 36 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -702,7 +909,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -718,7 +925,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -726,7 +933,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -748,7 +955,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -756,17 +963,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -774,17 +982,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 43 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -830,7 +1038,7 @@ Package tagpdf Info: closing structure 30 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~46 structure objects -(tagpdf) with ~31 'MC' leaf nodes. +(tagpdf) with ~33 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-theorem-02.tlg b/required/latex-lab/testfiles-block/blocks-theorem-02.tlg index 0f3f6ca0c..4c3235444 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-02.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-02.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -64,7 +166,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -80,7 +182,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -88,7 +190,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -110,7 +212,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -118,17 +220,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -136,17 +239,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 13 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -200,7 +303,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -216,7 +319,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -224,7 +327,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -246,7 +349,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -254,17 +357,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -272,17 +376,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 20 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -323,7 +427,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -339,7 +443,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -347,7 +451,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -369,7 +473,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -377,17 +481,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -395,17 +500,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 25 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -431,20 +536,121 @@ Package tagpdf Info: closing structure 5 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 31 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 30 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -479,7 +685,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -495,7 +701,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -503,7 +709,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -525,7 +731,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -533,7 +739,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -543,7 +749,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -556,7 +762,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -564,17 +770,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 35 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -630,7 +836,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -646,7 +852,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -654,7 +860,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -676,7 +882,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -684,17 +890,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -702,17 +909,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 42 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -741,7 +948,7 @@ Package tagpdf Info: closing structure 29 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~45 structure objects -(tagpdf) with ~31 'MC' leaf nodes. +(tagpdf) with ~33 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-theorem-03.luatex.tlg b/required/latex-lab/testfiles-block/blocks-theorem-03.luatex.tlg index 02b871884..3c4d26ed7 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-03.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-03.luatex.tlg @@ -13,7 +13,7 @@ Don't change this file in any respect. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -25,14 +25,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -44,40 +44,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-block/blocks-theorem-03.tlg b/required/latex-lab/testfiles-block/blocks-theorem-03.tlg index 9f70e4770..a72e8f326 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-03.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-03.tlg @@ -13,7 +13,7 @@ Don't change this file in any respect. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -25,14 +25,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -44,40 +44,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-block/blocks-theorem-04.luatex.tlg b/required/latex-lab/testfiles-block/blocks-theorem-04.luatex.tlg index f328e7346..933376c80 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-04.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-04.luatex.tlg @@ -32,7 +32,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -47,14 +47,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -76,14 +76,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -93,7 +93,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -105,23 +105,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 9 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -190,7 +190,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -205,14 +205,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -234,40 +234,41 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 18 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -327,7 +328,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -350,7 +351,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -367,7 +368,7 @@ Perhaps a misspelling or the current template instance uses special values. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -384,7 +385,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -396,23 +397,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 24 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -461,7 +462,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -476,19 +477,20 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -498,7 +500,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -510,23 +512,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 29 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end diff --git a/required/latex-lab/testfiles-block/blocks-theorem-04.tlg b/required/latex-lab/testfiles-block/blocks-theorem-04.tlg index 404fcc25e..64fcae5c9 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-04.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-04.tlg @@ -32,7 +32,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -47,14 +47,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -76,14 +76,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -93,7 +93,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -105,23 +105,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 8 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -190,7 +190,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -205,14 +205,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -234,40 +234,41 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 17 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -327,7 +328,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -350,7 +351,7 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -367,7 +368,7 @@ Perhaps a misspelling or the current template instance uses special values. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -384,7 +385,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -396,23 +397,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 23 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end @@ -461,7 +462,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -476,19 +477,20 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -498,7 +500,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -510,23 +512,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 28 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end diff --git a/required/latex-lab/testfiles-block/blocks-theorem-05.luatex.tlg b/required/latex-lab/testfiles-block/blocks-theorem-05.luatex.tlg index 685b9bbc3..6c44f4748 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-05.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-05.luatex.tlg @@ -2,6 +2,105 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |It has a name|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -15,7 +114,7 @@ Don't change this file in any respect. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -28,7 +127,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -36,7 +135,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -48,7 +147,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -56,7 +155,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -66,7 +165,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -79,7 +178,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -87,17 +186,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |number={\ref {eq}\textsuperscript {*}}|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -111,7 +210,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -124,7 +223,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -132,7 +231,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -144,7 +243,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -152,17 +251,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -170,17 +270,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |correct number?|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -194,7 +294,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -207,7 +307,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -215,7 +315,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -227,7 +327,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -235,7 +335,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -245,7 +345,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -258,7 +358,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -266,17 +366,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |numbered={false}|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -290,7 +390,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -303,7 +403,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -311,22 +411,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -334,17 +436,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'lem*' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -358,7 +460,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -371,7 +473,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -379,22 +481,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -402,17 +506,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'lem*' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |numbered={true}|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -426,7 +530,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -439,7 +543,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -447,22 +551,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -470,17 +576,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -494,7 +600,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -507,7 +613,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -515,7 +621,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -527,7 +633,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -535,17 +641,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -553,17 +660,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -575,7 +682,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -588,7 +695,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -600,13 +707,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -614,17 +722,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |Foo|\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -636,7 +744,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -649,7 +757,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -661,13 +769,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -675,17 +784,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},caption-decls={\sffamily }|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -697,7 +806,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -710,7 +819,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -722,13 +831,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -736,17 +846,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},title-decls={\bfseries }|\BooleanTrue |Bar|\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -758,7 +868,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -771,7 +881,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -783,13 +893,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -797,17 +908,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo}|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -819,7 +930,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -832,7 +943,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -850,7 +961,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -863,7 +974,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -871,17 +982,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},note={Bar},note-decls={\sffamily }|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -893,7 +1004,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -906,7 +1017,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -926,7 +1037,7 @@ LaTeX Font Info: Font shape `OT1/cmss/m/it' in size <10> not available [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -939,7 +1050,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -947,17 +1058,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |Foo|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -971,7 +1082,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -984,7 +1095,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -992,7 +1103,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1004,7 +1115,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1012,7 +1123,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1022,7 +1133,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1035,7 +1146,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1043,17 +1154,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |Foo|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1067,7 +1178,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1080,7 +1191,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1088,7 +1199,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1100,7 +1211,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1108,7 +1219,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1118,7 +1229,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1131,7 +1242,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1139,17 +1250,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo},caption-decls={\sffamily }|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1163,7 +1274,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1176,7 +1287,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1184,7 +1295,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1196,7 +1307,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1204,7 +1315,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1214,7 +1325,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1227,7 +1338,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1235,17 +1346,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo}|\BooleanFalse |Bar|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1259,7 +1370,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1272,7 +1383,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1280,7 +1391,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1292,7 +1403,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1300,7 +1411,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1310,7 +1421,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1323,7 +1434,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1331,17 +1442,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Test for color leakage into caption [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |body-decls={\color {blue}}|\BooleanFalse |\NoValue |\NoValue | @@ -1356,7 +1467,7 @@ Test for color leakage into caption [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1369,7 +1480,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1377,7 +1488,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1389,7 +1500,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1397,17 +1508,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1415,17 +1527,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -1447,7 +1559,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1460,7 +1572,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1468,7 +1580,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1480,7 +1592,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1488,17 +1600,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1506,17 +1619,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -1569,8 +1682,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 3 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 T @@ -3446,7 +3563,7 @@ Completed box being shipped out [1] <><> (blocks-theorem-05.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~109 structure objects -(tagpdf) with ~68 'MC' leaf nodes. +(tagpdf) with ~69 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-theorem-05.tlg b/required/latex-lab/testfiles-block/blocks-theorem-05.tlg index 4576b3f9d..1b98b60f3 100644 --- a/required/latex-lab/testfiles-block/blocks-theorem-05.tlg +++ b/required/latex-lab/testfiles-block/blocks-theorem-05.tlg @@ -2,6 +2,105 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |It has a name|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -15,7 +114,7 @@ Don't change this file in any respect. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -28,7 +127,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -36,7 +135,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -48,7 +147,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -56,7 +155,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -66,7 +165,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -79,7 +178,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -87,17 +186,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |number={\ref {eq}\textsuperscript {*}}|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -111,7 +210,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -124,7 +223,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -132,7 +231,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -144,7 +243,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -152,17 +251,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -170,17 +270,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |correct number?|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -194,7 +294,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -207,7 +307,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -215,7 +315,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -227,7 +327,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -235,7 +335,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -245,7 +345,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -258,7 +358,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -266,17 +366,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |numbered={false}|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -290,7 +390,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -303,7 +403,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -311,22 +411,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -334,17 +436,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'lem*' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -358,7 +460,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -371,7 +473,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -379,22 +481,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -402,17 +506,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'lem*' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |numbered={true}|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -426,7 +530,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -439,7 +543,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -447,22 +551,24 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' -[Template] ==> \NoValue - dropping collected separators -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -470,17 +576,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -494,7 +600,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -507,7 +613,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -515,7 +621,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -527,7 +633,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -535,17 +641,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -553,17 +660,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -575,7 +682,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -588,7 +695,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -600,13 +707,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -614,17 +722,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanTrue |Foo|\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -636,7 +744,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -649,7 +757,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -661,13 +769,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -675,17 +784,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},caption-decls={\sffamily }|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -697,7 +806,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -710,7 +819,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -722,13 +831,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -736,17 +846,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},title-decls={\bfseries }|\BooleanTrue |Bar|\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -758,7 +868,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -771,7 +881,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -783,13 +893,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -797,17 +908,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo}|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -819,7 +930,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -832,7 +943,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -850,7 +961,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -863,7 +974,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -871,17 +982,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'proof' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |title={Foo},note={Bar},note-decls={\sffamily }|\BooleanTrue |\NoValue |\NoValue | [Template] ==> Using instance 'proof-1' of type 'block' on line ... @@ -893,7 +1004,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -906,7 +1017,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -924,7 +1035,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -937,7 +1048,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -945,17 +1056,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |Foo|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -969,7 +1080,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -982,7 +1093,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -990,7 +1101,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1002,7 +1113,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1010,7 +1121,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1020,7 +1131,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1033,7 +1144,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1041,17 +1152,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |Foo|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1065,7 +1176,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1078,7 +1189,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1086,7 +1197,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1098,7 +1209,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1106,7 +1217,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1116,7 +1227,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1129,7 +1240,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1137,17 +1248,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo},caption-decls={\sffamily }|\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1161,7 +1272,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1174,7 +1285,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1182,7 +1293,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1194,7 +1305,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1202,7 +1313,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1212,7 +1323,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1225,7 +1336,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1233,17 +1344,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |note={Foo}|\BooleanFalse |Bar|\NoValue | [Template] ==> Using instance 'thm-plain-1' of type 'block' on line ... @@ -1257,7 +1368,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1270,7 +1381,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1278,7 +1389,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1290,7 +1401,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1298,7 +1409,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' @@ -1308,7 +1419,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1321,7 +1432,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1329,17 +1440,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Test for color leakage into caption [Template] ==> Using instance 'thm' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |body-decls={\color {blue}}|\BooleanFalse |\NoValue |\NoValue | @@ -1354,7 +1465,7 @@ Test for color leakage into caption [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1367,7 +1478,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1375,7 +1486,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1387,7 +1498,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1395,17 +1506,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1413,17 +1525,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -1445,7 +1557,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1458,7 +1570,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1466,7 +1578,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -1478,7 +1590,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1486,17 +1598,18 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -1504,17 +1617,17 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Sect}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -1540,15 +1653,15 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,67,-1,} -...\marks4{b+,67,-1,} +...\marks4{b-,68,-1,} +...\marks4{b+,68,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,67,5,} -...\marks4{e+,67,5,} +...\marks4{e-,68,5,} +...\marks4{e+,68,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -1558,16 +1671,28 @@ Completed box being shipped out [1] ...\pdfcolorstack 0 push {0 g 0 G} ...\glue(\topskip) 0.06242 ...\hbox(9.93758+2.7993)x345.0, glue set 154.95491fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 3 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 T ....\kern-1.3197 @@ -1596,18 +1721,14 @@ Completed box being shipped out [1] ....\kern-0.4399 ....\T1/cmr/bx/n/14.4 t ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {3}Testing opt arg variants}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -1623,7 +1744,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 1.70253 ...\hbox(7.49817+2.49939)x345.0, glue set 193.93568fil ....\glue 0.0 -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -1635,13 +1756,13 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 1 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace @@ -1663,7 +1784,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -1674,22 +1795,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,9,Caption,,,} -...\marks4{b+,3,9,Caption,,,} -...\marks4{e-,3,9,} -...\marks4{e+,3,9,} -...\marks4{b-,4,10,Lbl,,,} -...\marks4{b+,4,10,Lbl,,,} -...\marks4{e-,4,10,} -...\marks4{e+,4,10,} -...\marks4{b-,5,9,Caption,,,} -...\marks4{b+,5,9,Caption,,,} -...\marks4{e-,5,9,} -...\marks4{e+,5,9,} -...\marks4{b-,6,12,text-block,,,} -...\marks4{b+,6,12,text-block,,,} -...\marks4{e-,6,12,} -...\marks4{e+,6,12,} +...\marks4{b-,4,9,Caption,,,} +...\marks4{b+,4,9,Caption,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} +...\marks4{b-,5,10,Lbl,,,} +...\marks4{b+,5,10,Lbl,,,} +...\marks4{e-,5,10,} +...\marks4{e+,5,10,} +...\marks4{b-,6,9,Caption,,,} +...\marks4{b+,6,9,Caption,,,} +...\marks4{e-,6,9,} +...\marks4{e+,6,9,} +...\marks4{b-,7,12,text-block,,,} +...\marks4{b+,7,12,text-block,,,} +...\marks4{e-,7,12,} +...\marks4{e+,7,12,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -1705,7 +1826,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 0.62297 ...\hbox(8.87764+1.94397)x345.0, glue set 89.16423fil ....\glue 0.0 -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -1717,32 +1838,32 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 1 ....\hbox(0.0+0.0)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-fragment <> BDC} ....\hbox(5.24872+0.0)x4.52945, shifted -3.62892 .....\pdfcolorstack 0 push {0 g 0 G} .....\T1/cmr/bx/n/7 * .....\pdfcolorstack 0 pop ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\penalty 10000 ....\glue 0.5 ....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -1798,30 +1919,30 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,7,14,Caption,,,} -...\marks4{b+,7,14,Caption,,,} -...\marks4{e-,7,14,} -...\marks4{e+,7,14,} -...\marks4{b-,8,15,Lbl,,,} -...\marks4{b+,8,15,Lbl,,,} -...\marks4{e-,8,15,} -...\marks4{e+,8,15,} -...\marks4{b-,9,16,text-fragment,,,} -...\marks4{b+,9,16,text-fragment,,,} -...\marks4{e-,9,16,} -...\marks4{e+,9,16,} -...\marks4{b-,10,15,Lbl,,,} -...\marks4{b+,10,15,Lbl,,,} -...\marks4{e-,10,15,} -...\marks4{e+,10,15,} -...\marks4{b-,11,14,Caption,,,} -...\marks4{b+,11,14,Caption,,,} -...\marks4{e-,11,14,} -...\marks4{e+,11,14,} -...\marks4{b-,12,18,text-block,,,} -...\marks4{b+,12,18,text-block,,,} -...\marks4{e-,12,18,} -...\marks4{e+,12,18,} +...\marks4{b-,8,14,Caption,,,} +...\marks4{b+,8,14,Caption,,,} +...\marks4{e-,8,14,} +...\marks4{e+,8,14,} +...\marks4{b-,9,15,Lbl,,,} +...\marks4{b+,9,15,Lbl,,,} +...\marks4{e-,9,15,} +...\marks4{e+,9,15,} +...\marks4{b-,10,16,text-fragment,,,} +...\marks4{b+,10,16,text-fragment,,,} +...\marks4{e-,10,16,} +...\marks4{e+,10,16,} +...\marks4{b-,11,15,Lbl,,,} +...\marks4{b+,11,15,Lbl,,,} +...\marks4{e-,11,15,} +...\marks4{e+,11,15,} +...\marks4{b-,12,14,Caption,,,} +...\marks4{b+,12,14,Caption,,,} +...\marks4{e-,12,14,} +...\marks4{e+,12,14,} +...\marks4{b-,13,18,text-block,,,} +...\marks4{b+,13,18,text-block,,,} +...\marks4{e-,13,18,} +...\marks4{e+,13,18,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -9.94397 plus -2.0 minus -4.0 @@ -1837,7 +1958,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.55786 ...\hbox(7.49817+2.49939)x345.0, glue set 140.81537fil ....\glue 0.0 -....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -1849,13 +1970,13 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 2 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace @@ -1881,7 +2002,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 ) ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -1904,22 +2025,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,13,20,Caption,,,} -...\marks4{b+,13,20,Caption,,,} -...\marks4{e-,13,20,} -...\marks4{e+,13,20,} -...\marks4{b-,14,21,Lbl,,,} -...\marks4{b+,14,21,Lbl,,,} -...\marks4{e-,14,21,} -...\marks4{e+,14,21,} -...\marks4{b-,15,20,Caption,,,} -...\marks4{b+,15,20,Caption,,,} -...\marks4{e-,15,20,} -...\marks4{e+,15,20,} -...\marks4{b-,16,23,text-block,,,} -...\marks4{b+,16,23,text-block,,,} -...\marks4{e-,16,23,} -...\marks4{e+,16,23,} +...\marks4{b-,14,20,Caption,,,} +...\marks4{b+,14,20,Caption,,,} +...\marks4{e-,14,20,} +...\marks4{e+,14,20,} +...\marks4{b-,15,21,Lbl,,,} +...\marks4{b+,15,21,Lbl,,,} +...\marks4{e-,15,21,} +...\marks4{e+,15,21,} +...\marks4{b-,16,20,Caption,,,} +...\marks4{b+,16,20,Caption,,,} +...\marks4{e-,16,20,} +...\marks4{e+,16,20,} +...\marks4{b-,17,23,text-block,,,} +...\marks4{b+,17,23,text-block,,,} +...\marks4{e-,17,23,} +...\marks4{e+,17,23,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -1935,7 +2056,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.59952 ...\hbox(6.9011+0.0)x345.0, glue set 196.50739fil ....\glue 0.0 -....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -1947,7 +2068,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -1979,14 +2100,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,17,25,Caption,,,} -...\marks4{b+,17,25,Caption,,,} -...\marks4{e-,17,25,} -...\marks4{e+,17,25,} -...\marks4{b-,18,27,text-block,,,} -...\marks4{b+,18,27,text-block,,,} -...\marks4{e-,18,27,} -...\marks4{e+,18,27,} +...\marks4{b-,18,25,Caption,,,} +...\marks4{b+,18,25,Caption,,,} +...\marks4{e-,18,25,} +...\marks4{e+,18,25,} +...\marks4{b-,19,27,text-block,,,} +...\marks4{b+,19,27,text-block,,,} +...\marks4{e-,19,27,} +...\marks4{e+,19,27,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -8.0 plus -2.0 minus -4.0 @@ -2001,7 +2122,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 5.0989 ...\hbox(6.9011+0.0)x345.0, glue set 196.50186fil ....\glue 0.0 -....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 L ....\T1/cmr/bx/n/10 e @@ -2011,7 +2132,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2045,14 +2166,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,19,29,Caption,,,} -...\marks4{b+,19,29,Caption,,,} -...\marks4{e-,19,29,} -...\marks4{e+,19,29,} -...\marks4{b-,20,31,text-block,,,} -...\marks4{b+,20,31,text-block,,,} -...\marks4{e-,20,31,} -...\marks4{e+,20,31,} +...\marks4{b-,20,29,Caption,,,} +...\marks4{b+,20,29,Caption,,,} +...\marks4{e-,20,29,} +...\marks4{e+,20,29,} +...\marks4{b-,21,31,text-block,,,} +...\marks4{b+,21,31,text-block,,,} +...\marks4{e-,21,31,} +...\marks4{e+,21,31,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -8.0 plus -2.0 minus -4.0 @@ -2067,7 +2188,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 5.0989 ...\hbox(6.9011+1.94397)x345.0, glue set 103.13036fil ....\glue 0.0 -....\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 L ....\T1/cmr/bx/n/10 e @@ -2077,7 +2198,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2136,14 +2257,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,21,33,Caption,,,} -...\marks4{b+,21,33,Caption,,,} -...\marks4{e-,21,33,} -...\marks4{e+,21,33,} -...\marks4{b-,22,35,text-block,,,} -...\marks4{b+,22,35,text-block,,,} -...\marks4{e-,22,35,} -...\marks4{e+,22,35,} +...\marks4{b-,22,33,Caption,,,} +...\marks4{b+,22,33,Caption,,,} +...\marks4{e-,22,33,} +...\marks4{e+,22,33,} +...\marks4{b-,23,35,text-block,,,} +...\marks4{b+,23,35,text-block,,,} +...\marks4{e-,23,35,} +...\marks4{e+,23,35,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -9.94397 plus -2.0 minus -4.0 @@ -2159,7 +2280,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 3.15494 ...\hbox(6.9011+0.0)x345.0, glue set 126.2357fil ....\glue 0.0 -....\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -2171,18 +2292,18 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 3 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2224,22 +2345,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,23,37,Caption,,,} -...\marks4{b+,23,37,Caption,,,} -...\marks4{e-,23,37,} -...\marks4{e+,23,37,} -...\marks4{b-,24,38,Lbl,,,} -...\marks4{b+,24,38,Lbl,,,} -...\marks4{e-,24,38,} -...\marks4{e+,24,38,} -...\marks4{b-,25,37,Caption,,,} -...\marks4{b+,25,37,Caption,,,} -...\marks4{e-,25,37,} -...\marks4{e+,25,37,} -...\marks4{b-,26,40,text-block,,,} -...\marks4{b+,26,40,text-block,,,} -...\marks4{e-,26,40,} -...\marks4{e+,26,40,} +...\marks4{b-,24,37,Caption,,,} +...\marks4{b+,24,37,Caption,,,} +...\marks4{e-,24,37,} +...\marks4{e+,24,37,} +...\marks4{b-,25,38,Lbl,,,} +...\marks4{b+,25,38,Lbl,,,} +...\marks4{e-,25,38,} +...\marks4{e+,25,38,} +...\marks4{b-,26,37,Caption,,,} +...\marks4{b+,26,37,Caption,,,} +...\marks4{e-,26,37,} +...\marks4{e+,26,37,} +...\marks4{b-,27,40,text-block,,,} +...\marks4{b+,27,40,text-block,,,} +...\marks4{e-,27,40,} +...\marks4{e+,27,40,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -8.0 plus -2.0 minus -4.0 @@ -2250,7 +2371,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+1.94397)x345.0, glue set 260.76932fill ....\glue 0.0 -....\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/m/it/10 P ....\T1/cmr/m/it/10 r @@ -2262,7 +2383,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/it/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2295,14 +2416,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,27,42,Caption,,,} -...\marks4{b+,27,42,Caption,,,} -...\marks4{e-,27,42,} -...\marks4{e+,27,42,} -...\marks4{b-,28,44,text-block,,,} -...\marks4{b+,28,44,text-block,,,} -...\marks4{e-,28,44,} -...\marks4{e+,28,44,} +...\marks4{b-,28,42,Caption,,,} +...\marks4{b+,28,42,Caption,,,} +...\marks4{e-,28,42,} +...\marks4{e+,28,42,} +...\marks4{b-,29,44,text-block,,,} +...\marks4{b+,29,44,text-block,,,} +...\marks4{e-,29,44,} +...\marks4{e+,29,44,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -9.94397 plus -7.0 minus -1.0 @@ -2314,7 +2435,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x345.0, glue set 174.25153fill ....\glue 0.0 -....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/m/it/10 F ....\kern-0.76648 @@ -2324,7 +2445,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/it/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2380,14 +2501,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,29,46,Caption,,,} -...\marks4{b+,29,46,Caption,,,} -...\marks4{e-,29,46,} -...\marks4{e+,29,46,} -...\marks4{b-,30,48,text-block,,,} -...\marks4{b+,30,48,text-block,,,} -...\marks4{e-,30,48,} -...\marks4{e+,30,48,} +...\marks4{b-,30,46,Caption,,,} +...\marks4{b+,30,46,Caption,,,} +...\marks4{e-,30,46,} +...\marks4{e+,30,46,} +...\marks4{b-,31,48,text-block,,,} +...\marks4{b+,31,48,text-block,,,} +...\marks4{e-,31,48,} +...\marks4{e+,31,48,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -9.94397 plus -7.0 minus -1.0 @@ -2399,7 +2520,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 3.11328 ...\hbox(6.94275+1.94397)x345.0, glue set 121.49773fill ....\glue 0.0 -....\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmss/m/n/10 F ....\kern-0.27771 @@ -2409,7 +2530,7 @@ Completed box being shipped out [1] ....\T1/cmss/m/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2479,14 +2600,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,31,50,Caption,,,} -...\marks4{b+,31,50,Caption,,,} -...\marks4{e-,31,50,} -...\marks4{e+,31,50,} -...\marks4{b-,32,52,text-block,,,} -...\marks4{b+,32,52,text-block,,,} -...\marks4{e-,32,52,} -...\marks4{e+,32,52,} +...\marks4{b-,32,50,Caption,,,} +...\marks4{b+,32,50,Caption,,,} +...\marks4{e-,32,50,} +...\marks4{e+,32,50,} +...\marks4{b-,33,52,text-block,,,} +...\marks4{b+,33,52,text-block,,,} +...\marks4{e-,33,52,} +...\marks4{e+,33,52,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -9.94397 plus -7.0 minus -1.0 @@ -2498,7 +2619,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 3.15494 ...\hbox(6.9011+1.94397)x345.0, glue set 150.82947fill ....\glue 0.0 -....\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-34}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{34}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/it/10 B ....\T1/cmr/bx/it/10 a @@ -2506,7 +2627,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/it/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-34}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{34}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2564,14 +2685,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,33,54,Caption,,,} -...\marks4{b+,33,54,Caption,,,} -...\marks4{e-,33,54,} -...\marks4{e+,33,54,} -...\marks4{b-,34,56,text-block,,,} -...\marks4{b+,34,56,text-block,,,} -...\marks4{e-,34,56,} -...\marks4{e+,34,56,} +...\marks4{b-,34,54,Caption,,,} +...\marks4{b+,34,54,Caption,,,} +...\marks4{e-,34,54,} +...\marks4{e+,34,54,} +...\marks4{b-,35,56,text-block,,,} +...\marks4{b+,35,56,text-block,,,} +...\marks4{e-,35,56,} +...\marks4{e+,35,56,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -9.94397 plus -7.0 minus -1.0 @@ -2583,7 +2704,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.55786 ...\hbox(7.49817+2.49939)x345.0, glue set 206.47151fill ....\glue 0.0 -....\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-36}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{36}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/m/it/10 P ....\T1/cmr/m/it/10 r @@ -2604,7 +2725,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/it/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-36}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{36}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-37}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{37}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2643,14 +2764,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,35,58,Caption,,,} -...\marks4{b+,35,58,Caption,,,} -...\marks4{e-,35,58,} -...\marks4{e+,35,58,} -...\marks4{b-,36,60,text-block,,,} -...\marks4{b+,36,60,text-block,,,} -...\marks4{e-,36,60,} -...\marks4{e+,36,60,} +...\marks4{b-,36,58,Caption,,,} +...\marks4{b+,36,58,Caption,,,} +...\marks4{e-,36,58,} +...\marks4{e+,36,58,} +...\marks4{b-,37,60,text-block,,,} +...\marks4{b+,37,60,text-block,,,} +...\marks4{e-,37,60,} +...\marks4{e+,37,60,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -10.49939 plus -7.0 minus -1.0 @@ -2662,7 +2783,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.03716 ...\hbox(7.46346+2.49939)x345.0, glue set 105.99597fill ....\glue 0.0 -....\write1{\new@label@record{mcid-37}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{37}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/m/it/10 F ....\kern-0.76648 @@ -2680,7 +2801,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/it/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2744,14 +2865,14 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,37,62,Caption,,,} -...\marks4{b+,37,62,Caption,,,} -...\marks4{e-,37,62,} -...\marks4{e+,37,62,} -...\marks4{b-,38,64,text-block,,,} -...\marks4{b+,38,64,text-block,,,} -...\marks4{e-,38,64,} -...\marks4{e+,38,64,} +...\marks4{b-,38,62,Caption,,,} +...\marks4{b+,38,62,Caption,,,} +...\marks4{e-,38,62,} +...\marks4{e+,38,62,} +...\marks4{b-,39,64,text-block,,,} +...\marks4{b+,39,64,text-block,,,} +...\marks4{e-,39,64,} +...\marks4{e+,39,64,} ...\penalty -51 ...\glue 8.0 plus 7.0 minus 1.0 ...\glue -10.49939 plus -7.0 minus -1.0 @@ -2767,7 +2888,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.00244 ...\hbox(7.49817+2.49939)x345.0, glue set 198.94006fil ....\glue 0.0 -....\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -2779,13 +2900,13 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 4 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-42}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{42}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace @@ -2799,7 +2920,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-42}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{42}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-43}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{43}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2819,22 +2940,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,39,66,Caption,,,} -...\marks4{b+,39,66,Caption,,,} -...\marks4{e-,39,66,} -...\marks4{e+,39,66,} -...\marks4{b-,40,67,Lbl,,,} -...\marks4{b+,40,67,Lbl,,,} -...\marks4{e-,40,67,} -...\marks4{e+,40,67,} -...\marks4{b-,41,66,Caption,,,} -...\marks4{b+,41,66,Caption,,,} -...\marks4{e-,41,66,} -...\marks4{e+,41,66,} -...\marks4{b-,42,69,text-block,,,} -...\marks4{b+,42,69,text-block,,,} -...\marks4{e-,42,69,} -...\marks4{e+,42,69,} +...\marks4{b-,40,66,Caption,,,} +...\marks4{b+,40,66,Caption,,,} +...\marks4{e-,40,66,} +...\marks4{e+,40,66,} +...\marks4{b-,41,67,Lbl,,,} +...\marks4{b+,41,67,Lbl,,,} +...\marks4{e-,41,67,} +...\marks4{e+,41,67,} +...\marks4{b-,42,66,Caption,,,} +...\marks4{b+,42,66,Caption,,,} +...\marks4{e-,42,66,} +...\marks4{e+,42,66,} +...\marks4{b-,43,69,text-block,,,} +...\marks4{b+,43,69,text-block,,,} +...\marks4{e-,43,69,} +...\marks4{e+,43,69,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -2850,7 +2971,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.00244 ...\hbox(7.49817+2.49939)x345.0, glue set 159.21092fil ....\glue 0.0 -....\write1{\new@label@record{mcid-43}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{43}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-44}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{44}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -2862,13 +2983,13 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-44}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{44}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-45}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{45}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 5 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-45}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{45}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-46}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{46}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace @@ -2882,7 +3003,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-46}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{46}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-47}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{47}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -2912,22 +3033,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,43,71,Caption,,,} -...\marks4{b+,43,71,Caption,,,} -...\marks4{e-,43,71,} -...\marks4{e+,43,71,} -...\marks4{b-,44,72,Lbl,,,} -...\marks4{b+,44,72,Lbl,,,} -...\marks4{e-,44,72,} -...\marks4{e+,44,72,} -...\marks4{b-,45,71,Caption,,,} -...\marks4{b+,45,71,Caption,,,} -...\marks4{e-,45,71,} -...\marks4{e+,45,71,} -...\marks4{b-,46,74,text-block,,,} -...\marks4{b+,46,74,text-block,,,} -...\marks4{e-,46,74,} -...\marks4{e+,46,74,} +...\marks4{b-,44,71,Caption,,,} +...\marks4{b+,44,71,Caption,,,} +...\marks4{e-,44,71,} +...\marks4{e+,44,71,} +...\marks4{b-,45,72,Lbl,,,} +...\marks4{b+,45,72,Lbl,,,} +...\marks4{e-,45,72,} +...\marks4{e+,45,72,} +...\marks4{b-,46,71,Caption,,,} +...\marks4{b+,46,71,Caption,,,} +...\marks4{e-,46,71,} +...\marks4{e+,46,71,} +...\marks4{b-,47,74,text-block,,,} +...\marks4{b+,47,74,text-block,,,} +...\marks4{e-,47,74,} +...\marks4{e+,47,74,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -2943,7 +3064,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.03716 ...\hbox(7.46346+2.49939)x345.0, glue set 93.97144fil ....\glue 0.0 -....\write1{\new@label@record{mcid-47}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{47}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmss/m/n/10 T ....\T1/cmss/m/n/10 h @@ -2956,13 +3077,13 @@ Completed box being shipped out [1] ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-49}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{49}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmss/m/n/10 3 ....\T1/cmss/m/n/10 . ....\T1/cmss/m/n/10 6 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-49}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{49}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdffakespace @@ -2976,7 +3097,7 @@ Completed box being shipped out [1] ....\T1/cmss/m/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -3026,22 +3147,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,47,76,Caption,,,} -...\marks4{b+,47,76,Caption,,,} -...\marks4{e-,47,76,} -...\marks4{e+,47,76,} -...\marks4{b-,48,77,Lbl,,,} -...\marks4{b+,48,77,Lbl,,,} -...\marks4{e-,48,77,} -...\marks4{e+,48,77,} -...\marks4{b-,49,76,Caption,,,} -...\marks4{b+,49,76,Caption,,,} -...\marks4{e-,49,76,} -...\marks4{e+,49,76,} -...\marks4{b-,50,79,text-block,,,} -...\marks4{b+,50,79,text-block,,,} -...\marks4{e-,50,79,} -...\marks4{e+,50,79,} +...\marks4{b-,48,76,Caption,,,} +...\marks4{b+,48,76,Caption,,,} +...\marks4{e-,48,76,} +...\marks4{e+,48,76,} +...\marks4{b-,49,77,Lbl,,,} +...\marks4{b+,49,77,Lbl,,,} +...\marks4{e-,49,77,} +...\marks4{e+,49,77,} +...\marks4{b-,50,76,Caption,,,} +...\marks4{b+,50,76,Caption,,,} +...\marks4{e-,50,76,} +...\marks4{e+,50,76,} +...\marks4{b-,51,79,text-block,,,} +...\marks4{b+,51,79,text-block,,,} +...\marks4{e-,51,79,} +...\marks4{e+,51,79,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -3057,7 +3178,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.00244 ...\hbox(7.49817+2.49939)x345.0, glue set 82.66306fil ....\glue 0.0 -....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -3069,13 +3190,13 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 7 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace @@ -3087,7 +3208,7 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -3135,22 +3256,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,51,81,Caption,,,} -...\marks4{b+,51,81,Caption,,,} -...\marks4{e-,51,81,} -...\marks4{e+,51,81,} -...\marks4{b-,52,82,Lbl,,,} -...\marks4{b+,52,82,Lbl,,,} -...\marks4{e-,52,82,} -...\marks4{e+,52,82,} -...\marks4{b-,53,81,Caption,,,} -...\marks4{b+,53,81,Caption,,,} -...\marks4{e-,53,81,} -...\marks4{e+,53,81,} -...\marks4{b-,54,84,text-block,,,} -...\marks4{b+,54,84,text-block,,,} -...\marks4{e-,54,84,} -...\marks4{e+,54,84,} +...\marks4{b-,52,81,Caption,,,} +...\marks4{b+,52,81,Caption,,,} +...\marks4{e-,52,81,} +...\marks4{e+,52,81,} +...\marks4{b-,53,82,Lbl,,,} +...\marks4{b+,53,82,Lbl,,,} +...\marks4{e-,53,82,} +...\marks4{e+,53,82,} +...\marks4{b-,54,81,Caption,,,} +...\marks4{b+,54,81,Caption,,,} +...\marks4{e-,54,81,} +...\marks4{e+,54,81,} +...\marks4{b-,55,84,text-block,,,} +...\marks4{b+,55,84,text-block,,,} +...\marks4{e-,55,84,} +...\marks4{e+,55,84,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -10.49939 plus -2.0 minus -4.0 @@ -3166,7 +3287,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 2.59952 ...\hbox(6.9011+0.0)x345.0, glue set 273.29407fil ....\glue 0.0 -....\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -3178,18 +3299,18 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 8 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -3200,22 +3321,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,55,86,Caption,,,} -...\marks4{b+,55,86,Caption,,,} -...\marks4{e-,55,86,} -...\marks4{e+,55,86,} -...\marks4{b-,56,87,Lbl,,,} -...\marks4{b+,56,87,Lbl,,,} -...\marks4{e-,56,87,} -...\marks4{e+,56,87,} -...\marks4{b-,57,86,Caption,,,} -...\marks4{b+,57,86,Caption,,,} -...\marks4{e-,57,86,} -...\marks4{e+,57,86,} -...\marks4{b-,58,89,text-block,,,} -...\marks4{b+,58,89,text-block,,,} -...\marks4{e-,58,89,} -...\marks4{e+,58,89,} +...\marks4{b-,56,86,Caption,,,} +...\marks4{b+,56,86,Caption,,,} +...\marks4{e-,56,86,} +...\marks4{e+,56,86,} +...\marks4{b-,57,87,Lbl,,,} +...\marks4{b+,57,87,Lbl,,,} +...\marks4{e-,57,87,} +...\marks4{e+,57,87,} +...\marks4{b-,58,86,Caption,,,} +...\marks4{b+,58,86,Caption,,,} +...\marks4{e-,58,86,} +...\marks4{e+,58,86,} +...\marks4{b-,59,89,text-block,,,} +...\marks4{b+,59,89,text-block,,,} +...\marks4{e-,59,89,} +...\marks4{e+,59,89,} ...\penalty 10000 ...\glue 4.0 ...\glue -4.0 @@ -3229,18 +3350,18 @@ Completed box being shipped out [1] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,59,93,itemlabel,,,} -.......\marks4{b+,59,93,itemlabel,,,} +.......\marks4{b-,60,93,itemlabel,,,} +.......\marks4{b+,60,93,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,59,93,} -.......\marks4{e+,59,93,} +.......\marks4{e-,60,93,} +.......\marks4{e+,60,93,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 t @@ -3251,10 +3372,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,60,96,text-block,,,} -...\marks4{b+,60,96,text-block,,,} -...\marks4{e-,60,96,} -...\marks4{e+,60,96,} +...\marks4{b-,61,96,text-block,,,} +...\marks4{b+,61,96,text-block,,,} +...\marks4{e-,61,96,} +...\marks4{e+,61,96,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\pdfcolorstack 0 pop @@ -3272,7 +3393,7 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 4.77954 ...\hbox(7.22046+0.0)x345.0, glue set 200.95062fil ....\glue 0.0 -....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 T ....\T1/cmr/bx/n/10 h @@ -3284,18 +3405,18 @@ Completed box being shipped out [1] ....\glue 3.8324 plus 1.9162 minus 1.27747 ....\pdffakespace ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Lbl <> BDC} ....\T1/cmr/bx/n/10 3 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 9 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/Caption <> BDC} ....\T1/cmr/bx/n/10 . ....\pdfliteral page{EMC} ....\glue 5.0 plus 1.0 minus 1.0 -....\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} ....\penalty 10000 ....\glue -0.00002 ....\glue 0.00002 @@ -3325,22 +3446,22 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,61,98,Caption,,,} -...\marks4{b+,61,98,Caption,,,} -...\marks4{e-,61,98,} -...\marks4{e+,61,98,} -...\marks4{b-,62,99,Lbl,,,} -...\marks4{b+,62,99,Lbl,,,} -...\marks4{e-,62,99,} -...\marks4{e+,62,99,} -...\marks4{b-,63,98,Caption,,,} -...\marks4{b+,63,98,Caption,,,} -...\marks4{e-,63,98,} -...\marks4{e+,63,98,} -...\marks4{b-,64,101,text-block,,,} -...\marks4{b+,64,101,text-block,,,} -...\marks4{e-,64,101,} -...\marks4{e+,64,101,} +...\marks4{b-,62,98,Caption,,,} +...\marks4{b+,62,98,Caption,,,} +...\marks4{e-,62,98,} +...\marks4{e+,62,98,} +...\marks4{b-,63,99,Lbl,,,} +...\marks4{b+,63,99,Lbl,,,} +...\marks4{e-,63,99,} +...\marks4{e+,63,99,} +...\marks4{b-,64,98,Caption,,,} +...\marks4{b+,64,98,Caption,,,} +...\marks4{e-,64,98,} +...\marks4{e+,64,98,} +...\marks4{b-,65,101,text-block,,,} +...\marks4{b+,65,101,text-block,,,} +...\marks4{e-,65,101,} +...\marks4{e+,65,101,} ...\pdfcolorstack 0 push {0 g 0 G} ...\penalty -51 ...\glue 8.0 plus 3.0 minus 4.0 @@ -3355,18 +3476,18 @@ Completed box being shipped out [1] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,65,105,itemlabel,,,} -.......\marks4{b+,65,105,itemlabel,,,} +.......\marks4{b-,66,105,itemlabel,,,} +.......\marks4{b+,66,105,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,65,105,} -.......\marks4{e+,65,105,} +.......\marks4{e-,66,105,} +.......\marks4{e+,66,105,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-67}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{67}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmss/m/n/10 t @@ -3377,10 +3498,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,66,108,text-block,,,} -...\marks4{b+,66,108,text-block,,,} -...\marks4{e-,66,108,} -...\marks4{e+,66,108,} +...\marks4{b-,67,108,text-block,,,} +...\marks4{b+,67,108,text-block,,,} +...\marks4{e-,67,108,} +...\marks4{e+,67,108,} ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 ...\glue -8.0 plus -2.0 minus -4.0 @@ -3397,8 +3518,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,68,-1,} -..\marks4{b+,68,-1,} +..\marks4{b-,69,-1,} +..\marks4{b+,69,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -3408,8 +3529,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,68,5,} -..\marks4{e+,68,5,} +..\marks4{e-,69,5,} +..\marks4{e+,69,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -3419,7 +3540,7 @@ Completed box being shipped out [1] <><> (blocks-theorem-05.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~108 structure objects -(tagpdf) with ~68 'MC' leaf nodes. +(tagpdf) with ~69 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-trivlist-00.tlg b/required/latex-lab/testfiles-block/blocks-trivlist-00.tlg index 4238efd55..a5b103254 100644 --- a/required/latex-lab/testfiles-block/blocks-trivlist-00.tlg +++ b/required/latex-lab/testfiles-block/blocks-trivlist-00.tlg @@ -2,6 +2,84 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... @@ -34,6 +112,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... @@ -66,6 +221,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... @@ -98,6 +330,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... diff --git a/required/latex-lab/testfiles-block/blocks-trivlist-01.luatex.tlg b/required/latex-lab/testfiles-block/blocks-trivlist-01.luatex.tlg index 907158ea8..2a0da75fb 100644 --- a/required/latex-lab/testfiles-block/blocks-trivlist-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-trivlist-01.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -112,20 +214,121 @@ Package tagpdf Info: closing structure 6 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 19 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 19 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 18 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -225,20 +428,121 @@ Package tagpdf Info: closing structure 17 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 31 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 30 tagged /section [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -335,20 +639,121 @@ Package tagpdf Info: closing structure 29 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 43 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 43 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 42 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-trivlist-01.tlg b/required/latex-lab/testfiles-block/blocks-trivlist-01.tlg index 07c7a779b..113444eb2 100644 --- a/required/latex-lab/testfiles-block/blocks-trivlist-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-trivlist-01.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -112,20 +214,121 @@ Package tagpdf Info: closing structure 5 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 18 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 18 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 17 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -225,20 +428,121 @@ Package tagpdf Info: closing structure 16 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 30 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 30 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 29 tagged /section [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -335,20 +639,121 @@ Package tagpdf Info: closing structure 28 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 42 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 42 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 41 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-trivlist-02.luatex.tlg b/required/latex-lab/testfiles-block/blocks-trivlist-02.luatex.tlg index e2ef35860..14d7b62c5 100644 --- a/required/latex-lab/testfiles-block/blocks-trivlist-02.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-trivlist-02.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-trivlist-02.tlg b/required/latex-lab/testfiles-block/blocks-trivlist-02.tlg index d34f9f040..f26118a58 100644 --- a/required/latex-lab/testfiles-block/blocks-trivlist-02.tlg +++ b/required/latex-lab/testfiles-block/blocks-trivlist-02.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. -(tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/blocks-verbatim-01.luatex.tlg b/required/latex-lab/testfiles-block/blocks-verbatim-01.luatex.tlg index 0895767b4..04e9f6094 100644 --- a/required/latex-lab/testfiles-block/blocks-verbatim-01.luatex.tlg +++ b/required/latex-lab/testfiles-block/blocks-verbatim-01.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 8 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 7 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -116,13 +218,54 @@ Package tagpdf Info: closing structure 15 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 21 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -846,7 +989,7 @@ Package tagpdf Info: closing structure 6 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~65 structure objects -(tagpdf) with ~32 'MC' leaf nodes. +(tagpdf) with ~33 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/blocks-verbatim-01.tlg b/required/latex-lab/testfiles-block/blocks-verbatim-01.tlg index 6775a4ddd..83ac84cc5 100644 --- a/required/latex-lab/testfiles-block/blocks-verbatim-01.tlg +++ b/required/latex-lab/testfiles-block/blocks-verbatim-01.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 7 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 6 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -116,13 +218,54 @@ Package tagpdf Info: closing structure 14 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 20 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -455,7 +598,7 @@ Package tagpdf Info: closing structure 64 tagged /text-block Package tagpdf Info: closing structure 59 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {24} +> {25} > {58}. Completed box being shipped out [2] \vbox(633.0+0.0)x407.0 @@ -472,13 +615,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,31,-1,} -...\marks4{b+,31,-1,} +...\marks4{b-,32,-1,} +...\marks4{b+,32,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,31,19,} -...\marks4{e+,31,19,} +...\marks4{e-,32,19,} +...\marks4{e+,32,19,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -486,7 +629,7 @@ Completed box being shipped out [2] ...\hbox(0.0+0.0)x0.0 ...\glue(\topskip) 3.1128 ...\hbox(6.8872+1.94397)x345.0, glue set 145.82275fil -....\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 V @@ -538,8 +681,8 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,27,60,text-block,,,} -...\marks4{b+,27,60,text-block,,,} +...\marks4{b-,28,60,text-block,,,} +...\marks4{b+,28,60,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 2.55786 ...\hbox(7.49817+2.49939)x345.0, glue set 223.05756fil @@ -639,15 +782,15 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,27,60,} -...\marks4{e+,27,60,} +...\marks4{e-,28,60,} +...\marks4{e+,28,60,} ...\penalty -51 ...\glue 8.0 plus 3.0 minus 4.0 ...\glue(\parskip) 0.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.27522 ...\hbox(2.7808+0.0)x345.0, glue set 334.37762fil -....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/codeline <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmtt/m/n/5 t @@ -659,16 +802,16 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,28,62,codeline,,,} -...\marks4{b+,28,62,codeline,,,} -...\marks4{e-,28,62,} -...\marks4{e+,28,62,} +...\marks4{b-,29,62,codeline,,,} +...\marks4{b+,29,62,codeline,,,} +...\marks4{e-,29,62,} +...\marks4{e+,29,62,} ...\penalty 0 ...\glue(\parskip) 0.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.2192 ...\hbox(2.7808+0.0)x345.0, glue set 334.37762fil -....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/codeline <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmtt/m/n/5 t @@ -680,10 +823,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,29,63,codeline,,,} -...\marks4{b+,29,63,codeline,,,} -...\marks4{e-,29,63,} -...\marks4{e+,29,63,} +...\marks4{b-,30,63,codeline,,,} +...\marks4{b+,30,63,codeline,,,} +...\marks4{e-,30,63,} +...\marks4{e+,30,63,} ...\penalty 0 ...\penalty -51 ...\glue 8.0 plus 2.0 minus 4.0 @@ -691,7 +834,7 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+0.0)x345.0, glue set 264.96399fil -....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 M ....\T1/cmr/m/n/10 o @@ -714,8 +857,8 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,30,64,text-block,,,} -...\marks4{b+,30,64,text-block,,,} +...\marks4{b-,31,64,text-block,,,} +...\marks4{b+,31,64,text-block,,,} ...\penalty 300 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+1.94397)x345.0, glue set 181.56769fil @@ -761,8 +904,8 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,30,64,} -...\marks4{e+,30,64,} +...\marks4{e-,31,64,} +...\marks4{e+,31,64,} ...\kern -1.94397 ...\hbox(0.0+1.94397)x0.0 ...\glue -1.94397 @@ -771,8 +914,8 @@ Completed box being shipped out [2] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,32,-1,} -..\marks4{b+,32,-1,} +..\marks4{b-,33,-1,} +..\marks4{b+,33,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -780,8 +923,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,32,19,} -..\marks4{e+,32,19,} +..\marks4{e-,33,19,} +..\marks4{e+,33,19,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -793,7 +936,7 @@ Package tagpdf Info: closing structure 5 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~64 structure objects -(tagpdf) with ~32 'MC' leaf nodes. +(tagpdf) with ~33 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.luatex.tlg b/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.luatex.tlg index 8d0b0f216..3a846e16f 100644 --- a/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.luatex.tlg +++ b/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.luatex.tlg @@ -2,8 +2,163 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -76,6 +231,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'quote' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'quote-1' of type 'block' on line ... @@ -94,6 +326,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'verbatim' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |\NoValue |\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'verbatim-1' of type 'block' on line ... @@ -116,6 +425,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -296,6 +682,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'description' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -435,6 +898,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... .\glue(\rightskip) 0.0 [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -459,6 +999,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -505,6 +1122,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -530,6 +1224,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -554,6 +1325,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -583,6 +1431,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... @@ -607,8 +1532,162 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [6] [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -734,6 +1813,83 @@ Overfull \hbox (3.2495pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... diff --git a/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.tlg b/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.tlg index 9deb4a184..b73356b92 100644 --- a/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.tlg +++ b/required/latex-lab/testfiles-block/gallery-III-with-sec-tagging-off.tlg @@ -2,8 +2,163 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. [Template] ==> Using instance 'section' of type 'heading' on line ... [Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -76,6 +231,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'quote' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'quote-1' of type 'block' on line ... @@ -94,6 +326,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'verbatim' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: |\NoValue |\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'verbatim-1' of type 'block' on line ... @@ -116,6 +425,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -296,6 +682,83 @@ Don't change this file in any respect. [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'description' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -430,6 +893,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... .\glue(\rightskip) 0.0 [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -454,6 +994,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -500,6 +1117,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -525,6 +1219,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -549,6 +1320,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -578,6 +1426,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'center' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-display-1' of type 'block' on line ... @@ -602,8 +1527,162 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [6] [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'subsubsection' of type 'heading' on line ... [Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... @@ -729,6 +1808,83 @@ Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [Blocks] ==> __kernel_displayblock_end: [Template] ==> Using instance 'subsection' of type 'heading' on line ... [Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> opening mc for 'punct' +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> opening mc for separator +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{Root}{StructTreeRoot}}. [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | [Template] ==> Using instance 'std-list-1' of type 'block' on line ... diff --git a/required/latex-lab/testfiles-block/gallery-III-with-sec.luatex.tlg b/required/latex-lab/testfiles-block/gallery-III-with-sec.luatex.tlg index 42fc47a87..0ab670719 100644 --- a/required/latex-lab/testfiles-block/gallery-III-with-sec.luatex.tlg +++ b/required/latex-lab/testfiles-block/gallery-III-with-sec.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 13 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 13 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 12 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -75,20 +177,128 @@ Package tagpdf Info: closing structure 20 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 24 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 24 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 23 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -396,20 +606,128 @@ Package tagpdf Info: closing structure 22 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 66 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 66 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 65 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -497,20 +815,128 @@ Package tagpdf Info: closing structure 64 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 79 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 79 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 78 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -625,20 +1051,128 @@ Package tagpdf Info: closing structure 77 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 95 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 95 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 94 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -1392,20 +1926,128 @@ Package tagpdf Info: closing structure 93 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 197 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 197 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 196 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1779,20 +2421,135 @@ Package tagpdf Info: closing structure 231 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 235 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 235 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 234 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1926,20 +2683,135 @@ Package tagpdf Info: closing structure 233 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 256 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 256 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 255 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2152,20 +3024,135 @@ Package tagpdf Info: closing structure 254 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 287 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 287 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 286 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2294,20 +3281,135 @@ Package tagpdf Info: closing structure 285 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 305 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 305 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 304 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2435,20 +3537,128 @@ Package tagpdf Info: closing structure 195 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 324 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 324 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 323 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2603,20 +3813,135 @@ Package tagpdf Info: closing structure 344 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 348 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 348 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 347 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2735,20 +4060,128 @@ Package tagpdf Info: closing structure 322 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 361 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 361 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 360 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2767,20 +4200,135 @@ Package tagpdf Info: closing structure 362 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 366 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 366 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 365 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/gallery-III-with-sec.tlg b/required/latex-lab/testfiles-block/gallery-III-with-sec.tlg index 49ef691c5..a5d348a71 100644 --- a/required/latex-lab/testfiles-block/gallery-III-with-sec.tlg +++ b/required/latex-lab/testfiles-block/gallery-III-with-sec.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 12 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 12 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 11 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -75,20 +177,128 @@ Package tagpdf Info: closing structure 19 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 23 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 23 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 22 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -388,20 +598,128 @@ Package tagpdf Info: closing structure 21 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 65 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 65 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 64 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -489,20 +807,128 @@ Package tagpdf Info: closing structure 63 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 78 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 78 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 77 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -617,20 +1043,128 @@ Package tagpdf Info: closing structure 76 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 94 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 94 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 93 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -841,7 +1375,7 @@ Package tagpdf Info: Parent-Child 'LBody' --> 'L'. (tagpdf) Relation is 1 (='0..n') on line ... The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {22} +> {24} > {51}. [2] [Template] ==> Using instance 'itemize-2' of type 'list' on line ... @@ -1368,20 +1902,128 @@ Package tagpdf Info: closing structure 92 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 196 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 196 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 195 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1568,7 +2210,7 @@ Package tagpdf Info: closing structure 220 tagged /text-block Package tagpdf Info: closing structure 219 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {53} +> {58} > {106}. [3] Package tagpdf Info: Checking Parent-Child 'latex:itembody' --> 'latex:semantic-para' @@ -1607,7 +2249,7 @@ Package tagpdf Info: closing structure 224 tagged /semantic-para Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [][][]\T1/cmr/m/n/10 The PDF tag set sup-ports that nat-u-rally for struc-tures like lists but (strangely \hbox(7.49817+2.49939)x345.0, glue set - 1.0 -.\write1{\new@label@record{mcid-107}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{107}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-113}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{113}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-block <> BDC} .\hbox(0.0+0.0)x15.0 .\T1/cmr/m/n/10 T @@ -1744,20 +2386,135 @@ Package tagpdf Info: closing structure 230 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 234 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 234 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 233 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1891,20 +2648,135 @@ Package tagpdf Info: closing structure 232 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 255 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 255 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 254 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2117,20 +2989,135 @@ Package tagpdf Info: closing structure 253 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 286 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 286 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 285 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2155,7 +3142,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'L'. (tagpdf) Relation is 1 (='0..n') on line ... The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {99} +> {105} > {215}. [4] [Template] ==> Using instance 'itemize-1' of type 'list' on line ... @@ -2251,20 +3238,135 @@ Package tagpdf Info: closing structure 284 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 304 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 304 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 303 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2392,20 +3494,128 @@ Package tagpdf Info: closing structure 194 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 323 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 323 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 322 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2560,20 +3770,135 @@ Package tagpdf Info: closing structure 343 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 347 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 347 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 346 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2606,7 +3931,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. Package tagpdf Info: closing structure 351 tagged /text-block The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {133} +> {141} > {283}. [5] [Template] ==> Using instance 'center' of type 'para' on line ... @@ -2671,7 +3996,7 @@ Package tagpdf Info: closing structure 357 tagged /text-block Package tagpdf Info: closing structure 356 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {164} +> {175} > {344}. [6] [Template] ==> Using instance 'subsection' of type 'heading' on line ... @@ -2680,20 +4005,128 @@ Package tagpdf Info: closing structure 321 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 360 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 360 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 359 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2712,20 +4145,135 @@ Package tagpdf Info: closing structure 361 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 365 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 365 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 364 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/gallery-III.luatex.tlg b/required/latex-lab/testfiles-block/gallery-III.luatex.tlg index 42fc47a87..0ab670719 100644 --- a/required/latex-lab/testfiles-block/gallery-III.luatex.tlg +++ b/required/latex-lab/testfiles-block/gallery-III.luatex.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 13 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 13 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 12 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -75,20 +177,128 @@ Package tagpdf Info: closing structure 20 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 24 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 24 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 23 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -396,20 +606,128 @@ Package tagpdf Info: closing structure 22 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 66 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 66 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 65 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -497,20 +815,128 @@ Package tagpdf Info: closing structure 64 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 79 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 79 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 78 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -625,20 +1051,128 @@ Package tagpdf Info: closing structure 77 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 95 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 95 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 94 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -1392,20 +1926,128 @@ Package tagpdf Info: closing structure 93 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 197 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 197 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 196 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1779,20 +2421,135 @@ Package tagpdf Info: closing structure 231 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 235 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 235 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 234 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1926,20 +2683,135 @@ Package tagpdf Info: closing structure 233 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 256 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 256 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 255 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2152,20 +3024,135 @@ Package tagpdf Info: closing structure 254 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 287 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 287 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 286 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2294,20 +3281,135 @@ Package tagpdf Info: closing structure 285 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 305 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 305 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 304 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2435,20 +3537,128 @@ Package tagpdf Info: closing structure 195 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 324 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 324 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 323 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2603,20 +3813,135 @@ Package tagpdf Info: closing structure 344 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 348 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 348 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 347 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2735,20 +4060,128 @@ Package tagpdf Info: closing structure 322 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 361 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 361 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 360 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2767,20 +4200,135 @@ Package tagpdf Info: closing structure 362 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 366 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 366 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 365 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/gallery-III.tlg b/required/latex-lab/testfiles-block/gallery-III.tlg index 49ef691c5..a5d348a71 100644 --- a/required/latex-lab/testfiles-block/gallery-III.tlg +++ b/required/latex-lab/testfiles-block/gallery-III.tlg @@ -4,20 +4,122 @@ Don't change this file in any respect. Package tagpdf Info: Checking Parent-Child 'pdf2:Document' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'section' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +[Template] ==> Using instance 'section' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 12 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 12 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 11 tagged /section Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -75,20 +177,128 @@ Package tagpdf Info: closing structure 19 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 23 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 23 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 22 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -388,20 +598,128 @@ Package tagpdf Info: closing structure 21 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 65 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 65 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 64 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -489,20 +807,128 @@ Package tagpdf Info: closing structure 63 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 78 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 78 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 77 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -617,20 +1043,128 @@ Package tagpdf Info: closing structure 76 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 94 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 94 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 93 tagged /subsection [Template] ==> Using instance 'itemize' of type 'blockenv' on line ... [Template] ==> template: 'std; arguments: ||\BooleanFalse |\NoValue |\NoValue | @@ -841,7 +1375,7 @@ Package tagpdf Info: Parent-Child 'LBody' --> 'L'. (tagpdf) Relation is 1 (='0..n') on line ... The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {22} +> {24} > {51}. [2] [Template] ==> Using instance 'itemize-2' of type 'list' on line ... @@ -1368,20 +1902,128 @@ Package tagpdf Info: closing structure 92 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 196 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 196 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 195 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1568,7 +2210,7 @@ Package tagpdf Info: closing structure 220 tagged /text-block Package tagpdf Info: closing structure 219 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {53} +> {58} > {106}. [3] Package tagpdf Info: Checking Parent-Child 'latex:itembody' --> 'latex:semantic-para' @@ -1607,7 +2249,7 @@ Package tagpdf Info: closing structure 224 tagged /semantic-para Overfull \hbox (3.16754pt too wide) in paragraph at lines ... [][][]\T1/cmr/m/n/10 The PDF tag set sup-ports that nat-u-rally for struc-tures like lists but (strangely \hbox(7.49817+2.49939)x345.0, glue set - 1.0 -.\write1{\new@label@record{mcid-107}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{107}{tagmcid}{\__property_code_tagmcid: }}} +.\write1{\new@label@record{mcid-113}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{113}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/text-block <> BDC} .\hbox(0.0+0.0)x15.0 .\T1/cmr/m/n/10 T @@ -1744,20 +2386,135 @@ Package tagpdf Info: closing structure 230 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 234 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 234 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 233 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -1891,20 +2648,135 @@ Package tagpdf Info: closing structure 232 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 255 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 255 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 254 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2117,20 +2989,135 @@ Package tagpdf Info: closing structure 253 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 286 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 286 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 285 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2155,7 +3142,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'L'. (tagpdf) Relation is 1 (='0..n') on line ... The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {99} +> {105} > {215}. [4] [Template] ==> Using instance 'itemize-1' of type 'list' on line ... @@ -2251,20 +3238,135 @@ Package tagpdf Info: closing structure 284 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 304 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 304 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 303 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2392,20 +3494,128 @@ Package tagpdf Info: closing structure 194 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 323 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 323 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 322 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2560,20 +3770,135 @@ Package tagpdf Info: closing structure 343 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 347 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 347 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 346 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2606,7 +3931,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. Package tagpdf Info: closing structure 351 tagged /text-block The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {133} +> {141} > {283}. [5] [Template] ==> Using instance 'center' of type 'para' on line ... @@ -2671,7 +3996,7 @@ Package tagpdf Info: closing structure 357 tagged /text-block Package tagpdf Info: closing structure 356 tagged /semantic-para The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {164} +> {175} > {344}. [6] [Template] ==> Using instance 'subsection' of type 'heading' on line ... @@ -2680,20 +4005,128 @@ Package tagpdf Info: closing structure 321 tagged /Sect Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H2'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H2' --> 'Span'. +[Template] ==> Using instance 'subsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H2' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 360 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 360 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H2' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 359 tagged /subsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. @@ -2712,20 +4145,135 @@ Package tagpdf Info: closing structure 361 tagged /semantic-para Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'pdf2:Sect' Package tagpdf Info: Parent-Child 'Sect' --> 'Sect'. (tagpdf) Relation is 1 (='0..n') on line ... -[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:subsubsection' Package tagpdf Info: Parent-Child 'Sect' --> 'H3'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H3' --> 'Span'. +[Template] ==> Using instance 'subsubsection' of type 'headformat' on line ... +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H3' --> 'Lbl'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +Package tagpdf Info: closing structure 365 tagged /heading-number +[Template] ==> reopening mc after struct 'heading-number' +Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 365 tagged /section-number +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' Package tagpdf Info: Checking Parent-Child 'latex:subsubsection' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H3' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 364 tagged /subsubsection Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Sect' --> 'Part'. diff --git a/required/latex-lab/testfiles-block/tagging-0097.luatex.tlg b/required/latex-lab/testfiles-block/tagging-0097.luatex.tlg index a4168d95b..39afa1b1c 100644 --- a/required/latex-lab/testfiles-block/tagging-0097.luatex.tlg +++ b/required/latex-lab/testfiles-block/tagging-0097.luatex.tlg @@ -126,13 +126,13 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. --> endpe (1) = false Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 22 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'LBody' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... --> endpe (2) = false -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'LBody' --> 'Part'. @@ -168,7 +168,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. --> endpe (4) = false Package tagpdf Info: closing structure 27 tagged /text-block Package tagpdf Info: closing structure 24 tagged /semantic-para -Package tagpdf Info: closing structure 23 tagged /Div +Package tagpdf Info: closing structure 23 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... diff --git a/required/latex-lab/testfiles-block/tagging-0097.tlg b/required/latex-lab/testfiles-block/tagging-0097.tlg index 5830b35ce..6249b2ff4 100644 --- a/required/latex-lab/testfiles-block/tagging-0097.tlg +++ b/required/latex-lab/testfiles-block/tagging-0097.tlg @@ -126,13 +126,13 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. --> endpe (1) = false Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 21 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'LBody' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... --> endpe (2) = false -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'LBody' --> 'Part'. @@ -168,7 +168,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. --> endpe (4) = false Package tagpdf Info: closing structure 26 tagged /text-block Package tagpdf Info: closing structure 23 tagged /semantic-para -Package tagpdf Info: closing structure 22 tagged /Div +Package tagpdf Info: closing structure 22 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... diff --git a/required/latex-lab/testfiles-block/tagging-0767.luatex.tlg b/required/latex-lab/testfiles-block/tagging-0767.luatex.tlg index f77f01785..e926f156e 100644 --- a/required/latex-lab/testfiles-block/tagging-0767.luatex.tlg +++ b/required/latex-lab/testfiles-block/tagging-0767.luatex.tlg @@ -16,7 +16,7 @@ toplevel ---> \listparindent = 0.0pt [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -28,14 +28,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -47,40 +47,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end theorem ---> \parskip = 0.0pt plus 1.0pt @@ -164,7 +165,7 @@ toplevel ---> \listparindent = 22.0pt [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -176,14 +177,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -195,40 +196,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end theorem ---> \parskip = 0.0pt plus 1.0pt diff --git a/required/latex-lab/testfiles-block/tagging-0767.tlg b/required/latex-lab/testfiles-block/tagging-0767.tlg index 385e9f61f..b502f5400 100644 --- a/required/latex-lab/testfiles-block/tagging-0767.tlg +++ b/required/latex-lab/testfiles-block/tagging-0767.tlg @@ -16,7 +16,7 @@ toplevel ---> \listparindent = 0.0pt [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -28,14 +28,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -47,40 +47,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end theorem ---> \parskip = 0.0pt plus 1.0pt @@ -164,7 +165,7 @@ toplevel ---> \listparindent = 22.0pt [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -176,14 +177,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -195,40 +196,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end theorem ---> \parskip = 0.0pt plus 1.0pt diff --git a/required/latex-lab/testfiles-block/tagging-1232.tlg b/required/latex-lab/testfiles-block/tagging-1232.tlg index fc0d8587c..44f6d2bfa 100644 --- a/required/latex-lab/testfiles-block/tagging-1232.tlg +++ b/required/latex-lab/testfiles-block/tagging-1232.tlg @@ -32,7 +32,7 @@ Perhaps a misspelling or the current template instance uses special keys. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -44,7 +44,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -61,7 +61,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'note' data [Template] ==> --------------------After note---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -74,23 +74,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [head] ---> punctuation '?' added [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-block/tagging-1362.luatex.tlg b/required/latex-lab/testfiles-block/tagging-1362.luatex.tlg index 380b386bd..0ccad6741 100644 --- a/required/latex-lab/testfiles-block/tagging-1362.luatex.tlg +++ b/required/latex-lab/testfiles-block/tagging-1362.luatex.tlg @@ -2,14 +2,14 @@ This is a generated file for the LaTeX2e validation system. Don't change this file in any respect. The instance 'myplain' of type 'thmstyle' has values: > separator => \ -> separator-1 => \ -> separator-2 => \ +> separator-a => \ +> separator-b => \ > punct => . > caption-placement => unchained > caption-unbreakable => false > before-hspace => 0pt > after-hspace => 5pt plus 1pt minus 1pt -> order => title,separator-1,number,separator-2,note,punct +> order => title,separator-a,number,separator-b,note,punct > caption-decls => \bfseries > title-decls => > number-tag => \UseStructureName {block/theorem-like/label} diff --git a/required/latex-lab/testfiles-block/tagging-1362.tlg b/required/latex-lab/testfiles-block/tagging-1362.tlg index d30600578..63937d0f7 100644 --- a/required/latex-lab/testfiles-block/tagging-1362.tlg +++ b/required/latex-lab/testfiles-block/tagging-1362.tlg @@ -2,14 +2,14 @@ This is a generated file for the LaTeX2e validation system. Don't change this file in any respect. The instance 'myplain' of type 'thmstyle' has values: > separator => \ -> separator-1 => \ -> separator-2 => \ +> separator-a => \ +> separator-b => \ > punct => . > caption-placement => unchained > caption-unbreakable => false > before-hspace => 0pt > after-hspace => 5pt plus 1pt minus 1pt -> order => title,separator-1,number,separator-2,note,punct +> order => title,separator-a,number,separator-b,note,punct > caption-decls => \bfseries > title-decls => > number-tag => \UseStructureName {block/theorem-like/label} diff --git a/required/latex-lab/testfiles-block/tagging-1402+1415.luatex.tlg b/required/latex-lab/testfiles-block/tagging-1402+1415.luatex.tlg index d876d6bd7..01e0fd43c 100644 --- a/required/latex-lab/testfiles-block/tagging-1402+1415.luatex.tlg +++ b/required/latex-lab/testfiles-block/tagging-1402+1415.luatex.tlg @@ -30,7 +30,7 @@ Should not produce tagging errors [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -42,14 +42,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -61,40 +61,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... @@ -123,7 +124,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -135,7 +136,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -146,29 +147,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -205,7 +207,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -217,7 +219,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -228,29 +230,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -271,7 +274,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -283,7 +286,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -294,29 +297,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -337,7 +341,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -349,7 +353,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -360,29 +364,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -417,7 +422,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -429,7 +434,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -440,29 +445,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-block/tagging-1402+1415.tlg b/required/latex-lab/testfiles-block/tagging-1402+1415.tlg index 240d763b7..728569ba2 100644 --- a/required/latex-lab/testfiles-block/tagging-1402+1415.tlg +++ b/required/latex-lab/testfiles-block/tagging-1402+1415.tlg @@ -30,7 +30,7 @@ Should not produce tagging errors [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -42,14 +42,14 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -61,40 +61,41 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... @@ -123,7 +124,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -135,7 +136,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -146,29 +147,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -205,7 +207,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -217,7 +219,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -228,29 +230,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -271,7 +274,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -283,7 +286,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -294,29 +297,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -337,7 +341,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -349,7 +353,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -360,29 +364,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... @@ -417,7 +422,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -429,7 +434,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -440,29 +445,30 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:captionedtext:proof end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-firstaid/firstaid-amsart-02.tlg b/required/latex-lab/testfiles-firstaid/firstaid-amsart-02.tlg index 010c92563..9c553cffc 100644 --- a/required/latex-lab/testfiles-firstaid/firstaid-amsart-02.tlg +++ b/required/latex-lab/testfiles-firstaid/firstaid-amsart-02.tlg @@ -22,12 +22,123 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \partname -[head] 3: number = \__head_number_format:n {part} +[head] 3: number = \theheading [head] 4: title = Some part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'raggedright' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> opening mc for 'prefix' +[Template] ==> typeset 'prefix' data +[Template] ==> --------------------After prefix---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] part: *{Some unnumbered part} @@ -50,13 +161,51 @@ Don't change this file in any respect. [Template] ==> Using instance 'part' of type 'headformat' on line ... [head] --------- Headformat instance arguments: [head] 1: keys = -[head] 2: prefix = \partname -[head] 3: number = +[head] 2: prefix = \NoValue +[head] 3: number = \NoValue [head] 4: title = Some unnumbered part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'raggedright' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] specialsection: {Some special section} @@ -80,12 +229,117 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some special section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] section: {Some section} @@ -109,12 +363,117 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsection: {Some subsection} @@ -138,11 +497,100 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsection} +[head] 3: number = \theheading [head] 4: title = Some subsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsubsection: {Some subsubsection} @@ -166,11 +614,105 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsubsection} +[head] 3: number = \theheading [head] 4: title = Some subsubsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] paragraph: {Some paragraph!} @@ -194,11 +736,79 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some paragraph! [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' not added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subparagraph: {Some subparagraph} @@ -222,10 +832,81 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some subparagraph [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [1] [2] diff --git a/required/latex-lab/testfiles-firstaid/firstaid-amsbook-02.tlg b/required/latex-lab/testfiles-firstaid/firstaid-amsbook-02.tlg index d650a97b7..8eba3f47f 100644 --- a/required/latex-lab/testfiles-firstaid/firstaid-amsbook-02.tlg +++ b/required/latex-lab/testfiles-firstaid/firstaid-amsbook-02.tlg @@ -22,12 +22,103 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \partname -[head] 3: number = \__head_number_format:n {part} +[head] 3: number = \theheading [head] 4: title = Some part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> opening mc for 'prefix' +[Template] ==> typeset 'prefix' data +[Template] ==> --------------------After prefix---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'number' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [1 ] @@ -53,13 +144,69 @@ Don't change this file in any respect. [Template] ==> Using instance 'part' of type 'headformat' on line ... [head] --------- Headformat instance arguments: [head] 1: keys = -[head] 2: prefix = \partname -[head] 3: number = +[head] 2: prefix = \NoValue +[head] 3: number = \NoValue [head] 4: title = Some unnumbered part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [3 ] @@ -86,12 +233,108 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \MakeUppercase {\chaptername } -[head] 3: number = \__head_number_format:n {chapter} +[head] 3: number = \theheading [head] 4: title = Some chapter [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> opening mc for 'prefix' +[Template] ==> typeset 'prefix' data +[Template] ==> --------------------After prefix---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'number' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [5 ] @@ -117,13 +360,72 @@ Don't change this file in any respect. [Template] ==> Using instance 'chapter' of type 'headformat' on line ... [head] --------- Headformat instance arguments: [head] 1: keys = -[head] 2: prefix = \MakeUppercase {\chaptername } -[head] 3: number = +[head] 2: prefix = \NoValue +[head] 3: number = \NoValue [head] 4: title = Some unnumbered chapter [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{chapter}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [7 ] @@ -149,13 +451,125 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some special section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> tertiary context is 'large' [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] section: {Some section} @@ -179,12 +593,124 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsection: {Some subsection} @@ -208,11 +734,105 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsection} +[head] 3: number = \theheading [head] 4: title = Some subsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsubsection: {Some subsubsection} @@ -236,11 +856,110 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsubsection} +[head] 3: number = \theheading [head] 4: title = Some subsubsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] paragraph: {Some paragraph!} @@ -264,11 +983,82 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some paragraph! [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' not added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subparagraph: {Some subparagraph} @@ -292,9 +1082,84 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some subparagraph [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H6}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H6}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H6}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [8] diff --git a/required/latex-lab/testfiles-firstaid/firstaid-amsbook.tpf b/required/latex-lab/testfiles-firstaid/firstaid-amsbook.tpf index a3f726d57..88bbcf5f1 100644 --- a/required/latex-lab/testfiles-firstaid/firstaid-amsbook.tpf +++ b/required/latex-lab/testfiles-firstaid/firstaid-amsbook.tpf @@ -65,20 +65,25 @@ endobj /ExtGState 1 0 R >> endobj -45 0 obj +44 0 obj << -/Length 283 +/Length 340 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT -/F66 17.2154 Tf 277.594 519.039 Td [(P)30(art)]TJ/F64 9.9626 Tf( )Tj/F66 17.2154 Tf 42.366 0 Td [(1.)]TJ +/F66 17.2154 Tf 277.594 519.039 Td [(P)30(art)]TJ/F64 9.9626 Tf [-621( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F66 17.2154 Tf 319.96 519.039 Td [(1.)]TJ +ET +EMC +/part <> BDC BT /F67 20.6625 Tf 245.796 475.203 Td [(In)29(tro)-29(duction)]TJ ET @@ -87,23 +92,23 @@ EMC EMC endstream endobj -42 0 obj +41 0 obj << /Type /Page -/Contents 45 0 R -/Resources 44 0 R +/Contents 44 0 R +/Resources 43 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 /Parent 34 0 R >> endobj -44 0 obj +43 0 obj << /ExtGState 1 0 R -/Font << /F66 46 0 R /F64 32 0 R /F67 47 0 R >> +/Font << /F66 45 0 R /F64 32 0 R /F67 46 0 R >> >> endobj -50 0 obj +49 0 obj << /Length 49 >> @@ -115,55 +120,65 @@ EMC EMC endstream endobj -49 0 obj +48 0 obj << /Type /Page -/Contents 50 0 R -/Resources 48 0 R +/Contents 49 0 R +/Resources 47 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 /Parent 34 0 R >> endobj -48 0 obj +47 0 obj << /ExtGState 1 0 R >> endobj -64 0 obj +62 0 obj << -/Length 1051 +/Length 1192 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F45 9.9626 Tf 276.742 622.152 Td [(CHAPTER)]TJ/F64 9.9626 Tf( )Tj/F45 9.9626 Tf 53.536 0 Td [(1)]TJ +/F45 9.9626 Tf 276.742 622.152 Td [(CHAPTER)]TJ/F64 9.9626 Tf [-333( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F45 9.9626 Tf 330.278 622.152 Td [(1)]TJ +ET +EMC +/chapter <> BDC BT /F63 14.3462 Tf 254.471 586.286 Td [(A)]TJ/F64 9.9626 Tf( )Tj/F63 14.3462 Tf 17.169 0 Td [(long)]TJ/F64 9.9626 Tf( )Tj/F63 14.3462 Tf 34.184 0 Td [(c)31(hapter)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 552.413 Td [(Some)]TJ/F64 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(w)28(ords)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F68 9.9626 Tf 262.742 532.09 Td [(1.)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F64 9.9626 Tf 277.378 532.09 Td [( )]TJ +ET +EMC +/section <> BDC BT /F68 9.9626 Tf 277.378 532.09 Td [(A)]TJ/F64 9.9626 Tf( )Tj/F68 9.9626 Tf 12.477 0 Td [(long)]TJ/F64 9.9626 Tf( )Tj/F68 9.9626 Tf 24.818 0 Td [(section)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 514.157 Td [(Some)]TJ/F64 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(other)]TJ/F64 9.9626 Tf( )Tj/F45 9.9626 Tf 26.035 0 Td [(w)28(ords)]TJ ET @@ -175,23 +190,23 @@ ET EMC endstream endobj -54 0 obj +52 0 obj << /Type /Page -/Contents 64 0 R -/Resources 63 0 R +/Contents 62 0 R +/Resources 61 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 /Parent 34 0 R >> endobj -63 0 obj +61 0 obj << /ExtGState 1 0 R -/Font << /F45 65 0 R /F64 32 0 R /F63 31 0 R /F68 66 0 R /F69 67 0 R >> +/Font << /F45 63 0 R /F64 32 0 R /F63 31 0 R /F68 64 0 R /F69 65 0 R >> >> endobj -72 0 obj +70 0 obj << /Length 531 >> @@ -211,23 +226,23 @@ EMC EMC endstream endobj -70 0 obj +68 0 obj << /Type /Page -/Contents 72 0 R -/Resources 71 0 R +/Contents 70 0 R +/Resources 69 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 /Parent 34 0 R >> endobj -71 0 obj +69 0 obj << /ExtGState 1 0 R -/Font << /F69 67 0 R /F64 32 0 R /F45 65 0 R >> +/Font << /F69 65 0 R /F64 32 0 R /F45 63 0 R >> >> endobj -76 0 obj +74 0 obj << /Type /Metadata /Subtype /XML /Length 12420 @@ -483,7 +498,7 @@ stream endstream endobj -78 0 obj +76 0 obj << /Length 465 >> @@ -503,23 +518,23 @@ EMC EMC endstream endobj -75 0 obj +73 0 obj << /Type /Page -/Contents 78 0 R -/Resources 77 0 R +/Contents 76 0 R +/Resources 75 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 79 0 R +/Parent 77 0 R >> endobj -77 0 obj +75 0 obj << /ExtGState 1 0 R -/Font << /F69 67 0 R /F64 32 0 R /F45 65 0 R >> +/Font << /F69 65 0 R /F64 32 0 R /F45 63 0 R >> >> endobj -80 0 obj +78 0 obj << /Subtype /text#2Fhtml/Type /EmbeddedFile /Params< >> /Length 269 @@ -535,10 +550,10 @@ div[data-pdf-se-type=LBody] > div:first-child > p:first-child { endstream endobj -81 0 obj -<< /Type /Filespec /AFRelationship /Supplement /F (latex-list-css.html) /UF /EF<> >> +79 0 obj +<< /Type /Filespec /AFRelationship /Supplement /F (latex-list-css.html) /UF /EF<> >> endobj -82 0 obj +80 0 obj << /Subtype /text#2Fhtml/Type /EmbeddedFile /Params< >> /Length 1572 @@ -588,8 +603,8 @@ position:relative; left:-2em; endstream endobj -83 0 obj -<< /Type /Filespec /AFRelationship /Supplement /F (latex-align-css.html) /UF /EF<> >> +81 0 obj +<< /Type /Filespec /AFRelationship /Supplement /F (latex-align-css.html) /UF /EF<> >> endobj 1 0 obj << /opacity1 <> >> @@ -603,32 +618,32 @@ endobj 4 0 obj << >> endobj -84 0 obj -[ 81 0 R 83 0 R ] +82 0 obj +[ 79 0 R 81 0 R ] endobj -85 0 obj +83 0 obj << /Marked true >> endobj 6 0 obj << /Nums [0 [ 25 0 R 28 0 R ] 1 [ ] -2 [ 41 0 R 43 0 R ] +2 [ 40 0 R 42 0 R 40 0 R ] 3 [ ] -4 [ 53 0 R 55 0 R 57 0 R 60 0 R 59 0 R 62 0 R ] -5 [ 69 0 R ] -6 [ 74 0 R ] +4 [ 51 0 R 53 0 R 51 0 R 55 0 R 58 0 R 57 0 R 57 0 R 60 0 R ] +5 [ 67 0 R ] +6 [ 72 0 R ] ] >> endobj -86 0 obj -<< /Limits [(ID.002) (ID.028)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 27 0 R (ID.008) 28 0 R (ID.009) 35 0 R (ID.010) 39 0 R (ID.011) 40 0 R (ID.012) 41 0 R (ID.013) 43 0 R (ID.014) 51 0 R (ID.015) 52 0 R (ID.016) 53 0 R (ID.017) 55 0 R (ID.018) 56 0 R (ID.019) 57 0 R (ID.020) 58 0 R (ID.021) 59 0 R (ID.022) 60 0 R (ID.023) 61 0 R (ID.024) 62 0 R (ID.025) 68 0 R (ID.026) 69 0 R (ID.027) 73 0 R (ID.028) 74 0 R ] >> +84 0 obj +<< /Limits [(ID.002) (ID.026)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 27 0 R (ID.008) 28 0 R (ID.009) 35 0 R (ID.010) 39 0 R (ID.011) 40 0 R (ID.012) 42 0 R (ID.013) 50 0 R (ID.014) 51 0 R (ID.015) 53 0 R (ID.016) 54 0 R (ID.017) 55 0 R (ID.018) 56 0 R (ID.019) 57 0 R (ID.020) 58 0 R (ID.021) 59 0 R (ID.022) 60 0 R (ID.023) 66 0 R (ID.024) 67 0 R (ID.025) 71 0 R (ID.026) 72 0 R ] >> endobj -87 0 obj -<< /Kids [86 0 R] >> +85 0 obj +<< /Kids [84 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -88 0 obj +86 0 obj << /center <> /justify <> /TH-both <> @@ -646,7 +661,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -688,90 +703,84 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 21 0 R /ID (ID.009) >> endobj 39 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [40 0 R 51 0 R] /ID (ID.010) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [40 0 R 50 0 R] /ID (ID.010) >> endobj 40 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 39 0 R /K [41 0 R 43 0 R] /ID (ID.011) >> +<< /Type /StructElem /T /S /part /NS 15 0 R /P 39 0 R /K [<> 42 0 R <>] /ID (ID.011) >> endobj -41 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 40 0 R /K <> /ID (ID.012) >> +42 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 40 0 R /K <> /ID (ID.012) >> endobj -43 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 40 0 R /K <> /ID (ID.013) >> +50 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 39 0 R /K [51 0 R 54 0 R 56 0 R] /ID (ID.013) >> endobj 51 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 39 0 R /K [52 0 R 56 0 R 58 0 R] /ID (ID.014) >> -endobj -52 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 51 0 R /K [53 0 R 55 0 R] /ID (ID.015) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 50 0 R /K [<> 53 0 R <>] /ID (ID.014) >> endobj 53 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 52 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 51 0 R /K <> /ID (ID.015) >> +endobj +54 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 50 0 R /K 55 0 R /ID (ID.016) >> endobj 55 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 52 0 R /K <> /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 54 0 R /K <> /ID (ID.017) >> endobj 56 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 51 0 R /K 57 0 R /ID (ID.018) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 50 0 R /K [57 0 R 59 0 R 66 0 R 71 0 R] /ID (ID.018) >> endobj 57 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 56 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 56 0 R /K [58 0 R <> <>] /ID (ID.019) >> endobj 58 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 51 0 R /K [59 0 R 61 0 R 68 0 R 73 0 R] /ID (ID.020) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 57 0 R /K <> /ID (ID.020) >> endobj 59 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 58 0 R /K [60 0 R <>] /ID (ID.021) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 56 0 R /K 60 0 R /ID (ID.021) >> endobj 60 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 59 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 59 0 R /K <> /ID (ID.022) >> endobj -61 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 58 0 R /K 62 0 R /ID (ID.023) >> -endobj -62 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.024) >> -endobj -68 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 58 0 R /K 69 0 R /ID (ID.025) >> +66 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 56 0 R /K 67 0 R /ID (ID.023) >> endobj -69 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 68 0 R /K <> /ID (ID.026) >> +67 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 66 0 R /K <> /ID (ID.024) >> endobj -73 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 58 0 R /K 74 0 R /ID (ID.027) >> +71 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 56 0 R /K 72 0 R /ID (ID.025) >> endobj -74 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 73 0 R /K <> /ID (ID.028) >> +72 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 71 0 R /K <> /ID (ID.026) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 87 0 R /ClassMap 88 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 85 0 R /ClassMap 86 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -90 0 obj +88 0 obj [569.3 569.3 569.3 569.3 569.3 323.3 323.3 876.8 876.8 876.8 538.6 876.8 843.1 798.4 815.3 859.9 767.7 736.9 883.7 843.1 412.6 583.2 873.8 706.2 1027.5 843.1 876.8 767.7 876.8 829.2 630.8 815.3] endobj -91 0 obj +89 0 obj [319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1] endobj -92 0 obj +90 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722] endobj -93 0 obj +91 0 obj [388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8 589.7] endobj -94 0 obj +92 0 obj [299.7 539.5 539.5 539.5 539.5 539.5 539.5 539.5 539.5 539.5 539.5 539.5 299.7 299.7 839.2 839.2 839.2 509.5 839.2 814.3 766.8 779.2 826.7 707.7 677.7 847.9 843.4 394.7 557 844.2 647.8 1023.2 843.4 810.1 736.8 810.1 799.3 599.4 750.1 828.8 814.3 1114 814.3 814.3 659.3 299.7 539.5 299.7 659.3 839.2 299.7 539.5 599.4 479.5 599.4 489.1 329.7 539.5 599.4 299.7 329.7 569.4 299.7 899.1 599.4 539.5 599.4 569.4 435.5 425.6 419.6] endobj -95 0 obj +93 0 obj [872.8 714 740.6 647.9 740.6 700.8 528.9 687.7 714 714 978.6 714 714 581.8 264.2 475.9 264.2 581.8 740.6 264.2 475.9 528.9 423 528.9 423 290.7 475.9 528.9 264.2 290.7 502.4 264.2 793.5 528.9 475.9 528.9 502.4 370.1 375.4 370.1 528.9 502.4 687.7 502.4 502.4] endobj -96 0 obj +94 0 obj [333] endobj -97 0 obj +95 0 obj [305.5 366.6 305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -98 0 obj +96 0 obj << /Length1 1144 /Length2 1422 @@ -780,7 +789,7 @@ endobj >> [BINARY STREAM] endobj -99 0 obj +97 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -793,10 +802,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 98 0 R +/FontFile 96 0 R >> endobj -100 0 obj +98 0 obj << /Length1 727 /Length2 12663 @@ -805,7 +814,7 @@ endobj >> [BINARY STREAM] endobj -101 0 obj +99 0 obj << /Type /FontDescriptor /FontName /YRWOFP+SFBX1000 @@ -818,10 +827,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/A/c/e/g/i/l/n/o/one/period/s/t) -/FontFile 100 0 R +/FontFile 98 0 R >> endobj -102 0 obj +100 0 obj << /Length1 727 /Length2 11278 @@ -830,7 +839,7 @@ endobj >> [BINARY STREAM] endobj -103 0 obj +101 0 obj << /Type /FontDescriptor /FontName /GQAJOH+SFBX1440 @@ -843,10 +852,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/A/B/L/T/a/c/comma/e/g/h/i/l/n/o/p/r/t) -/FontFile 102 0 R +/FontFile 100 0 R >> endobj -104 0 obj +102 0 obj << /Length1 727 /Length2 10080 @@ -855,7 +864,7 @@ endobj >> [BINARY STREAM] endobj -105 0 obj +103 0 obj << /Type /FontDescriptor /FontName /EKEPRV+SFBX1728 @@ -868,10 +877,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/P/a/one/period/r/t) -/FontFile 104 0 R +/FontFile 102 0 R >> endobj -106 0 obj +104 0 obj << /Length1 727 /Length2 10303 @@ -880,7 +889,7 @@ endobj >> [BINARY STREAM] endobj -107 0 obj +105 0 obj << /Type /FontDescriptor /FontName /AIYWNM+SFBX2074 @@ -893,10 +902,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/I/c/d/i/n/o/r/t/u) -/FontFile 106 0 R +/FontFile 104 0 R >> endobj -108 0 obj +106 0 obj << /Length1 721 /Length2 15712 @@ -905,7 +914,7 @@ endobj >> [BINARY STREAM] endobj -109 0 obj +107 0 obj << /Type /FontDescriptor /FontName /UJAELG+SFRM0700 @@ -918,10 +927,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/C/E/H/I/N/O/P/R/S/T/five/seven/six) -/FontFile 108 0 R +/FontFile 106 0 R >> endobj -110 0 obj +108 0 obj << /Length1 721 /Length2 11931 @@ -930,7 +939,7 @@ endobj >> [BINARY STREAM] endobj -111 0 obj +109 0 obj << /Type /FontDescriptor /FontName /PHDFMT+SFRM1000 @@ -943,10 +952,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/C/E/H/P/R/S/T/Y/d/e/h/m/n/o/one/r/s/t/w) -/FontFile 110 0 R +/FontFile 108 0 R >> endobj -112 0 obj +110 0 obj << /Length1 721 /Length2 1965 @@ -955,7 +964,7 @@ endobj >> [BINARY STREAM] endobj -113 0 obj +111 0 obj << /Type /FontDescriptor /FontName /JLUCYN+SFRM1440 @@ -968,16 +977,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/M/N/a/e/m/y) -/FontFile 112 0 R +/FontFile 110 0 R >> endobj -89 0 obj +87 0 obj << /Type /Encoding /Differences [44/comma 46/period 49/one 53/five/six/seven 65/A/B/C 69/E 72/H/I 76/L/M/N/O/P 82/R/S/T 89/Y 97/a 99/c/d/e 103/g/h/i 108/l/m/n/o/p 114/r/s/t/u 119/w 121/y] >> endobj -114 0 obj +112 0 obj << /Length 2030 >> @@ -1121,20 +1130,20 @@ end %%EOF endstream endobj -66 0 obj +64 0 obj << /Type /Font /Subtype /Type1 /BaseFont /YRWOFP+SFBX1000 -/FontDescriptor 101 0 R +/FontDescriptor 99 0 R /FirstChar 46 /LastChar 116 -/Widths 91 0 R -/Encoding 89 0 R -/ToUnicode 114 0 R +/Widths 89 0 R +/Encoding 87 0 R +/ToUnicode 112 0 R >> endobj -115 0 obj +113 0 obj << /Length 2030 >> @@ -1283,15 +1292,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /GQAJOH+SFBX1440 -/FontDescriptor 103 0 R +/FontDescriptor 101 0 R /FirstChar 44 /LastChar 116 -/Widths 97 0 R -/Encoding 89 0 R -/ToUnicode 115 0 R +/Widths 95 0 R +/Encoding 87 0 R +/ToUnicode 113 0 R >> endobj -116 0 obj +114 0 obj << /Length 2030 >> @@ -1435,20 +1444,20 @@ end %%EOF endstream endobj -46 0 obj +45 0 obj << /Type /Font /Subtype /Type1 /BaseFont /EKEPRV+SFBX1728 -/FontDescriptor 105 0 R +/FontDescriptor 103 0 R /FirstChar 46 /LastChar 116 -/Widths 94 0 R -/Encoding 89 0 R -/ToUnicode 116 0 R +/Widths 92 0 R +/Encoding 87 0 R +/ToUnicode 114 0 R >> endobj -117 0 obj +115 0 obj << /Length 2030 >> @@ -1592,20 +1601,20 @@ end %%EOF endstream endobj -47 0 obj +46 0 obj << /Type /Font /Subtype /Type1 /BaseFont /AIYWNM+SFBX2074 -/FontDescriptor 107 0 R +/FontDescriptor 105 0 R /FirstChar 73 /LastChar 117 -/Widths 93 0 R -/Encoding 89 0 R -/ToUnicode 117 0 R +/Widths 91 0 R +/Encoding 87 0 R +/ToUnicode 115 0 R >> endobj -118 0 obj +116 0 obj << /Length 2030 >> @@ -1749,20 +1758,20 @@ end %%EOF endstream endobj -67 0 obj +65 0 obj << /Type /Font /Subtype /Type1 /BaseFont /UJAELG+SFRM0700 -/FontDescriptor 109 0 R +/FontDescriptor 107 0 R /FirstChar 53 /LastChar 84 -/Widths 90 0 R -/Encoding 89 0 R -/ToUnicode 118 0 R +/Widths 88 0 R +/Encoding 87 0 R +/ToUnicode 116 0 R >> endobj -119 0 obj +117 0 obj << /Length 2030 >> @@ -1906,20 +1915,20 @@ end %%EOF endstream endobj -65 0 obj +63 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PHDFMT+SFRM1000 -/FontDescriptor 111 0 R +/FontDescriptor 109 0 R /FirstChar 49 /LastChar 119 -/Widths 92 0 R -/Encoding 89 0 R -/ToUnicode 119 0 R +/Widths 90 0 R +/Encoding 87 0 R +/ToUnicode 117 0 R >> endobj -120 0 obj +118 0 obj << /Length 2030 >> @@ -2068,15 +2077,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /JLUCYN+SFRM1440 -/FontDescriptor 113 0 R +/FontDescriptor 111 0 R /FirstChar 77 /LastChar 121 -/Widths 95 0 R -/Encoding 89 0 R -/ToUnicode 120 0 R +/Widths 93 0 R +/Encoding 87 0 R +/ToUnicode 118 0 R >> endobj -121 0 obj +119 0 obj << /Length 654 >> @@ -2119,181 +2128,179 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 99 0 R +/FontDescriptor 97 0 R /FirstChar 32 /LastChar 32 -/Widths 96 0 R -/ToUnicode 121 0 R +/Widths 94 0 R +/ToUnicode 119 0 R >> endobj 34 0 obj << /Type /Pages /Count 6 -/Parent 122 0 R -/Kids [26 0 R 37 0 R 42 0 R 49 0 R 54 0 R 70 0 R] +/Parent 120 0 R +/Kids [26 0 R 37 0 R 41 0 R 48 0 R 52 0 R 68 0 R] >> endobj -79 0 obj +77 0 obj << /Type /Pages /Count 1 -/Parent 122 0 R -/Kids [75 0 R] +/Parent 120 0 R +/Kids [73 0 R] >> endobj -122 0 obj +120 0 obj << /Type /Pages /Count 7 -/Kids [34 0 R 79 0 R] +/Kids [34 0 R 77 0 R] >> endobj -123 0 obj +121 0 obj << /Type /Catalog -/Pages 122 0 R -/AF 84 0 R/MarkInfo 85 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 76 0 R +/Pages 120 0 R +/AF 82 0 R/MarkInfo 83 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 74 0 R >> endobj -124 0 obj +122 0 obj << /Producer (pdfTeX)/Creator (TeX)/Title /Author /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 125 +0 123 0000000010 65535 f -0000019892 00000 n -0000019939 00000 n -0000019961 00000 n -0000019983 00000 n -0000026552 00000 n -0000020075 00000 n -0000020759 00000 n -0000023116 00000 n -0000021632 00000 n +0000020090 00000 n +0000020137 00000 n +0000020159 00000 n +0000020181 00000 n +0000026883 00000 n +0000020273 00000 n +0000020946 00000 n +0000023562 00000 n +0000021926 00000 n 0000000012 00000 f -0000021700 00000 n +0000021994 00000 n 0000000014 00000 f -0000021770 00000 n +0000022064 00000 n 0000000020 00000 f -0000022650 00000 n -0000021851 00000 n -0000022923 00000 n -0000022752 00000 n -0000023025 00000 n +0000023096 00000 n +0000022145 00000 n +0000023369 00000 n +0000023198 00000 n +0000023471 00000 n 0000000000 00000 f -0000023177 00000 n -0000023298 00000 n -0000023387 00000 n -0000023476 00000 n -0000023580 00000 n +0000023623 00000 n +0000023744 00000 n +0000023833 00000 n +0000023922 00000 n +0000024026 00000 n 0000000463 00000 n -0000023718 00000 n -0000023822 00000 n +0000024164 00000 n +0000024268 00000 n 0000000598 00000 n 0000000015 00000 n -0000118117 00000 n -0000130360 00000 n -0000129466 00000 n -0000130525 00000 n -0000023960 00000 n +0000118444 00000 n +0000130687 00000 n +0000129793 00000 n +0000130852 00000 n +0000024406 00000 n 0000000929 00000 n 0000000794 00000 n 0000000686 00000 n -0000024054 00000 n -0000024158 00000 n -0000024320 00000 n -0000001311 00000 n -0000024452 00000 n -0000001446 00000 n +0000024500 00000 n +0000024604 00000 n +0000001368 00000 n +0000024825 00000 n +0000001503 00000 n 0000000969 00000 n -0000120387 00000 n -0000122657 00000 n -0000001777 00000 n -0000001642 00000 n -0000001534 00000 n -0000024584 00000 n -0000024695 00000 n -0000024868 00000 n -0000002927 00000 n -0000025000 00000 n -0000025132 00000 n -0000025236 00000 n -0000025375 00000 n -0000025493 00000 n -0000025692 00000 n -0000025823 00000 n -0000025927 00000 n -0000003062 00000 n -0000001817 00000 n -0000127196 00000 n -0000115847 00000 n -0000124927 00000 n -0000026066 00000 n -0000026170 00000 n -0000003764 00000 n -0000003899 00000 n -0000003174 00000 n -0000026309 00000 n -0000026413 00000 n -0000017020 00000 n -0000003987 00000 n -0000017155 00000 n -0000016496 00000 n -0000130635 00000 n -0000017243 00000 n -0000017708 00000 n -0000017913 00000 n -0000019682 00000 n -0000020005 00000 n -0000020039 00000 n -0000020231 00000 n -0000020722 00000 n -0000021431 00000 n -0000113550 00000 n -0000026689 00000 n -0000026900 00000 n -0000027340 00000 n -0000027773 00000 n -0000028057 00000 n -0000028499 00000 n -0000028773 00000 n -0000028795 00000 n -0000029229 00000 n -0000031893 00000 n -0000032111 00000 n -0000045600 00000 n -0000045852 00000 n -0000057956 00000 n -0000058215 00000 n -0000069121 00000 n -0000069361 00000 n -0000080490 00000 n -0000080729 00000 n -0000097261 00000 n -0000097519 00000 n -0000110270 00000 n -0000110533 00000 n -0000113317 00000 n -0000113757 00000 n -0000116027 00000 n -0000118297 00000 n -0000120567 00000 n -0000122837 00000 n -0000125106 00000 n -0000127376 00000 n -0000129646 00000 n -0000130710 00000 n -0000130777 00000 n -0000130904 00000 n +0000120714 00000 n +0000122984 00000 n +0000001834 00000 n +0000001699 00000 n +0000001591 00000 n +0000024956 00000 n +0000025067 00000 n +0000003125 00000 n +0000025299 00000 n +0000025430 00000 n +0000025534 00000 n +0000025673 00000 n +0000025791 00000 n +0000026023 00000 n +0000026154 00000 n +0000026258 00000 n +0000003260 00000 n +0000001874 00000 n +0000127523 00000 n +0000116175 00000 n +0000125254 00000 n +0000026397 00000 n +0000026501 00000 n +0000003962 00000 n +0000004097 00000 n +0000003372 00000 n +0000026640 00000 n +0000026744 00000 n +0000017218 00000 n +0000004185 00000 n +0000017353 00000 n +0000016694 00000 n +0000130962 00000 n +0000017441 00000 n +0000017906 00000 n +0000018111 00000 n +0000019880 00000 n +0000020203 00000 n +0000020237 00000 n +0000020450 00000 n +0000020909 00000 n +0000021725 00000 n +0000113878 00000 n +0000027020 00000 n +0000027231 00000 n +0000027671 00000 n +0000028104 00000 n +0000028388 00000 n +0000028830 00000 n +0000029104 00000 n +0000029126 00000 n +0000029560 00000 n +0000032224 00000 n +0000032442 00000 n +0000045930 00000 n +0000046180 00000 n +0000058284 00000 n +0000058543 00000 n +0000069449 00000 n +0000069689 00000 n +0000080818 00000 n +0000081057 00000 n +0000097589 00000 n +0000097847 00000 n +0000110598 00000 n +0000110861 00000 n +0000113645 00000 n +0000114085 00000 n +0000116354 00000 n +0000118624 00000 n +0000120894 00000 n +0000123164 00000 n +0000125433 00000 n +0000127703 00000 n +0000129973 00000 n +0000131037 00000 n +0000131104 00000 n +0000131231 00000 n trailer -<< /Size 125 -/Root 123 0 R -/Info 124 0 R +<< /Size 123 +/Root 121 0 R +/Info 122 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -131180 +131507 %%EOF diff --git a/required/latex-lab/testfiles-firstaid/firstaid-amsproc-02.tlg b/required/latex-lab/testfiles-firstaid/firstaid-amsproc-02.tlg index ab2ea5cc0..4e61d78be 100644 --- a/required/latex-lab/testfiles-firstaid/firstaid-amsproc-02.tlg +++ b/required/latex-lab/testfiles-firstaid/firstaid-amsproc-02.tlg @@ -22,12 +22,123 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \partname -[head] 3: number = \__head_number_format:n {part} +[head] 3: number = \theheading [head] 4: title = Some part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'raggedright' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> opening mc for 'prefix' +[Template] ==> typeset 'prefix' data +[Template] ==> --------------------After prefix---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] part: *{Some unnumbered part} @@ -50,13 +161,51 @@ Don't change this file in any respect. [Template] ==> Using instance 'part' of type 'headformat' on line ... [head] --------- Headformat instance arguments: [head] 1: keys = -[head] 2: prefix = \partname -[head] 3: number = +[head] 2: prefix = \NoValue +[head] 3: number = \NoValue [head] 4: title = Some unnumbered part [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'raggedright' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{part}{Title}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] specialsection: {Some special section} @@ -80,13 +229,118 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some special section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> tertiary context is 'large' [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] section: {Some section} @@ -110,12 +364,117 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {section} +[head] 3: number = \theheading [head] 4: title = Some section [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue [Template] ==> Using instance 'center' of type 'para' on line ... [Template] ==> template: 'std'; argument: || +[Template] ==> Processing order key 'order-hang' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order-hang' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order-hang' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order-hang' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order-hang' +[Template] ==> special group or separator item +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'title' in 'order' +[Template] ==> opening mc for 'title' +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore to closed +[Template] ==> --------------------End---------------- +[Template] ==> ==> vmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: closed +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{section}{H1}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsection: {Some subsection} @@ -139,11 +498,100 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsection} +[head] 3: number = \theheading [head] 4: title = Some subsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsection}{H2}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subsubsection: {Some subsubsection} @@ -167,11 +615,105 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = \__head_number_format:n {subsubsection} +[head] 3: number = \theheading [head] 4: title = Some subsubsection [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subsubsection}{H3}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] paragraph: {Some paragraph!} @@ -195,11 +737,79 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some paragraph! [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' not added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [head] ================================== [head] subparagraph: {Some subparagraph} @@ -223,10 +833,81 @@ Don't change this file in any respect. [head] --------- Headformat instance arguments: [head] 1: keys = [head] 2: prefix = \NoValue -[head] 3: number = +[head] 3: number = \NoValue [head] 4: title = Some subparagraph [head] 5: subtitle = \NoValue [head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'title' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'title' data [head] ---> punctuation '.' added +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Part}{Part}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. [head] ---> label(s): [1] [2] diff --git a/required/latex-lab/testfiles-firstaid/firstaid-amsproc.tpf b/required/latex-lab/testfiles-firstaid/firstaid-amsproc.tpf index 3cc6bfcb3..04db7cc0a 100644 --- a/required/latex-lab/testfiles-firstaid/firstaid-amsproc.tpf +++ b/required/latex-lab/testfiles-firstaid/firstaid-amsproc.tpf @@ -2,7 +2,7 @@ %ÐÔÅØ 46 0 obj << -/Length 1623 +/Length 1954 >> stream /opacity1 gs @@ -18,52 +18,77 @@ BT /F46 7.9701 Tf 284.446 550.421 Td [(MY)]TJ/F66 9.9626 Tf( )Tj/F46 7.9701 Tf 16.916 0 Td [(NAME)]TJ ET EMC -/section-number <> BDC +/part <> BDC BT -/F64 9.9626 Tf 126.672 502.501 Td [(P)32(art)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 26.07 0 Td [(1.)]TJ +/F64 9.9626 Tf 126.672 502.501 Td [(P)32(art)]TJ/F66 9.9626 Tf [-383( )]TJ ET EMC -/part <> BDC +/heading-number <> BDC +BT +/F64 9.9626 Tf 152.742 502.501 Td [(1.)]TJ +ET +EMC +/part <> BDC +BT +/F66 9.9626 Tf 167.378 502.501 Td [( )]TJ +ET +EMC +/part <> BDC BT /F64 9.9626 Tf 167.378 502.501 Td [(Hello)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 484.568 Td [(some)]TJ/F66 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(test)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F64 9.9626 Tf 280.467 464.244 Td [(1.)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F66 9.9626 Tf 295.103 464.244 Td [( )]TJ +ET +EMC +/section <> BDC BT /F64 9.9626 Tf 295.103 464.244 Td [(Section)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 446.311 Td [(some)]TJ/F66 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/part <> BDC +BT +/F64 9.9626 Tf 126.672 422.401 Td [(P)32(art)]TJ/F66 9.9626 Tf [-383( )]TJ +ET +EMC +/heading-number <> BDC BT -/F64 9.9626 Tf 126.672 422.401 Td [(P)32(art)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 26.07 0 Td [(2.)]TJ +/F64 9.9626 Tf 152.742 422.401 Td [(2.)]TJ ET EMC -/part <> BDC +/part <> BDC +BT +/F66 9.9626 Tf 167.378 422.401 Td [( )]TJ +ET +EMC +/part <> BDC BT /F64 9.9626 Tf 167.378 422.401 Td [(W)96(orld)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 404.468 Td [(some)]TJ/F66 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 144.605 392.513 Td [(Some)]TJ/F66 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(w)28(ords)]TJ ET @@ -510,7 +535,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 25 0 R 27 0 R 30 0 R 29 0 R 32 0 R 35 0 R 34 0 R 37 0 R 40 0 R 39 0 R 42 0 R 44 0 R ] +<< /Nums [0 [ 25 0 R 27 0 R 29 0 R 30 0 R 29 0 R 29 0 R 32 0 R 35 0 R 34 0 R 34 0 R 37 0 R 39 0 R 40 0 R 39 0 R 39 0 R 42 0 R 44 0 R ] 1 [ 55 0 R ] 2 [ 60 0 R ] ] >> @@ -522,7 +547,7 @@ endobj << /Kids [71 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 73 0 obj << /center <> @@ -542,7 +567,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -581,52 +606,52 @@ endobj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [29 0 R 31 0 R 33 0 R] /ID (ID.008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 28 0 R /K [30 0 R <>] /ID (ID.009) >> +<< /Type /StructElem /T /S /part /NS 15 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.010) >> endobj 31 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 28 0 R /K 32 0 R /ID (ID.011) >> endobj 32 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.012) >> endobj 33 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 28 0 R /K [34 0 R 36 0 R] /ID (ID.013) >> endobj 34 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 33 0 R /K [35 0 R <>] /ID (ID.014) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 33 0 R /K [35 0 R <> <>] /ID (ID.014) >> endobj 35 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 34 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 34 0 R /K <> /ID (ID.015) >> endobj 36 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 37 0 R /ID (ID.016) >> endobj 37 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 36 0 R /K <> /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 36 0 R /K <> /ID (ID.017) >> endobj 38 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [39 0 R 41 0 R 43 0 R 54 0 R 59 0 R] /ID (ID.018) >> endobj 39 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 38 0 R /K [40 0 R <>] /ID (ID.019) >> +<< /Type /StructElem /T /S /part /NS 15 0 R /P 38 0 R /K [<> 40 0 R <> <>] /ID (ID.019) >> endobj 40 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.020) >> endobj 41 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K 42 0 R /ID (ID.021) >> endobj 42 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.022) >> endobj 43 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K 44 0 R /ID (ID.023) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.024) >> endobj 54 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K 55 0 R /ID (ID.025) >> @@ -1675,111 +1700,111 @@ endobj xref 0 101 0000000010 65535 f -0000018335 00000 n -0000018382 00000 n -0000018404 00000 n -0000018426 00000 n -0000024962 00000 n -0000018518 00000 n -0000019192 00000 n -0000021536 00000 n -0000020052 00000 n +0000018666 00000 n +0000018713 00000 n +0000018735 00000 n +0000018757 00000 n +0000025757 00000 n +0000018849 00000 n +0000019558 00000 n +0000022161 00000 n +0000020525 00000 n 0000000012 00000 f -0000020120 00000 n +0000020593 00000 n 0000000014 00000 f -0000020190 00000 n +0000020663 00000 n 0000000020 00000 f -0000021070 00000 n -0000020271 00000 n -0000021343 00000 n -0000021172 00000 n -0000021445 00000 n +0000021695 00000 n +0000020744 00000 n +0000021968 00000 n +0000021797 00000 n +0000022070 00000 n 0000000000 00000 f -0000021597 00000 n -0000021711 00000 n -0000021800 00000 n -0000021889 00000 n -0000022002 00000 n -0000001697 00000 n -0000022140 00000 n -0000022278 00000 n -0000022389 00000 n -0000022549 00000 n -0000022680 00000 n -0000022784 00000 n -0000022923 00000 n -0000023027 00000 n -0000023198 00000 n -0000023329 00000 n -0000023433 00000 n -0000023572 00000 n -0000023697 00000 n -0000023857 00000 n -0000023988 00000 n -0000024092 00000 n -0000024232 00000 n -0000024336 00000 n -0000001832 00000 n +0000022222 00000 n +0000022336 00000 n +0000022425 00000 n +0000022514 00000 n +0000022627 00000 n +0000002028 00000 n +0000022765 00000 n +0000022903 00000 n +0000023014 00000 n +0000023240 00000 n +0000023371 00000 n +0000023475 00000 n +0000023614 00000 n +0000023718 00000 n +0000023922 00000 n +0000024053 00000 n +0000024157 00000 n +0000024297 00000 n +0000024422 00000 n +0000024651 00000 n +0000024783 00000 n +0000024887 00000 n +0000025027 00000 n +0000025131 00000 n +0000002163 00000 n 0000000015 00000 n -0000091043 00000 n -0000098733 00000 n -0000095576 00000 n -0000088776 00000 n -0000097842 00000 n -0000093310 00000 n -0000098897 00000 n -0000024476 00000 n -0000024580 00000 n -0000002314 00000 n -0000002449 00000 n -0000001956 00000 n -0000024719 00000 n -0000024823 00000 n -0000015463 00000 n -0000002537 00000 n -0000015598 00000 n -0000015046 00000 n -0000015686 00000 n -0000016151 00000 n -0000016356 00000 n -0000018125 00000 n -0000018448 00000 n -0000018482 00000 n -0000018664 00000 n -0000019155 00000 n -0000019851 00000 n -0000086496 00000 n -0000025099 00000 n -0000025135 00000 n -0000025374 00000 n -0000025814 00000 n -0000025983 00000 n -0000026005 00000 n -0000026459 00000 n -0000029123 00000 n -0000029341 00000 n -0000043638 00000 n -0000043900 00000 n -0000055680 00000 n -0000055925 00000 n -0000070149 00000 n -0000070382 00000 n -0000074599 00000 n -0000074828 00000 n -0000086253 00000 n -0000086687 00000 n -0000088954 00000 n -0000091221 00000 n -0000093487 00000 n -0000095753 00000 n -0000098020 00000 n -0000098970 00000 n -0000099095 00000 n +0000091838 00000 n +0000099528 00000 n +0000096371 00000 n +0000089571 00000 n +0000098637 00000 n +0000094105 00000 n +0000099692 00000 n +0000025271 00000 n +0000025375 00000 n +0000002645 00000 n +0000002780 00000 n +0000002287 00000 n +0000025514 00000 n +0000025618 00000 n +0000015794 00000 n +0000002868 00000 n +0000015929 00000 n +0000015377 00000 n +0000016017 00000 n +0000016482 00000 n +0000016687 00000 n +0000018456 00000 n +0000018779 00000 n +0000018813 00000 n +0000019030 00000 n +0000019521 00000 n +0000020324 00000 n +0000087291 00000 n +0000025894 00000 n +0000025930 00000 n +0000026169 00000 n +0000026609 00000 n +0000026778 00000 n +0000026800 00000 n +0000027254 00000 n +0000029918 00000 n +0000030136 00000 n +0000044433 00000 n +0000044695 00000 n +0000056475 00000 n +0000056720 00000 n +0000070944 00000 n +0000071177 00000 n +0000075394 00000 n +0000075623 00000 n +0000087048 00000 n +0000087482 00000 n +0000089749 00000 n +0000092016 00000 n +0000094282 00000 n +0000096548 00000 n +0000098815 00000 n +0000099765 00000 n +0000099890 00000 n trailer << /Size 101 /Root 99 0 R /Info 100 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -99371 +100166 %%EOF diff --git a/required/latex-lab/testfiles-firstaid/test-amsart-733.tlg b/required/latex-lab/testfiles-firstaid/test-amsart-733.tlg index b8c284062..a5c9cbc55 100644 --- a/required/latex-lab/testfiles-firstaid/test-amsart-733.tlg +++ b/required/latex-lab/testfiles-firstaid/test-amsart-733.tlg @@ -24,8 +24,8 @@ The instance 'theorem' of type 'blockenv' has values: l. ...\ShowInstanceValues{blockenv}{theorem} The instance 'citing' of type 'thmstyle' has values: > separator => \ -> separator-1 => \ -> separator-2 => \ +> separator-a => \ +> separator-b => \ > punct => . > caption-placement => unchained > caption-unbreakable => false @@ -76,7 +76,7 @@ l. ...\ShowInstanceValues{block}{thm-citing-1} [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -89,7 +89,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -101,7 +101,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -115,23 +115,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... @@ -153,7 +153,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -166,7 +166,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> reopening mc after struct 'Lbl' [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -178,7 +178,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -192,23 +192,23 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end [Blocks] ==> ... in captioned block everypar on input line ... diff --git a/required/latex-lab/testfiles-firstaid/test-amsart-title.tpf b/required/latex-lab/testfiles-firstaid/test-amsart-title.tpf index 9161fb604..3bb45a597 100644 --- a/required/latex-lab/testfiles-firstaid/test-amsart-title.tpf +++ b/required/latex-lab/testfiles-firstaid/test-amsart-title.tpf @@ -269,7 +269,7 @@ endstream endobj 54 0 obj << -/Length 2213 +/Length 2292 >> stream /opacity1 gs @@ -305,32 +305,37 @@ BT /F46 7.9701 Tf 363.473 576.574 Td [(])]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F45 9.9626 Tf 219.157 530.597 Td [(1.)]TJ ET EMC /section <> BDC BT +/F66 9.9626 Tf 232.409 530.597 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F64 9.9626 Tf 232.409 530.597 Td [(A)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 11.87 0 Td [(shor)88(t)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 31.775 0 Td [(histor)87(y)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 40.895 0 Td [(of)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 15.428 0 Td [(the)]TJ/F66 9.9626 Tf( )Tj/F64 9.9626 Tf 21.314 0 Td [(pr)29(oject)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 138.628 512.665 Td [(bla)]TJ ET EMC -/section <> BDC +/section <> BDC BT /F64 9.9626 Tf 276.96 492.341 Td [(References)]TJ ET EMC -/itemlabel <> BDC +/itemlabel <> BDC BT /F46 7.9701 Tf 130.906 476.401 Td [([1])]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F46 7.9701 Tf 144.075 476.401 Td [(study)]TJ/F66 9.9626 Tf( )Tj/F46 7.9701 Tf 23.329 0 Td [(...)]TJ ET @@ -377,7 +382,7 @@ endobj [ 23 0 R ] endobj 6 0 obj -<< /Nums [0 [ 36 0 R 37 0 R 29 0 R 33 0 R 34 0 R 33 0 R 40 0 R 39 0 R 42 0 R 44 0 R 48 0 R 51 0 R ] +<< /Nums [0 [ 36 0 R 37 0 R 29 0 R 33 0 R 34 0 R 33 0 R 40 0 R 39 0 R 39 0 R 42 0 R 44 0 R 48 0 R 51 0 R ] ] >> endobj 65 0 obj @@ -387,7 +392,7 @@ endobj << /Kids [65 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 67 0 obj << /list <> @@ -409,7 +414,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -472,22 +477,22 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [39 0 R 41 0 R] /ID (ID.016) >> endobj 39 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 38 0 R /K [40 0 R <>] /ID (ID.017) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 38 0 R /K [40 0 R <> <>] /ID (ID.017) >> endobj 40 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.018) >> endobj 41 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K 42 0 R /ID (ID.019) >> endobj 42 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.020) >> endobj 43 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [44 0 R 45 0 R] /ID (ID.021) >> endobj 44 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 43 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 43 0 R /K <> /ID (ID.022) >> endobj 45 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 43 0 R /K 46 0 R /ID (ID.023) >> @@ -499,7 +504,7 @@ endobj << /Type /StructElem /S /item /NS 15 0 R /P 46 0 R /K [48 0 R 49 0 R] /ID (ID.025) >> endobj 48 0 obj -<< /Type /StructElem /S /itemlabel /NS 15 0 R /P 47 0 R /K <> /ID (ID.026) >> +<< /Type /StructElem /S /itemlabel /NS 15 0 R /P 47 0 R /K <> /ID (ID.026) >> endobj 49 0 obj << /Type /StructElem /S /itembody /NS 15 0 R /P 47 0 R /K 50 0 R /ID (ID.027) >> @@ -508,7 +513,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 49 0 R /K 51 0 R /ID (ID.028) >> endobj 51 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 50 0 R /K <> /ID (ID.029) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 50 0 R /K <> /ID (ID.029) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 66 0 R /ClassMap 67 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> @@ -1717,107 +1722,107 @@ endobj xref 0 98 0000000010 65535 f -0000018666 00000 n -0000018713 00000 n -0000018735 00000 n -0000018757 00000 n -0000025451 00000 n -0000018842 00000 n -0000019506 00000 n -0000021933 00000 n -0000020453 00000 n +0000018745 00000 n +0000018792 00000 n +0000018814 00000 n +0000018836 00000 n +0000025830 00000 n +0000018921 00000 n +0000019592 00000 n +0000022278 00000 n +0000020646 00000 n 0000000012 00000 f -0000020521 00000 n +0000020714 00000 n 0000000014 00000 f -0000020591 00000 n +0000020784 00000 n 0000000020 00000 f -0000021471 00000 n -0000020672 00000 n -0000021744 00000 n -0000021573 00000 n -0000021846 00000 n +0000021816 00000 n +0000020865 00000 n +0000022089 00000 n +0000021918 00000 n +0000022191 00000 n 0000000000 00000 f -0000021994 00000 n +0000022339 00000 n 0000000015 00000 n 0000003347 00000 n -0000022115 00000 n -0000022204 00000 n -0000022293 00000 n -0000022397 00000 n -0000022501 00000 n -0000022605 00000 n -0000018395 00000 n -0000022731 00000 n -0000022830 00000 n -0000022934 00000 n -0000023115 00000 n -0000023256 00000 n -0000023369 00000 n -0000023507 00000 n -0000023645 00000 n -0000023749 00000 n -0000024012 00000 n -0000024143 00000 n -0000024247 00000 n -0000024386 00000 n -0000024490 00000 n -0000024664 00000 n -0000024768 00000 n -0000024877 00000 n -0000024981 00000 n -0000025108 00000 n -0000025207 00000 n -0000025311 00000 n +0000022460 00000 n +0000022549 00000 n +0000022638 00000 n +0000022742 00000 n +0000022846 00000 n +0000022950 00000 n +0000018474 00000 n +0000023076 00000 n +0000023175 00000 n +0000023279 00000 n +0000023460 00000 n +0000023601 00000 n +0000023714 00000 n +0000023852 00000 n +0000023990 00000 n +0000024094 00000 n +0000024390 00000 n +0000024521 00000 n +0000024625 00000 n +0000024764 00000 n +0000024868 00000 n +0000025043 00000 n +0000025147 00000 n +0000025256 00000 n +0000025360 00000 n +0000025487 00000 n +0000025586 00000 n +0000025690 00000 n 0000003580 00000 n -0000018530 00000 n +0000018609 00000 n 0000016123 00000 n -0000104401 00000 n -0000116625 00000 n -0000113467 00000 n -0000106667 00000 n -0000115734 00000 n -0000108934 00000 n -0000111201 00000 n -0000116789 00000 n -0000018779 00000 n -0000018815 00000 n -0000018962 00000 n -0000019469 00000 n -0000020165 00000 n -0000102111 00000 n -0000025588 00000 n -0000025612 00000 n -0000025963 00000 n -0000026350 00000 n -0000026780 00000 n -0000027251 00000 n -0000027273 00000 n -0000027410 00000 n -0000030074 00000 n -0000030274 00000 n -0000035012 00000 n -0000035219 00000 n -0000052704 00000 n -0000052906 00000 n -0000062096 00000 n -0000062297 00000 n -0000064107 00000 n -0000064314 00000 n -0000092767 00000 n -0000092974 00000 n -0000101904 00000 n -0000102312 00000 n -0000104578 00000 n -0000106845 00000 n -0000109112 00000 n -0000111378 00000 n -0000113645 00000 n -0000115912 00000 n -0000116848 00000 n +0000104780 00000 n +0000117004 00000 n +0000113846 00000 n +0000107046 00000 n +0000116113 00000 n +0000109313 00000 n +0000111580 00000 n +0000117168 00000 n +0000018858 00000 n +0000018894 00000 n +0000019048 00000 n +0000019555 00000 n +0000020358 00000 n +0000102490 00000 n +0000025967 00000 n +0000025991 00000 n +0000026342 00000 n +0000026729 00000 n +0000027159 00000 n +0000027630 00000 n +0000027652 00000 n +0000027789 00000 n +0000030453 00000 n +0000030653 00000 n +0000035391 00000 n +0000035598 00000 n +0000053083 00000 n +0000053285 00000 n +0000062475 00000 n +0000062676 00000 n +0000064486 00000 n +0000064693 00000 n +0000093146 00000 n +0000093353 00000 n +0000102283 00000 n +0000102691 00000 n +0000104957 00000 n +0000107224 00000 n +0000109491 00000 n +0000111757 00000 n +0000114024 00000 n +0000116291 00000 n +0000117227 00000 n trailer << /Size 98 /Root 97 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -116984 +117363 %%EOF diff --git a/required/latex-lab/testfiles-firstaid/test-blindtext.tlg b/required/latex-lab/testfiles-firstaid/test-blindtext.tlg index d4d8da096..1171f42a8 100644 --- a/required/latex-lab/testfiles-firstaid/test-blindtext.tlg +++ b/required/latex-lab/testfiles-firstaid/test-blindtext.tlg @@ -19,13 +19,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,59,-1,} -...\marks4{b+,59,-1,} +...\marks4{b-,62,-1,} +...\marks4{b+,62,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,59,54,} -...\marks4{e+,59,54,} +...\marks4{e-,62,54,} +...\marks4{e+,62,54,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -50,12 +50,12 @@ Completed box being shipped out [1] ....\kern-0.4399 ....\T1/cmr/bx/n/14.4 t ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,1,6,section,,,} ...\marks4{b+,1,6,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,1,6,} ...\marks4{e+,1,6,} ...\penalty 10000 @@ -1004,16 +1004,28 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.81322 ...\hbox(10.6874+3.5991)x345.0, glue set 126.89172fil -....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,50,46,heading-number,,,} +.....\marks4{b+,50,46,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,50,46,} +.....\marks4{e+,50,46,} +.....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,51,45,section,,,} +.....\marks4{b+,51,45,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,51,45,} +.....\marks4{e+,51,45,} +....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 H ....\T1/cmr/bx/n/14.4 e @@ -1044,18 +1056,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 o ....\T1/cmr/bx/n/14.4 n ....\T1/cmr/bx/n/14.4 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,50,46,section-number,,,} -...\marks4{b+,50,46,section-number,,,} -...\marks4{e-,50,46,} -...\marks4{e+,50,46,} -...\marks4{b-,51,45,section,,,} -...\marks4{b+,51,45,section,,,} -...\marks4{e-,51,45,} -...\marks4{e+,51,45,} +...\marks4{b-,52,45,section,,,} +...\marks4{b+,52,45,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,52,45,} +...\marks4{e+,52,45,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}Heading on level\protect \xspace 1 (section)}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -1063,7 +1071,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.51369 ...\hbox(6.8872+1.94397)x345.0, glue set - 0.61578 -....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 L ....\T1/cmr/m/n/10 o @@ -1149,8 +1157,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 i ....\T1/cmr/m/n/10 s ....\glue(\rightskip) 0.0 -...\marks4{b-,52,48,text-block,,,} -...\marks4{b+,52,48,text-block,,,} +...\marks4{b-,53,48,text-block,,,} +...\marks4{b+,53,48,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x345.0, glue set 0.09781 @@ -1901,26 +1909,38 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,52,48,} -...\marks4{e+,52,48,} +...\marks4{e-,53,48,} +...\marks4{e+,53,48,} ...\penalty -300 ...\glue 13.98964 plus 4.3045 minus 0.86089 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.05823 ...\hbox(8.9978+2.99927)x345.0, glue set 128.39603fil -....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,54,51,heading-number,,,} +.....\marks4{b+,54,51,heading-number,,,} .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,54,51,} +.....\marks4{e+,54,51,} +.....\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,55,50,subsection,,,} +.....\marks4{b+,55,50,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,55,50,} +.....\marks4{e+,55,50,} +....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 H ....\T1/cmr/bx/n/12 e @@ -1954,18 +1974,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/12 o ....\T1/cmr/bx/n/12 n ....\T1/cmr/bx/n/12 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,53,51,section-number,,,} -...\marks4{b+,53,51,section-number,,,} -...\marks4{e-,53,51,} -...\marks4{e+,53,51,} -...\marks4{b-,54,50,subsection,,,} -...\marks4{b+,54,50,subsection,,,} -...\marks4{e-,54,50,} -...\marks4{e+,54,50,} +...\marks4{b-,56,50,subsection,,,} +...\marks4{b+,56,50,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,56,50,} +...\marks4{e+,56,50,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1}Heading on level\protect \xspace 2 (subsection)}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -1973,7 +1989,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.11353 ...\hbox(6.8872+1.94397)x345.0, glue set - 0.61578 -....\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 L ....\T1/cmr/m/n/10 o @@ -2059,8 +2075,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 i ....\T1/cmr/m/n/10 s ....\glue(\rightskip) 0.0 -...\marks4{b-,55,53,text-block,,,} -...\marks4{b+,55,53,text-block,,,} +...\marks4{b-,57,53,text-block,,,} +...\marks4{b+,57,53,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x345.0, glue set 0.09781 @@ -2811,28 +2827,40 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,55,53,} -...\marks4{e+,55,53,} +...\marks4{e-,57,53,} +...\marks4{e+,57,53,} ...\penalty -300 ...\glue 13.98964 plus 4.3045 minus 0.86089 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.55786 ...\hbox(7.49817+2.49939)x345.0, glue set 134.13066fil -....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(6.48453+0.0)x35.13031 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,58,56,heading-number,,,} +.....\marks4{b+,58,56,heading-number,,,} .....\T1/cmr/bx/n/10 1 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,58,56,} +.....\marks4{e+,58,56,} +.....\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsubsection <> BDC} +.....\marks4{b-,59,55,subsubsection,,,} +.....\marks4{b+,59,55,subsubsection,,,} .....\glue 11.4972 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,59,55,} +.....\marks4{e+,59,55,} +....\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsubsection <> BDC} ....\T1/cmr/bx/n/10 H ....\T1/cmr/bx/n/10 e @@ -2869,18 +2897,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/10 o ....\T1/cmr/bx/n/10 n ....\T1/cmr/bx/n/10 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,56,56,section-number,,,} -...\marks4{b+,56,56,section-number,,,} -...\marks4{e-,56,56,} -...\marks4{e+,56,56,} -...\marks4{b-,57,55,subsubsection,,,} -...\marks4{b+,57,55,subsubsection,,,} -...\marks4{e-,57,55,} -...\marks4{e+,57,55,} +...\marks4{b-,60,55,subsubsection,,,} +...\marks4{b+,60,55,subsubsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,60,55,} +...\marks4{e+,60,55,} ...\write1{\@writefile{toc}{\protect \contentsline {subsubsection}{\protect \numberline {1.1.1}Heading on level\protect \xspace 3 (subsubsection)}{\thepage }{target*.4}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -2888,7 +2912,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.6134 ...\hbox(6.8872+1.94397)x345.0, glue set - 0.61578 -....\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 L ....\T1/cmr/m/n/10 o @@ -2974,8 +2998,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 i ....\T1/cmr/m/n/10 s ....\glue(\rightskip) 0.0 -...\marks4{b-,58,58,text-block,,,} -...\marks4{b+,58,58,text-block,,,} +...\marks4{b-,61,58,text-block,,,} +...\marks4{b+,61,58,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+1.94397)x345.0, glue set 0.09781 @@ -3241,8 +3265,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,60,-1,} -..\marks4{b+,60,-1,} +..\marks4{b-,63,-1,} +..\marks4{b+,63,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -3250,8 +3274,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,60,54,} -..\marks4{e+,60,54,} +..\marks4{e-,63,54,} +..\marks4{e+,63,54,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -3270,19 +3294,19 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,100,-1,} -...\marks4{b+,100,-1,} +...\marks4{b-,107,-1,} +...\marks4{b+,107,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,100,154,} -...\marks4{e+,100,154,} +...\marks4{e-,107,154,} +...\marks4{e+,107,154,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set >20000.0fil ...\hbox(0.0+0.0)x0.0 -....\write1{\new@label@record{mcid-99}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{99}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-106}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{106}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ...\glue(\topskip) 3.1128 ...\hbox(6.8872+1.94397)x345.0, glue set 0.24957 @@ -3776,15 +3800,15 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,58,58,} -...\marks4{e+,58,58,} +...\marks4{e-,61,58,} +...\marks4{e+,61,58,} ...\penalty -300 ...\glue 13.98964 plus 4.3045 minus 0.86089 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.55786 ...\hbox(7.49817+2.49939)x345.0, glue set - 0.43675 -....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\hbox(0.0+0.0)x0.0 ....\penalty 10000 @@ -3826,7 +3850,7 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/10 ) ....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{Heading on level\protect \xspace 4 (paragraph)}{\thepage }{target*.5}\protected@file@percent }} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 9.99756 ....\T1/cmr/m/n/10 L @@ -3876,12 +3900,12 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 e ....\T1/cmr/m/n/10 r ....\glue(\rightskip) 0.0 -...\marks4{b-,61,60,paragraph,,,} -...\marks4{b+,61,60,paragraph,,,} -...\marks4{e-,61,60,} -...\marks4{e+,61,60,} -...\marks4{b-,62,62,text-block,,,} -...\marks4{b+,62,62,text-block,,,} +...\marks4{b-,64,60,paragraph,,,} +...\marks4{b+,64,60,paragraph,,,} +...\marks4{e-,64,60,} +...\marks4{e+,64,60,} +...\marks4{b-,65,62,text-block,,,} +...\marks4{b+,65,62,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 2.6134 ...\hbox(6.8872+1.94397)x345.0, glue set 0.65115 @@ -4820,42 +4844,50 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,62,62,} -...\marks4{e+,62,62,} +...\marks4{e-,65,62,} +...\marks4{e+,65,62,} ...\penalty -300 ...\glue 15.06577 plus 4.3045 minus 0.86089 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 6.11845 ...\hbox(9.93758+0.0)x345.0, glue set 288.68408fil -....\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,66,65,heading-number,,,} +.....\marks4{b+,66,65,heading-number,,,} .....\T1/cmr/bx/n/14.4 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,66,65,} +.....\marks4{e+,66,65,} +.....\write1{\new@label@record{mcid-67}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{67}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,67,64,section,,,} +.....\marks4{b+,67,64,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,67,64,} +.....\marks4{e+,67,64,} +....\write1{\new@label@record{mcid-68}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{68}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 L ....\T1/cmr/bx/n/14.4 i ....\T1/cmr/bx/n/14.4 s ....\T1/cmr/bx/n/14.4 t ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,63,65,section-number,,,} -...\marks4{b+,63,65,section-number,,,} -...\marks4{e-,63,65,} -...\marks4{e+,63,65,} -...\marks4{b-,64,64,section,,,} -...\marks4{b+,64,64,section,,,} -...\marks4{e-,64,64,} -...\marks4{e+,64,64,} +...\marks4{b-,68,64,section,,,} +...\marks4{b+,68,64,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,68,64,} +...\marks4{e+,68,64,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}Lists}{\thepage }{target*.6}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -4863,18 +4895,30 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.0022 ...\hbox(8.9978+2.99927)x345.0, glue set 162.30301fil -....\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-69}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{69}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,69,68,heading-number,,,} +.....\marks4{b+,69,68,heading-number,,,} .....\T1/cmr/bx/n/12 2 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,69,68,} +.....\marks4{e+,69,68,} +.....\write1{\new@label@record{mcid-70}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{70}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,70,67,subsection,,,} +.....\marks4{b+,70,67,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,70,67,} +.....\marks4{e+,70,67,} +....\write1{\new@label@record{mcid-71}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{71}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 E ....\T1/cmr/bx/n/12 x @@ -4902,18 +4946,14 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/12 z ....\T1/cmr/bx/n/12 e ....\T1/cmr/bx/n/12 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,65,68,section-number,,,} -...\marks4{b+,65,68,section-number,,,} -...\marks4{e-,65,68,} -...\marks4{e+,65,68,} -...\marks4{b-,66,67,subsection,,,} -...\marks4{b+,66,67,subsection,,,} -...\marks4{e-,66,67,} -...\marks4{e+,66,67,} +...\marks4{b-,71,67,subsection,,,} +...\marks4{b+,71,67,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,71,67,} +...\marks4{e+,71,67,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {2.1}Example for list\protect \xspace (itemize)}{\thepage }{target*.7}\protected@file@percent }} ...\penalty 10000 ...\penalty 10000 @@ -4929,18 +4969,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-67}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{67}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-72}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{72}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,67,72,itemlabel,,,} -.......\marks4{b+,67,72,itemlabel,,,} +.......\marks4{b-,72,72,itemlabel,,,} +.......\marks4{b+,72,72,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,67,72,} -.......\marks4{e+,67,72,} +.......\marks4{e-,72,72,} +.......\marks4{e+,72,72,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-68}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{68}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-73}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{73}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -4962,10 +5002,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,68,75,text-block,,,} -...\marks4{b+,68,75,text-block,,,} -...\marks4{e-,68,75,} -...\marks4{e+,68,75,} +...\marks4{b-,73,75,text-block,,,} +...\marks4{b+,73,75,text-block,,,} +...\marks4{e-,73,75,} +...\marks4{e+,73,75,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -4977,18 +5017,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-69}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{69}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-74}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{74}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,69,77,itemlabel,,,} -.......\marks4{b+,69,77,itemlabel,,,} +.......\marks4{b-,74,77,itemlabel,,,} +.......\marks4{b+,74,77,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,69,77,} -.......\marks4{e+,69,77,} +.......\marks4{e-,74,77,} +.......\marks4{e+,74,77,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-70}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{70}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-75}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{75}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5011,10 +5051,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,70,80,text-block,,,} -...\marks4{b+,70,80,text-block,,,} -...\marks4{e-,70,80,} -...\marks4{e+,70,80,} +...\marks4{b-,75,80,text-block,,,} +...\marks4{b+,75,80,text-block,,,} +...\marks4{e-,75,80,} +...\marks4{e+,75,80,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5026,18 +5066,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-71}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{71}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-76}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{76}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,71,82,itemlabel,,,} -.......\marks4{b+,71,82,itemlabel,,,} +.......\marks4{b-,76,82,itemlabel,,,} +.......\marks4{b+,76,82,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,71,82,} -.......\marks4{e+,71,82,} +.......\marks4{e-,76,82,} +.......\marks4{e+,76,82,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-72}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{72}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-77}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{77}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 L @@ -5058,10 +5098,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,72,85,text-block,,,} -...\marks4{b+,72,85,text-block,,,} -...\marks4{e-,72,85,} -...\marks4{e+,72,85,} +...\marks4{b-,77,85,text-block,,,} +...\marks4{b+,77,85,text-block,,,} +...\marks4{e-,77,85,} +...\marks4{e+,77,85,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5073,18 +5113,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-73}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{73}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-78}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{78}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,73,87,itemlabel,,,} -.......\marks4{b+,73,87,itemlabel,,,} +.......\marks4{b-,78,87,itemlabel,,,} +.......\marks4{b+,78,87,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,73,87,} -.......\marks4{e+,73,87,} +.......\marks4{e-,78,87,} +.......\marks4{e+,78,87,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-74}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{74}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-79}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{79}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5106,10 +5146,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,74,90,text-block,,,} -...\marks4{b+,74,90,text-block,,,} -...\marks4{e-,74,90,} -...\marks4{e+,74,90,} +...\marks4{b-,79,90,text-block,,,} +...\marks4{b+,79,90,text-block,,,} +...\marks4{e-,79,90,} +...\marks4{e+,79,90,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5121,18 +5161,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-75}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{75}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-80}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{80}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,75,92,itemlabel,,,} -.......\marks4{b+,75,92,itemlabel,,,} +.......\marks4{b-,80,92,itemlabel,,,} +.......\marks4{b+,80,92,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,75,92,} -.......\marks4{e+,75,92,} +.......\marks4{e-,80,92,} +.......\marks4{e+,80,92,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-76}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{76}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-81}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{81}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5155,10 +5195,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,76,95,text-block,,,} -...\marks4{b+,76,95,text-block,,,} -...\marks4{e-,76,95,} -...\marks4{e+,76,95,} +...\marks4{b-,81,95,text-block,,,} +...\marks4{b+,81,95,text-block,,,} +...\marks4{e-,81,95,} +...\marks4{e+,81,95,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -5170,20 +5210,32 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.50183 ...\hbox(7.49817+2.49939)x345.0, glue set 168.81247fil -....\write1{\new@label@record{mcid-77}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{77}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(6.48453+0.0)x35.13031 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-82}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{82}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,82,98,heading-number,,,} +.....\marks4{b+,82,98,heading-number,,,} .....\T1/cmr/bx/n/10 2 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,82,98,} +.....\marks4{e+,82,98,} +.....\write1{\new@label@record{mcid-83}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{83}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsubsection <> BDC} +.....\marks4{b-,83,97,subsubsection,,,} +.....\marks4{b+,83,97,subsubsection,,,} .....\glue 11.4972 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-78}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{78}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,83,97,} +.....\marks4{e+,83,97,} +....\write1{\new@label@record{mcid-84}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{84}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsubsection <> BDC} ....\T1/cmr/bx/n/10 E ....\T1/cmr/bx/n/10 x @@ -5213,18 +5265,14 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/10 z ....\T1/cmr/bx/n/10 e ....\T1/cmr/bx/n/10 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,77,98,section-number,,,} -...\marks4{b+,77,98,section-number,,,} -...\marks4{e-,77,98,} -...\marks4{e+,77,98,} -...\marks4{b-,78,97,subsubsection,,,} -...\marks4{b+,78,97,subsubsection,,,} -...\marks4{e-,78,97,} -...\marks4{e+,78,97,} +...\marks4{b-,84,97,subsubsection,,,} +...\marks4{b+,84,97,subsubsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,84,97,} +...\marks4{e+,84,97,} ...\write1{\@writefile{toc}{\protect \contentsline {subsubsection}{\protect \numberline {2.1.1}Example for list\protect \xspace (4*itemize)}{\thepage }{target*.13}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -5239,18 +5287,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-79}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{79}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-85}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{85}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,79,102,itemlabel,,,} -.......\marks4{b+,79,102,itemlabel,,,} +.......\marks4{b-,85,102,itemlabel,,,} +.......\marks4{b+,85,102,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,79,102,} -.......\marks4{e+,79,102,} +.......\marks4{e-,85,102,} +.......\marks4{e+,85,102,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-80}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{80}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-86}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{86}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5272,10 +5320,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,80,105,text-block,,,} -...\marks4{b+,80,105,text-block,,,} -...\marks4{e-,80,105,} -...\marks4{e+,80,105,} +...\marks4{b-,86,105,text-block,,,} +...\marks4{b+,86,105,text-block,,,} +...\marks4{e-,86,105,} +...\marks4{e+,86,105,} ...\penalty -51 ...\glue 8.0 plus 4.0 minus 2.0 ...\glue -8.0 plus -4.0 minus -2.0 @@ -5289,18 +5337,18 @@ Completed box being shipped out [2] .....\hbox(4.44336+0.0)x16.99582, glue set 11.24722fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.44336+0.0)x5.7486 -.......\write1{\new@label@record{mcid-81}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{81}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-87}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{87}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,81,108,itemlabel,,,} -.......\marks4{b+,81,108,itemlabel,,,} +.......\marks4{b-,87,108,itemlabel,,,} +.......\marks4{b+,87,108,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/bx/n/10 ^^U .......\pdfliteral page{EMC} -.......\marks4{e-,81,108,} -.......\marks4{e+,81,108,} +.......\marks4{e-,87,108,} +.......\marks4{e+,87,108,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-82}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{82}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-88}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{88}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5322,10 +5370,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,82,111,text-block,,,} -...\marks4{b+,82,111,text-block,,,} -...\marks4{e-,82,111,} -...\marks4{e+,82,111,} +...\marks4{b-,88,111,text-block,,,} +...\marks4{b+,88,111,text-block,,,} +...\marks4{e-,88,111,} +...\marks4{e+,88,111,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 2.0 ...\glue(\parskip) 0.0 @@ -5337,18 +5385,18 @@ Completed box being shipped out [2] .....\hbox(4.65164+0.0)x13.6966, glue set 8.69781fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.65164+0.0)x4.99878 -.......\write1{\new@label@record{mcid-83}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{83}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-89}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{89}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,83,114,itemlabel,,,} -.......\marks4{b+,83,114,itemlabel,,,} +.......\marks4{b-,89,114,itemlabel,,,} +.......\marks4{b+,89,114,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 * .......\pdfliteral page{EMC} -.......\marks4{e-,83,114,} -.......\marks4{e+,83,114,} +.......\marks4{e-,89,114,} +.......\marks4{e+,89,114,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-84}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{84}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-90}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{90}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5370,10 +5418,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,84,117,text-block,,,} -...\marks4{b+,84,117,text-block,,,} -...\marks4{e-,84,117,} -...\marks4{e+,84,117,} +...\marks4{b-,90,117,text-block,,,} +...\marks4{b+,90,117,text-block,,,} +...\marks4{e-,90,117,} +...\marks4{e+,90,117,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -5385,18 +5433,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x11.99704, glue set 9.21994fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x2.7771 -.......\write1{\new@label@record{mcid-85}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{85}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-91}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{91}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,85,120,itemlabel,,,} -.......\marks4{b+,85,120,itemlabel,,,} +.......\marks4{b-,91,120,itemlabel,,,} +.......\marks4{b+,91,120,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^b7 .......\pdfliteral page{EMC} -.......\marks4{e-,85,120,} -.......\marks4{e+,85,120,} +.......\marks4{e-,91,120,} +.......\marks4{e+,91,120,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-86}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{86}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-92}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{92}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5418,10 +5466,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,86,123,text-block,,,} -...\marks4{b+,86,123,text-block,,,} -...\marks4{e-,86,123,} -...\marks4{e+,86,123,} +...\marks4{b-,92,123,text-block,,,} +...\marks4{b+,92,123,text-block,,,} +...\marks4{e-,92,123,} +...\marks4{e+,92,123,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -5433,18 +5481,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x11.99704, glue set 9.21994fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x2.7771 -.......\write1{\new@label@record{mcid-87}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{87}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-93}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{93}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,87,125,itemlabel,,,} -.......\marks4{b+,87,125,itemlabel,,,} +.......\marks4{b-,93,125,itemlabel,,,} +.......\marks4{b+,93,125,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^b7 .......\pdfliteral page{EMC} -.......\marks4{e-,87,125,} -.......\marks4{e+,87,125,} +.......\marks4{e-,93,125,} +.......\marks4{e+,93,125,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-88}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{88}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-94}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{94}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5467,10 +5515,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,88,128,text-block,,,} -...\marks4{b+,88,128,text-block,,,} -...\marks4{e-,88,128,} -...\marks4{e+,88,128,} +...\marks4{b-,94,128,text-block,,,} +...\marks4{b+,94,128,text-block,,,} +...\marks4{e-,94,128,} +...\marks4{e+,94,128,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -5485,18 +5533,18 @@ Completed box being shipped out [2] .....\hbox(4.65164+0.0)x13.6966, glue set 8.69781fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.65164+0.0)x4.99878 -.......\write1{\new@label@record{mcid-89}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{89}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-95}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{95}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,89,130,itemlabel,,,} -.......\marks4{b+,89,130,itemlabel,,,} +.......\marks4{b-,95,130,itemlabel,,,} +.......\marks4{b+,95,130,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 * .......\pdfliteral page{EMC} -.......\marks4{e-,89,130,} -.......\marks4{e+,89,130,} +.......\marks4{e-,95,130,} +.......\marks4{e+,95,130,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-90}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{90}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-96}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{96}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 L @@ -5517,10 +5565,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,90,133,text-block,,,} -...\marks4{b+,90,133,text-block,,,} -...\marks4{e-,90,133,} -...\marks4{e+,90,133,} +...\marks4{b-,96,133,text-block,,,} +...\marks4{b+,96,133,text-block,,,} +...\marks4{e-,96,133,} +...\marks4{e+,96,133,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -5535,18 +5583,18 @@ Completed box being shipped out [2] .....\hbox(4.44336+0.0)x16.99582, glue set 11.24722fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.44336+0.0)x5.7486 -.......\write1{\new@label@record{mcid-91}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{91}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-97}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{97}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,91,135,itemlabel,,,} -.......\marks4{b+,91,135,itemlabel,,,} +.......\marks4{b-,97,135,itemlabel,,,} +.......\marks4{b+,97,135,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/bx/n/10 ^^U .......\pdfliteral page{EMC} -.......\marks4{e-,91,135,} -.......\marks4{e+,91,135,} +.......\marks4{e-,97,135,} +.......\marks4{e+,97,135,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-92}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{92}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-98}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{98}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5568,10 +5616,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,92,138,text-block,,,} -...\marks4{b+,92,138,text-block,,,} -...\marks4{e-,92,138,} -...\marks4{e+,92,138,} +...\marks4{b-,98,138,text-block,,,} +...\marks4{b+,98,138,text-block,,,} +...\marks4{e-,98,138,} +...\marks4{e+,98,138,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue -4.0 plus -2.0 minus -1.0 @@ -5586,18 +5634,18 @@ Completed box being shipped out [2] .....\hbox(4.37393+0.0)x19.99512, glue set 14.99634fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(4.37393+0.0)x4.99878 -.......\write1{\new@label@record{mcid-93}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{93}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-99}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{99}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,93,140,itemlabel,,,} -.......\marks4{b+,93,140,itemlabel,,,} +.......\marks4{b-,99,140,itemlabel,,,} +.......\marks4{b+,99,140,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\TS1/cmr/m/n/10 ^^88 .......\pdfliteral page{EMC} -.......\marks4{e-,93,140,} -.......\marks4{e+,93,140,} +.......\marks4{e-,99,140,} +.......\marks4{e+,99,140,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-94}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{94}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-100}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{100}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5620,10 +5668,10 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,94,143,text-block,,,} -...\marks4{b+,94,143,text-block,,,} -...\marks4{e-,94,143,} -...\marks4{e+,94,143,} +...\marks4{b-,100,143,text-block,,,} +...\marks4{b+,100,143,text-block,,,} +...\marks4{e-,100,143,} +...\marks4{e+,100,143,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -5633,8 +5681,8 @@ Completed box being shipped out [2] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,101,-1,} -..\marks4{b+,101,-1,} +..\marks4{b-,108,-1,} +..\marks4{b+,108,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -5642,8 +5690,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,101,154,} -..\marks4{e+,101,154,} +..\marks4{e-,108,154,} +..\marks4{e+,108,154,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [3] @@ -5661,13 +5709,13 @@ Completed box being shipped out [3] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,158,-1,} -...\marks4{b+,158,-1,} +...\marks4{b-,168,-1,} +...\marks4{b+,168,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,158,252,} -...\marks4{e+,158,252,} +...\marks4{e-,168,252,} +...\marks4{e+,168,252,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -5675,18 +5723,30 @@ Completed box being shipped out [3] ...\hbox(0.0+0.0)x0.0 ...\glue(\topskip) 1.0022 ...\hbox(8.9978+2.99927)x345.0, glue set 142.94666fil -....\write1{\new@label@record{mcid-95}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{95}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-101}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{101}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,101,146,heading-number,,,} +.....\marks4{b+,101,146,heading-number,,,} .....\T1/cmr/bx/n/12 2 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,101,146,} +.....\marks4{e+,101,146,} +.....\write1{\new@label@record{mcid-102}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{102}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,102,145,subsection,,,} +.....\marks4{b+,102,145,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-96}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{96}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,102,145,} +.....\marks4{e+,102,145,} +....\write1{\new@label@record{mcid-103}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{103}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 E ....\T1/cmr/bx/n/12 x @@ -5717,18 +5777,14 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/12 t ....\T1/cmr/bx/n/12 e ....\T1/cmr/bx/n/12 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,95,146,section-number,,,} -...\marks4{b+,95,146,section-number,,,} -...\marks4{e-,95,146,} -...\marks4{e+,95,146,} -...\marks4{b-,96,145,subsection,,,} -...\marks4{b+,96,145,subsection,,,} -...\marks4{e-,96,145,} -...\marks4{e+,96,145,} +...\marks4{b-,103,145,subsection,,,} +...\marks4{b+,103,145,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,103,145,} +...\marks4{e+,103,145,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {2.2}Example for list\protect \xspace (enumerate)}{\thepage }{target*.22}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -5743,19 +5799,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-97}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{97}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-104}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{104}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,97,150,itemlabel,,,} -.......\marks4{b+,97,150,itemlabel,,,} +.......\marks4{b-,104,150,itemlabel,,,} +.......\marks4{b+,104,150,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 1 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,97,150,} -.......\marks4{e+,97,150,} +.......\marks4{e-,104,150,} +.......\marks4{e+,104,150,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-98}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{98}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-105}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{105}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5777,10 +5833,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,98,153,text-block,,,} -...\marks4{b+,98,153,text-block,,,} -...\marks4{e-,98,153,} -...\marks4{e+,98,153,} +...\marks4{b-,105,153,text-block,,,} +...\marks4{b+,105,153,text-block,,,} +...\marks4{e-,105,153,} +...\marks4{e+,105,153,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5792,19 +5848,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-102}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{102}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-109}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{109}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,102,155,itemlabel,,,} -.......\marks4{b+,102,155,itemlabel,,,} +.......\marks4{b-,109,155,itemlabel,,,} +.......\marks4{b+,109,155,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 2 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,102,155,} -.......\marks4{e+,102,155,} +.......\marks4{e-,109,155,} +.......\marks4{e+,109,155,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-103}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{103}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-110}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{110}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5827,10 +5883,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,103,158,text-block,,,} -...\marks4{b+,103,158,text-block,,,} -...\marks4{e-,103,158,} -...\marks4{e+,103,158,} +...\marks4{b-,110,158,text-block,,,} +...\marks4{b+,110,158,text-block,,,} +...\marks4{e-,110,158,} +...\marks4{e+,110,158,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5842,19 +5898,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-104}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{104}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-111}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{111}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,104,160,itemlabel,,,} -.......\marks4{b+,104,160,itemlabel,,,} +.......\marks4{b-,111,160,itemlabel,,,} +.......\marks4{b+,111,160,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 3 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,104,160,} -.......\marks4{e+,104,160,} +.......\marks4{e-,111,160,} +.......\marks4{e+,111,160,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-105}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{105}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-112}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{112}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 L @@ -5875,10 +5931,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,105,163,text-block,,,} -...\marks4{b+,105,163,text-block,,,} -...\marks4{e-,105,163,} -...\marks4{e+,105,163,} +...\marks4{b-,112,163,text-block,,,} +...\marks4{b+,112,163,text-block,,,} +...\marks4{e-,112,163,} +...\marks4{e+,112,163,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5890,19 +5946,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-106}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{106}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-113}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{113}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,106,165,itemlabel,,,} -.......\marks4{b+,106,165,itemlabel,,,} +.......\marks4{b-,113,165,itemlabel,,,} +.......\marks4{b+,113,165,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 4 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,106,165,} -.......\marks4{e+,106,165,} +.......\marks4{e-,113,165,} +.......\marks4{e+,113,165,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-107}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{107}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-114}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{114}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -5924,10 +5980,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,107,168,text-block,,,} -...\marks4{b+,107,168,text-block,,,} -...\marks4{e-,107,168,} -...\marks4{e+,107,168,} +...\marks4{b-,114,168,text-block,,,} +...\marks4{b+,114,168,text-block,,,} +...\marks4{e-,114,168,} +...\marks4{e+,114,168,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -5939,19 +5995,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-108}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{108}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-115}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{115}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,108,170,itemlabel,,,} -.......\marks4{b+,108,170,itemlabel,,,} +.......\marks4{b-,115,170,itemlabel,,,} +.......\marks4{b+,115,170,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 5 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,108,170,} -.......\marks4{e+,108,170,} +.......\marks4{e-,115,170,} +.......\marks4{e+,115,170,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-109}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{109}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-116}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{116}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -5974,10 +6030,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,109,173,text-block,,,} -...\marks4{b+,109,173,text-block,,,} -...\marks4{e-,109,173,} -...\marks4{e+,109,173,} +...\marks4{b-,116,173,text-block,,,} +...\marks4{b+,116,173,text-block,,,} +...\marks4{e-,116,173,} +...\marks4{e+,116,173,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -5989,20 +6045,32 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.50183 ...\hbox(7.49817+2.49939)x345.0, glue set 152.26096fil -....\write1{\new@label@record{mcid-110}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{110}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(6.48453+0.0)x35.13031 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-117}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{117}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,117,176,heading-number,,,} +.....\marks4{b+,117,176,heading-number,,,} .....\T1/cmr/bx/n/10 2 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 2 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,117,176,} +.....\marks4{e+,117,176,} +.....\write1{\new@label@record{mcid-118}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{118}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsubsection <> BDC} +.....\marks4{b-,118,175,subsubsection,,,} +.....\marks4{b+,118,175,subsubsection,,,} .....\glue 11.4972 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-111}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{111}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,118,175,} +.....\marks4{e+,118,175,} +....\write1{\new@label@record{mcid-119}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{119}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsubsection <> BDC} ....\T1/cmr/bx/n/10 E ....\T1/cmr/bx/n/10 x @@ -6035,18 +6103,14 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/10 t ....\T1/cmr/bx/n/10 e ....\T1/cmr/bx/n/10 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,110,176,section-number,,,} -...\marks4{b+,110,176,section-number,,,} -...\marks4{e-,110,176,} -...\marks4{e+,110,176,} -...\marks4{b-,111,175,subsubsection,,,} -...\marks4{b+,111,175,subsubsection,,,} -...\marks4{e-,111,175,} -...\marks4{e+,111,175,} +...\marks4{b-,119,175,subsubsection,,,} +...\marks4{b+,119,175,subsubsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,119,175,} +...\marks4{e+,119,175,} ...\write1{\@writefile{toc}{\protect \contentsline {subsubsection}{\protect \numberline {2.2.1}Example for list\protect \xspace (4*enumerate)}{\thepage }{target*.28}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -6061,19 +6125,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-112}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{112}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-120}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{120}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,112,180,itemlabel,,,} -.......\marks4{b+,112,180,itemlabel,,,} +.......\marks4{b-,120,180,itemlabel,,,} +.......\marks4{b+,120,180,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 1 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,112,180,} -.......\marks4{e+,112,180,} +.......\marks4{e-,120,180,} +.......\marks4{e+,120,180,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-113}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{113}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-121}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{121}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -6095,10 +6159,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,113,183,text-block,,,} -...\marks4{b+,113,183,text-block,,,} -...\marks4{e-,113,183,} -...\marks4{e+,113,183,} +...\marks4{b-,121,183,text-block,,,} +...\marks4{b+,121,183,text-block,,,} +...\marks4{e-,121,183,} +...\marks4{e+,121,183,} ...\penalty -51 ...\glue 8.0 plus 4.0 minus 2.0 ...\glue -8.0 plus -4.0 minus -2.0 @@ -6112,20 +6176,20 @@ Completed box being shipped out [3] .....\hbox(7.49817+2.49939)x16.99582, glue set 4.22116fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(7.49817+2.49939)x12.77466 -.......\write1{\new@label@record{mcid-114}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{114}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-122}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{122}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,114,186,itemlabel,,,} -.......\marks4{b+,114,186,itemlabel,,,} +.......\marks4{b-,122,186,itemlabel,,,} +.......\marks4{b+,122,186,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 ( .......\T1/cmr/m/n/10 a .......\T1/cmr/m/n/10 ) .......\pdfliteral page{EMC} -.......\marks4{e-,114,186,} -.......\marks4{e+,114,186,} +.......\marks4{e-,122,186,} +.......\marks4{e+,122,186,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-115}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{115}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-123}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{123}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -6147,10 +6211,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,115,189,text-block,,,} -...\marks4{b+,115,189,text-block,,,} -...\marks4{e-,115,189,} -...\marks4{e+,115,189,} +...\marks4{b-,123,189,text-block,,,} +...\marks4{b+,123,189,text-block,,,} +...\marks4{e-,123,189,} +...\marks4{e+,123,189,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 2.0 ...\glue(\parskip) 0.0 @@ -6162,19 +6226,19 @@ Completed box being shipped out [3] .....\hbox(6.63332+0.0)x13.6966, glue set 8.1424fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.63332+0.0)x5.5542 -.......\write1{\new@label@record{mcid-116}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{116}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-124}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{124}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,116,192,itemlabel,,,} -.......\marks4{b+,116,192,itemlabel,,,} +.......\marks4{b-,124,192,itemlabel,,,} +.......\marks4{b+,124,192,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,116,192,} -.......\marks4{e+,116,192,} +.......\marks4{e-,124,192,} +.......\marks4{e+,124,192,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-117}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{117}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-125}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{125}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -6196,10 +6260,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,117,195,text-block,,,} -...\marks4{b+,117,195,text-block,,,} -...\marks4{e-,117,195,} -...\marks4{e+,117,195,} +...\marks4{b-,125,195,text-block,,,} +...\marks4{b+,125,195,text-block,,,} +...\marks4{e-,125,195,} +...\marks4{e+,125,195,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -6211,19 +6275,19 @@ Completed box being shipped out [3] .....\hbox(6.8872+0.0)x11.99704, glue set 1.72177fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.8872+0.0)x10.27527 -.......\write1{\new@label@record{mcid-118}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{118}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-126}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{126}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,118,198,itemlabel,,,} -.......\marks4{b+,118,198,itemlabel,,,} +.......\marks4{b-,126,198,itemlabel,,,} +.......\marks4{b+,126,198,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,118,198,} -.......\marks4{e+,118,198,} +.......\marks4{e-,126,198,} +.......\marks4{e+,126,198,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-119}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{119}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-127}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{127}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -6245,10 +6309,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,119,201,text-block,,,} -...\marks4{b+,119,201,text-block,,,} -...\marks4{e-,119,201,} -...\marks4{e+,119,201,} +...\marks4{b-,127,201,text-block,,,} +...\marks4{b+,127,201,text-block,,,} +...\marks4{e-,127,201,} +...\marks4{e+,127,201,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -6260,19 +6324,19 @@ Completed box being shipped out [3] .....\hbox(6.8872+0.0)x11.99704, glue set 2.13834fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.8872+0.0)x9.8587 -.......\write1{\new@label@record{mcid-120}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{120}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-128}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{128}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,120,203,itemlabel,,,} -.......\marks4{b+,120,203,itemlabel,,,} +.......\marks4{b-,128,203,itemlabel,,,} +.......\marks4{b+,128,203,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 B .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,120,203,} -.......\marks4{e+,120,203,} +.......\marks4{e-,128,203,} +.......\marks4{e+,128,203,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-121}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{121}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-129}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{129}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -6295,10 +6359,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,121,206,text-block,,,} -...\marks4{b+,121,206,text-block,,,} -...\marks4{e-,121,206,} -...\marks4{e+,121,206,} +...\marks4{b-,129,206,text-block,,,} +...\marks4{b+,129,206,text-block,,,} +...\marks4{e-,129,206,} +...\marks4{e+,129,206,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -6313,20 +6377,20 @@ Completed box being shipped out [3] .....\hbox(6.63332+0.0)x13.6966, glue set 5.3653fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.63332+0.0)x8.3313 -.......\write1{\new@label@record{mcid-122}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{122}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-130}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{130}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,122,208,itemlabel,,,} -.......\marks4{b+,122,208,itemlabel,,,} +.......\marks4{b-,130,208,itemlabel,,,} +.......\marks4{b+,130,208,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,122,208,} -.......\marks4{e+,122,208,} +.......\marks4{e-,130,208,} +.......\marks4{e+,130,208,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-123}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{123}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-131}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{131}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 L @@ -6347,10 +6411,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,123,211,text-block,,,} -...\marks4{b+,123,211,text-block,,,} -...\marks4{e-,123,211,} -...\marks4{e+,123,211,} +...\marks4{b-,131,211,text-block,,,} +...\marks4{b+,131,211,text-block,,,} +...\marks4{e-,131,211,} +...\marks4{e+,131,211,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -6365,20 +6429,20 @@ Completed box being shipped out [3] .....\hbox(7.49817+2.49939)x16.99582, glue set 3.66574fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(7.49817+2.49939)x13.33008 -.......\write1{\new@label@record{mcid-124}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{124}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-132}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{132}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,124,213,itemlabel,,,} -.......\marks4{b+,124,213,itemlabel,,,} +.......\marks4{b-,132,213,itemlabel,,,} +.......\marks4{b+,132,213,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 ( .......\T1/cmr/m/n/10 b .......\T1/cmr/m/n/10 ) .......\pdfliteral page{EMC} -.......\marks4{e-,124,213,} -.......\marks4{e+,124,213,} +.......\marks4{e-,132,213,} +.......\marks4{e+,132,213,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-125}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{125}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-133}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{133}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 F @@ -6400,10 +6464,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,125,216,text-block,,,} -...\marks4{b+,125,216,text-block,,,} -...\marks4{e-,125,216,} -...\marks4{e+,125,216,} +...\marks4{b-,133,216,text-block,,,} +...\marks4{b+,133,216,text-block,,,} +...\marks4{e-,133,216,} +...\marks4{e+,133,216,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue -6.49939 plus -2.0 minus -1.0 @@ -6419,19 +6483,19 @@ Completed box being shipped out [3] .....\hbox(6.4151+0.0)x19.99512, glue set 12.21924fil ......\glue 0.0 plus 1.0fil minus 1.0fil ......\hbox(6.4151+0.0)x7.77588 -.......\write1{\new@label@record{mcid-126}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{126}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-134}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{134}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/itemlabel <> BDC} -.......\marks4{b-,126,218,itemlabel,,,} -.......\marks4{b+,126,218,itemlabel,,,} +.......\marks4{b-,134,218,itemlabel,,,} +.......\marks4{b+,134,218,itemlabel,,,} .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\T1/cmr/m/n/10 2 .......\T1/cmr/m/n/10 . .......\pdfliteral page{EMC} -.......\marks4{e-,126,218,} -.......\marks4{e+,126,218,} +.......\marks4{e-,134,218,} +.......\marks4{e+,134,218,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-127}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{127}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-135}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{135}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 S @@ -6454,10 +6518,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,127,221,text-block,,,} -...\marks4{b+,127,221,text-block,,,} -...\marks4{e-,127,221,} -...\marks4{e+,127,221,} +...\marks4{b-,135,221,text-block,,,} +...\marks4{b+,135,221,text-block,,,} +...\marks4{e-,135,221,} +...\marks4{e+,135,221,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -6469,18 +6533,30 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.0022 ...\hbox(8.9978+2.99927)x345.0, glue set 139.62938fil -....\write1{\new@label@record{mcid-128}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{128}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-136}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{136}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,136,224,heading-number,,,} +.....\marks4{b+,136,224,heading-number,,,} .....\T1/cmr/bx/n/12 2 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 3 +.....\pdfliteral page{EMC} +.....\marks4{e-,136,224,} +.....\marks4{e+,136,224,} +.....\write1{\new@label@record{mcid-137}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{137}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,137,223,subsection,,,} +.....\marks4{b+,137,223,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-129}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{129}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,137,223,} +.....\marks4{e+,137,223,} +....\write1{\new@label@record{mcid-138}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{138}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 E ....\T1/cmr/bx/n/12 x @@ -6512,18 +6588,14 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/12 o ....\T1/cmr/bx/n/12 n ....\T1/cmr/bx/n/12 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,128,224,section-number,,,} -...\marks4{b+,128,224,section-number,,,} -...\marks4{e-,128,224,} -...\marks4{e+,128,224,} -...\marks4{b-,129,223,subsection,,,} -...\marks4{b+,129,223,subsection,,,} -...\marks4{e-,129,223,} -...\marks4{e+,129,223,} +...\marks4{b-,138,223,subsection,,,} +...\marks4{b+,138,223,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,138,223,} +...\marks4{e+,138,223,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {2.3}Example for list\protect \xspace (description)}{\thepage }{target*.37}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -6536,10 +6608,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x4.17398 .....\glue -24.9939 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-130}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{130}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-139}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{139}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,130,228,itemlabel,,,} -......\marks4{b+,130,228,itemlabel,,,} +......\marks4{b-,139,228,itemlabel,,,} +......\marks4{b+,139,228,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6548,10 +6620,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,130,228,} -......\marks4{e+,130,228,} +......\marks4{e-,139,228,} +......\marks4{e+,139,228,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-131}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{131}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-140}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{140}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6567,10 +6639,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,131,231,text-block,,,} -...\marks4{b+,131,231,text-block,,,} -...\marks4{e-,131,231,} -...\marks4{e+,131,231,} +...\marks4{b-,140,231,text-block,,,} +...\marks4{b+,140,231,text-block,,,} +...\marks4{e-,140,231,} +...\marks4{e+,140,231,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -6580,10 +6652,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x15.29488 .....\glue -24.9939 .....\hbox(6.9011+0.0)x35.29 -......\write1{\new@label@record{mcid-132}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{132}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-141}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{141}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,132,233,itemlabel,,,} -......\marks4{b+,132,233,itemlabel,,,} +......\marks4{b-,141,233,itemlabel,,,} +......\marks4{b+,141,233,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 S @@ -6593,10 +6665,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 n ......\T1/cmr/bx/n/10 d ......\pdfliteral page{EMC} -......\marks4{e-,132,233,} -......\marks4{e+,132,233,} +......\marks4{e-,141,233,} +......\marks4{e+,141,233,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-133}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{133}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-142}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{142}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6612,10 +6684,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,133,236,text-block,,,} -...\marks4{b+,133,236,text-block,,,} -...\marks4{e-,133,236,} -...\marks4{e+,133,236,} +...\marks4{b-,142,236,text-block,,,} +...\marks4{b+,142,236,text-block,,,} +...\marks4{e-,142,236,} +...\marks4{e+,142,236,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -6625,10 +6697,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x1.51491 .....\glue -24.9939 .....\hbox(6.9011+0.0)x21.51003 -......\write1{\new@label@record{mcid-134}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{134}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-143}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{143}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,134,238,itemlabel,,,} -......\marks4{b+,134,238,itemlabel,,,} +......\marks4{b-,143,238,itemlabel,,,} +......\marks4{b+,143,238,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 L @@ -6636,10 +6708,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,134,238,} -......\marks4{e+,134,238,} +......\marks4{e-,143,238,} +......\marks4{e+,143,238,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-135}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{135}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-144}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{144}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6655,10 +6727,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,135,241,text-block,,,} -...\marks4{b+,135,241,text-block,,,} -...\marks4{e-,135,241,} -...\marks4{e+,135,241,} +...\marks4{b-,144,241,text-block,,,} +...\marks4{b+,144,241,text-block,,,} +...\marks4{e-,144,241,} +...\marks4{e+,144,241,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -6668,10 +6740,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x4.17398 .....\glue -24.9939 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-136}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{136}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-145}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{145}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,136,243,itemlabel,,,} -......\marks4{b+,136,243,itemlabel,,,} +......\marks4{b-,145,243,itemlabel,,,} +......\marks4{b+,145,243,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6680,10 +6752,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,136,243,} -......\marks4{e+,136,243,} +......\marks4{e-,145,243,} +......\marks4{e+,145,243,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-137}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{137}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-146}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{146}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6699,10 +6771,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,137,246,text-block,,,} -...\marks4{b+,137,246,text-block,,,} -...\marks4{e-,137,246,} -...\marks4{e+,137,246,} +...\marks4{b-,146,246,text-block,,,} +...\marks4{b+,146,246,text-block,,,} +...\marks4{e-,146,246,} +...\marks4{e+,146,246,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue(\parskip) 4.0 plus 2.0 minus 1.0 @@ -6712,10 +6784,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x15.29488 .....\glue -24.9939 .....\hbox(6.9011+0.0)x35.29 -......\write1{\new@label@record{mcid-138}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{138}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-147}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{147}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,138,248,itemlabel,,,} -......\marks4{b+,138,248,itemlabel,,,} +......\marks4{b-,147,248,itemlabel,,,} +......\marks4{b+,147,248,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 S @@ -6725,10 +6797,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 n ......\T1/cmr/bx/n/10 d ......\pdfliteral page{EMC} -......\marks4{e-,138,248,} -......\marks4{e+,138,248,} +......\marks4{e-,147,248,} +......\marks4{e+,147,248,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-139}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{139}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-148}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{148}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6744,10 +6816,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,139,251,text-block,,,} -...\marks4{b+,139,251,text-block,,,} -...\marks4{e-,139,251,} -...\marks4{e+,139,251,} +...\marks4{b-,148,251,text-block,,,} +...\marks4{b+,148,251,text-block,,,} +...\marks4{e-,148,251,} +...\marks4{e+,148,251,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\glue -10.0 plus -3.0 minus -5.0 @@ -6759,20 +6831,32 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 4.50183 ...\hbox(7.49817+2.49939)x345.0, glue set 149.48247fil -....\write1{\new@label@record{mcid-140}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{140}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(6.48453+0.0)x35.13031 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-149}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{149}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,149,254,heading-number,,,} +.....\marks4{b+,149,254,heading-number,,,} .....\T1/cmr/bx/n/10 2 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 3 .....\T1/cmr/bx/n/10 . .....\T1/cmr/bx/n/10 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,149,254,} +.....\marks4{e+,149,254,} +.....\write1{\new@label@record{mcid-150}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{150}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsubsection <> BDC} +.....\marks4{b-,150,253,subsubsection,,,} +.....\marks4{b+,150,253,subsubsection,,,} .....\glue 11.4972 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-141}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{141}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,150,253,} +.....\marks4{e+,150,253,} +....\write1{\new@label@record{mcid-151}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{151}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsubsection <> BDC} ....\T1/cmr/bx/n/10 E ....\T1/cmr/bx/n/10 x @@ -6806,18 +6890,14 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/10 o ....\T1/cmr/bx/n/10 n ....\T1/cmr/bx/n/10 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,140,254,section-number,,,} -...\marks4{b+,140,254,section-number,,,} -...\marks4{e-,140,254,} -...\marks4{e+,140,254,} -...\marks4{b-,141,253,subsubsection,,,} -...\marks4{b+,141,253,subsubsection,,,} -...\marks4{e-,141,253,} -...\marks4{e+,141,253,} +...\marks4{b-,151,253,subsubsection,,,} +...\marks4{b+,151,253,subsubsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,151,253,} +...\marks4{e+,151,253,} ...\write1{\@writefile{toc}{\protect \contentsline {subsubsection}{\protect \numberline {2.3.1}Example for list\protect \xspace (4*description)}{\thepage }{target*.43}\protected@file@percent }} ...\penalty 10000 ...\glue 6.45676 plus 0.86089 @@ -6830,10 +6910,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x4.17398 .....\glue -24.9939 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-142}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{142}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-152}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{152}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,142,258,itemlabel,,,} -......\marks4{b+,142,258,itemlabel,,,} +......\marks4{b-,152,258,itemlabel,,,} +......\marks4{b+,152,258,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6842,10 +6922,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,142,258,} -......\marks4{e+,142,258,} +......\marks4{e-,152,258,} +......\marks4{e+,152,258,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-143}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{143}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-153}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{153}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6861,10 +6941,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,143,261,text-block,,,} -...\marks4{b+,143,261,text-block,,,} -...\marks4{e-,143,261,} -...\marks4{e+,143,261,} +...\marks4{b-,153,261,text-block,,,} +...\marks4{b+,153,261,text-block,,,} +...\marks4{e-,153,261,} +...\marks4{e+,153,261,} ...\penalty -51 ...\glue 8.0 plus 4.0 minus 2.0 ...\glue -8.0 plus -4.0 minus -2.0 @@ -6876,10 +6956,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x7.17328 .....\glue -21.9946 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-144}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{144}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-154}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{154}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,144,264,itemlabel,,,} -......\marks4{b+,144,264,itemlabel,,,} +......\marks4{b-,154,264,itemlabel,,,} +......\marks4{b+,154,264,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6888,10 +6968,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,144,264,} -......\marks4{e+,144,264,} +......\marks4{e-,154,264,} +......\marks4{e+,154,264,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-145}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{145}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-155}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{155}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6907,10 +6987,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,145,267,text-block,,,} -...\marks4{b+,145,267,text-block,,,} -...\marks4{e-,145,267,} -...\marks4{e+,145,267,} +...\marks4{b-,155,267,text-block,,,} +...\marks4{b+,155,267,text-block,,,} +...\marks4{e-,155,267,} +...\marks4{e+,155,267,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 2.0 ...\glue(\parskip) 0.0 @@ -6920,10 +7000,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x10.4725 .....\glue -18.69537 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-146}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{146}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-156}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{156}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,146,270,itemlabel,,,} -......\marks4{b+,146,270,itemlabel,,,} +......\marks4{b-,156,270,itemlabel,,,} +......\marks4{b+,156,270,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6932,10 +7012,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,146,270,} -......\marks4{e+,146,270,} +......\marks4{e-,156,270,} +......\marks4{e+,156,270,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-147}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{147}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-157}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{157}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6951,10 +7031,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,147,273,text-block,,,} -...\marks4{b+,147,273,text-block,,,} -...\marks4{e-,147,273,} -...\marks4{e+,147,273,} +...\marks4{b-,157,273,text-block,,,} +...\marks4{b+,157,273,text-block,,,} +...\marks4{e-,157,273,} +...\marks4{e+,157,273,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -6964,10 +7044,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x12.17206 .....\glue -16.99582 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-148}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{148}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-158}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{158}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,148,276,itemlabel,,,} -......\marks4{b+,148,276,itemlabel,,,} +......\marks4{b-,158,276,itemlabel,,,} +......\marks4{b+,158,276,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -6976,10 +7056,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,148,276,} -......\marks4{e+,148,276,} +......\marks4{e-,158,276,} +......\marks4{e+,158,276,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-149}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{149}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-159}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{159}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -6995,10 +7075,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,149,279,text-block,,,} -...\marks4{b+,149,279,text-block,,,} -...\marks4{e-,149,279,} -...\marks4{e+,149,279,} +...\marks4{b-,159,279,text-block,,,} +...\marks4{b+,159,279,text-block,,,} +...\marks4{e-,159,279,} +...\marks4{e+,159,279,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue(\parskip) 0.0 @@ -7008,10 +7088,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x23.29295 .....\glue -16.99582 .....\hbox(6.9011+0.0)x35.29 -......\write1{\new@label@record{mcid-150}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{150}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-160}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{160}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,150,281,itemlabel,,,} -......\marks4{b+,150,281,itemlabel,,,} +......\marks4{b-,160,281,itemlabel,,,} +......\marks4{b+,160,281,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 S @@ -7021,10 +7101,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 n ......\T1/cmr/bx/n/10 d ......\pdfliteral page{EMC} -......\marks4{e-,150,281,} -......\marks4{e+,150,281,} +......\marks4{e-,160,281,} +......\marks4{e+,160,281,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-151}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{151}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-161}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{161}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -7040,10 +7120,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,151,284,text-block,,,} -...\marks4{b+,151,284,text-block,,,} -...\marks4{e-,151,284,} -...\marks4{e+,151,284,} +...\marks4{b-,161,284,text-block,,,} +...\marks4{b+,161,284,text-block,,,} +...\marks4{e-,161,284,} +...\marks4{e+,161,284,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -7056,10 +7136,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x7.81343 .....\glue -18.69537 .....\hbox(6.9011+0.0)x21.51003 -......\write1{\new@label@record{mcid-152}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{152}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-162}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{162}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,152,286,itemlabel,,,} -......\marks4{b+,152,286,itemlabel,,,} +......\marks4{b-,162,286,itemlabel,,,} +......\marks4{b+,162,286,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 L @@ -7067,10 +7147,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,152,286,} -......\marks4{e+,152,286,} +......\marks4{e-,162,286,} +......\marks4{e+,162,286,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-153}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{153}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-163}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{163}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -7086,10 +7166,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,153,289,text-block,,,} -...\marks4{b+,153,289,text-block,,,} -...\marks4{e-,153,289,} -...\marks4{e+,153,289,} +...\marks4{b-,163,289,text-block,,,} +...\marks4{b+,163,289,text-block,,,} +...\marks4{e-,163,289,} +...\marks4{e+,163,289,} ...\penalty -51 ...\glue 2.0 plus 1.0 minus 1.0 ...\glue -2.0 plus -1.0 minus -1.0 @@ -7102,10 +7182,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x7.17328 .....\glue -21.9946 .....\hbox(6.9011+0.0)x24.1691 -......\write1{\new@label@record{mcid-154}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{154}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-164}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{164}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,154,291,itemlabel,,,} -......\marks4{b+,154,291,itemlabel,,,} +......\marks4{b-,164,291,itemlabel,,,} +......\marks4{b+,164,291,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 F @@ -7114,10 +7194,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 s ......\T1/cmr/bx/n/10 t ......\pdfliteral page{EMC} -......\marks4{e-,154,291,} -......\marks4{e+,154,291,} +......\marks4{e-,164,291,} +......\marks4{e+,164,291,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-155}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{155}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-165}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{165}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -7133,10 +7213,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,155,294,text-block,,,} -...\marks4{b+,155,294,text-block,,,} -...\marks4{e-,155,294,} -...\marks4{e+,155,294,} +...\marks4{b-,165,294,text-block,,,} +...\marks4{b+,165,294,text-block,,,} +...\marks4{e-,165,294,} +...\marks4{e+,165,294,} ...\penalty -51 ...\glue 4.0 plus 2.0 minus 1.0 ...\glue -4.0 plus -2.0 minus -1.0 @@ -7149,10 +7229,10 @@ Completed box being shipped out [3] ....\hbox(6.9011+0.0)x15.29488 .....\glue -24.9939 .....\hbox(6.9011+0.0)x35.29 -......\write1{\new@label@record{mcid-156}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{156}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-166}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{166}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/itemlabel <> BDC} -......\marks4{b-,156,296,itemlabel,,,} -......\marks4{b+,156,296,itemlabel,,,} +......\marks4{b-,166,296,itemlabel,,,} +......\marks4{b+,166,296,itemlabel,,,} ......\hbox(0.0+0.0)x0.0 ......\penalty 10000 ......\T1/cmr/bx/n/10 S @@ -7162,10 +7242,10 @@ Completed box being shipped out [3] ......\T1/cmr/bx/n/10 n ......\T1/cmr/bx/n/10 d ......\pdfliteral page{EMC} -......\marks4{e-,156,296,} -......\marks4{e+,156,296,} +......\marks4{e-,166,296,} +......\marks4{e+,166,296,} .....\glue 4.99878 -....\write1{\new@label@record{mcid-157}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{157}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-167}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{167}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\penalty 0 ....\T1/cmr/m/n/10 i @@ -7181,10 +7261,10 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,157,299,text-block,,,} -...\marks4{b+,157,299,text-block,,,} -...\marks4{e-,157,299,} -...\marks4{e+,157,299,} +...\marks4{b-,167,299,text-block,,,} +...\marks4{b+,167,299,text-block,,,} +...\marks4{e-,167,299,} +...\marks4{e+,167,299,} ...\penalty -51 ...\glue 10.0 plus 3.0 minus 5.0 ...\kern 0.0 @@ -7194,8 +7274,8 @@ Completed box being shipped out [3] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,159,-1,} -..\marks4{b+,159,-1,} +..\marks4{b-,169,-1,} +..\marks4{b+,169,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -7203,8 +7283,8 @@ Completed box being shipped out [3] ....\T1/cmr/m/n/10 3 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,159,252,} -..\marks4{e+,159,252,} +..\marks4{e-,169,252,} +..\marks4{e+,169,252,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -7216,7 +7296,7 @@ Package pdf Info: PDF standard validation failure. (pdf) Check if the standard must be changed to PDF/A-4F Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~299 structure objects -(tagpdf) with ~159 'MC' leaf nodes. +(tagpdf) with ~169 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-firstaid/test-booktabs.tpf b/required/latex-lab/testfiles-firstaid/test-booktabs.tpf index 6be937665..189cf7eec 100644 --- a/required/latex-lab/testfiles-firstaid/test-booktabs.tpf +++ b/required/latex-lab/testfiles-firstaid/test-booktabs.tpf @@ -371,7 +371,7 @@ endobj << /Kids [54 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 56 0 obj << /justify <> @@ -390,7 +390,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -706,70 +706,70 @@ xref 0000013620 00000 n 0000013642 00000 n 0000013664 00000 n -0000019671 00000 n +0000019930 00000 n 0000013722 00000 n 0000014354 00000 n -0000016657 00000 n -0000015175 00000 n +0000016916 00000 n +0000015282 00000 n 0000000012 00000 f -0000015243 00000 n +0000015350 00000 n 0000000014 00000 f -0000015313 00000 n +0000015420 00000 n 0000000020 00000 f -0000016193 00000 n -0000015394 00000 n -0000016466 00000 n -0000016295 00000 n -0000016568 00000 n +0000016452 00000 n +0000015501 00000 n +0000016725 00000 n +0000016554 00000 n +0000016827 00000 n 0000000000 00000 f -0000016718 00000 n -0000016832 00000 n -0000016921 00000 n -0000017010 00000 n -0000017130 00000 n -0000013374 00000 n +0000016977 00000 n +0000017091 00000 n +0000017180 00000 n 0000017269 00000 n -0000017374 00000 n -0000017467 00000 n -0000017586 00000 n -0000017679 00000 n -0000017809 00000 n -0000017936 00000 n -0000018056 00000 n +0000017389 00000 n +0000013374 00000 n +0000017528 00000 n +0000017633 00000 n +0000017726 00000 n +0000017845 00000 n +0000017938 00000 n +0000018068 00000 n 0000018195 00000 n -0000018300 00000 n -0000018402 00000 n -0000018521 00000 n -0000018640 00000 n -0000018742 00000 n -0000018872 00000 n -0000019002 00000 n -0000019129 00000 n -0000019234 00000 n -0000019327 00000 n -0000019447 00000 n -0000019540 00000 n +0000018315 00000 n +0000018454 00000 n +0000018559 00000 n +0000018661 00000 n +0000018780 00000 n +0000018899 00000 n +0000019001 00000 n +0000019131 00000 n +0000019261 00000 n +0000019388 00000 n +0000019493 00000 n +0000019586 00000 n +0000019706 00000 n +0000019799 00000 n 0000000015 00000 n 0000013509 00000 n 0000012176 00000 n -0000028566 00000 n -0000028743 00000 n +0000028825 00000 n +0000029002 00000 n 0000013686 00000 n 0000013842 00000 n 0000014317 00000 n -0000015013 00000 n -0000026408 00000 n -0000019808 00000 n -0000020123 00000 n -0000026179 00000 n -0000026477 00000 n -0000028802 00000 n -0000028917 00000 n +0000015120 00000 n +0000026667 00000 n +0000020067 00000 n +0000020382 00000 n +0000026438 00000 n +0000026736 00000 n +0000029061 00000 n +0000029176 00000 n trailer << /Size 64 /Root 62 0 R /Info 63 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -29049 +29308 %%EOF diff --git a/required/latex-lab/testfiles-firstaid/test-cleveref.tlg b/required/latex-lab/testfiles-firstaid/test-cleveref.tlg index 62d44f343..758602a28 100644 --- a/required/latex-lab/testfiles-firstaid/test-cleveref.tlg +++ b/required/latex-lab/testfiles-firstaid/test-cleveref.tlg @@ -32,13 +32,13 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\pdfrunninglinkoff ....\pdfliteral page{/Artifact BMC} -....\marks4{b-,6,-1,} -....\marks4{b+,6,-1,} +....\marks4{b-,7,-1,} +....\marks4{b+,7,-1,} ....\hbox(0.0+0.0)x345.0 .....\hbox(0.0+0.0)x345.0 ....\pdfliteral page{EMC} -....\marks4{e-,6,8,} -....\marks4{e+,6,8,} +....\marks4{e-,7,8,} +....\marks4{e+,7,8,} ....\pdfrunninglinkon ...\glue 25.0 ...\glue(\lineskip) 0.0 @@ -113,21 +113,33 @@ Completed box being shipped out [1] ....\glue(\parskip) 0.0 ....\glue(\baselineskip) 6.11845 ....\hbox(9.93758+0.0)x345.0, glue set 235.02577fil -.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} -.....\pdfliteral shipout page{/section-number <> BDC} .....\hbox(9.20918+0.0)x23.75433 ......\penalty 10000 ......\hbox(0.0+0.0)x0.0 .......\hbox(0.0+0.0)x0.0, shifted -18.0 ........\pdfdest name{section.1} xyz -........\pdfdest struct32 name{section.1} xyz +........\pdfdest struct31 name{section.1} xyz ........\penalty 10000 ......\kern 0.0 ......\glue 0.0 +......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/heading-number <> BDC} +......\marks4{b-,4,10,heading-number,,,} +......\marks4{b+,4,10,heading-number,,,} ......\T1/cmr/bx/n/14.4 1 +......\pdfliteral page{EMC} +......\marks4{e-,4,10,} +......\marks4{e+,4,10,} +......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/section <> BDC} +......\marks4{b-,5,9,section,,,} +......\marks4{b+,5,9,section,,,} ......\glue 15.83623 -.....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\pdffakespace +......\pdfliteral page{EMC} +......\marks4{e-,5,9,} +......\marks4{e+,5,9,} +.....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/section <> BDC} .....\T1/cmr/bx/n/14.4 F .....\T1/cmr/bx/n/14.4 i @@ -142,18 +154,14 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 i .....\T1/cmr/bx/n/14.4 o .....\T1/cmr/bx/n/14.4 n -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{b-,4,10,section-number,,,} -....\marks4{b+,4,10,section-number,,,} -....\marks4{e-,4,10,} -....\marks4{e+,4,10,} -....\marks4{b-,5,9,section,,,} -....\marks4{b+,5,9,section,,,} -....\marks4{e-,5,9,} -....\marks4{e+,5,9,} +....\marks4{b-,6,9,section,,,} +....\marks4{b+,6,9,section,,,} +....\pdfliteral page{EMC} +....\marks4{e-,6,9,} +....\marks4{e+,6,9,} ....\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}First section}{\thepage }{section.1}\protected@file@percent }} ....\penalty 10000 ....\glue 9.90036 plus 0.86089 @@ -170,8 +178,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 0.0001fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,7,-1,} -...\marks4{b+,7,-1,} +...\marks4{b-,8,-1,} +...\marks4{b+,8,-1,} ...\glue(\baselineskip) 23.5849 ...\hbox(6.4151+0.0)x345.0 ....\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -179,8 +187,8 @@ Completed box being shipped out [1] .....\T1/cmr/m/n/10 1 .....\glue 0.0 plus 1.0fil ...\pdfliteral page{EMC} -...\marks4{e-,7,8,} -...\marks4{e+,7,8,} +...\marks4{e-,8,8,} +...\marks4{e+,8,8,} ...\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -190,7 +198,7 @@ Completed box being shipped out [1] <><> (test-cleveref.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~10 structure objects -(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) with ~8 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-firstaid/test-ltugboat.tlg b/required/latex-lab/testfiles-firstaid/test-ltugboat.tlg index 354d1f232..3aeadd787 100644 --- a/required/latex-lab/testfiles-firstaid/test-ltugboat.tlg +++ b/required/latex-lab/testfiles-firstaid/test-ltugboat.tlg @@ -34,8 +34,8 @@ Completed box being shipped out [901] ....\glue 0.0 plus 1.0fil ....\pdfrunninglinkoff ....\pdfliteral page{/Artifact BMC} -....\marks4{b-,22,-1,} -....\marks4{b+,22,-1,} +....\marks4{b-,23,-1,} +....\marks4{b+,23,-1,} ....\hbox(7.49817+2.49939)x468.0 .....\hbox(7.49817+2.49939)x468.0, glue set 172.39394fil ......\T1/cmr/m/n/10 T @@ -111,8 +111,8 @@ Completed box being shipped out [901] ......\T1/cmr/m/sl/10 1 ......\kern 0.79613 ....\pdfliteral page{EMC} -....\marks4{e-,22,27,} -....\marks4{e+,22,27,} +....\marks4{e-,23,27,} +....\marks4{e+,23,27,} ....\pdfrunninglinkon ...\glue 20.0 ...\glue(\lineskip) 0.0 @@ -230,12 +230,12 @@ Completed box being shipped out [901] ........\T1/cmr/bx/n/10 a ........\T1/cmr/bx/n/10 c ........\T1/cmr/bx/n/10 t -........\pdfliteral page{EMC} ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 plus 49.9878 .......\marks4{b-,3,10,section,,,} .......\marks4{b+,3,10,section,,,} +.......\pdfliteral page{EMC} .......\marks4{e-,3,10,} .......\marks4{e+,3,10,} .......\penalty 10000 @@ -360,12 +360,12 @@ Completed box being shipped out [901] ........\kern-0.31937 ........\T1/cmr/bx/n/10 t ........\T1/cmr/bx/n/10 s -........\pdfliteral page{EMC} ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 plus 49.9878 .......\marks4{b-,9,16,section,,,} .......\marks4{b+,9,16,section,,,} +.......\pdfliteral page{EMC} .......\marks4{e-,9,16,} .......\marks4{e+,9,16,} .......\penalty 10000 @@ -480,21 +480,33 @@ Completed box being shipped out [901] .......\glue(\parskip) 0.0 .......\glue(\baselineskip) 3.15494 .......\hbox(6.9011+1.94397)x225.0, glue set 57.62349fil -........\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} -........\pdfliteral shipout page{/section-number <> BDC} ........\hbox(6.48453+0.0)x17.24579 .........\penalty 10000 .........\hbox(0.0+0.0)x0.0 ..........\hbox(0.0+0.0)x0.0, shifted -12.0 ...........\pdfdest name{section.1} xyz -...........\pdfdest struct50 name{section.1} xyz +...........\pdfdest struct49 name{section.1} xyz ...........\penalty 10000 .........\kern 0.0 .........\glue 0.0 +.........\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +.........\pdfliteral shipout page{/heading-number <> BDC} +.........\marks4{b-,16,24,heading-number,,,} +.........\marks4{b+,16,24,heading-number,,,} .........\T1/cmr/bx/n/10 1 +.........\pdfliteral page{EMC} +.........\marks4{e-,16,24,} +.........\marks4{e+,16,24,} +.........\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +.........\pdfliteral shipout page{/section <> BDC} +.........\marks4{b-,17,23,section,,,} +.........\marks4{b+,17,23,section,,,} .........\glue 11.4972 -........\pdfliteral page{EMC} -........\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +.........\pdffakespace +.........\pdfliteral page{EMC} +.........\marks4{e-,17,23,} +.........\marks4{e+,17,23,} +........\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ........\pdfliteral shipout page{/section <> BDC} ........\T1/cmr/bx/n/10 A ........\glue 3.83199 @@ -527,18 +539,14 @@ Completed box being shipped out [901] ........\T1/cmr/bx/n/10 e ........\T1/cmr/bx/n/10 c ........\T1/cmr/bx/n/10 t -........\pdfliteral page{EMC} ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 plus 49.9878 -.......\marks4{b-,16,24,section-number,,,} -.......\marks4{b+,16,24,section-number,,,} -.......\marks4{e-,16,24,} -.......\marks4{e+,16,24,} -.......\marks4{b-,17,23,section,,,} -.......\marks4{b+,17,23,section,,,} -.......\marks4{e-,17,23,} -.......\marks4{e+,17,23,} +.......\marks4{b-,18,23,section,,,} +.......\marks4{b+,18,23,section,,,} +.......\pdfliteral page{EMC} +.......\marks4{e-,18,23,} +.......\marks4{e+,18,23,} .......\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A short history of the project}{\thepage }{section.1}\protected@file@percent }} .......\penalty 10000 .......\glue 4.0 @@ -546,7 +554,7 @@ Completed box being shipped out [901] .......\glue(\parskip) 0.0 .......\glue(\baselineskip) 3.16882 .......\hbox(6.8872+0.0)x225.0, glue set 211.66992fil -........\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +........\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ........\pdfliteral shipout page{/text-block <> BDC} ........\T1/cmr/m/n/10 b ........\T1/cmr/m/n/10 l @@ -555,10 +563,10 @@ Completed box being shipped out [901] ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 -.......\marks4{b-,18,26,text-block,,,} -.......\marks4{b+,18,26,text-block,,,} -.......\marks4{e-,18,26,} -.......\marks4{e+,18,26,} +.......\marks4{b-,19,26,text-block,,,} +.......\marks4{b+,19,26,text-block,,,} +.......\marks4{e-,19,26,} +.......\marks4{e+,19,26,} .......\penalty -300 .......\glue 8.0 plus 2.0 minus 2.0 .......\glue(\parskip) 0.0 @@ -574,7 +582,7 @@ Completed box being shipped out [901] ...........\penalty 10000 .........\kern 0.0 .........\glue 0.0 -........\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +........\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ........\pdfliteral shipout page{/section <> BDC} ........\T1/cmr/bx/n/10 R ........\T1/cmr/bx/n/10 e @@ -586,14 +594,14 @@ Completed box being shipped out [901] ........\T1/cmr/bx/n/10 c ........\T1/cmr/bx/n/10 e ........\T1/cmr/bx/n/10 s -........\pdfliteral page{EMC} ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 plus 49.9878 -.......\marks4{b-,19,28,section,,,} -.......\marks4{b+,19,28,section,,,} -.......\marks4{e-,19,28,} -.......\marks4{e+,19,28,} +.......\marks4{b-,20,28,section,,,} +.......\marks4{b+,20,28,section,,,} +.......\pdfliteral page{EMC} +.......\marks4{e-,20,28,} +.......\marks4{e+,20,28,} .......\penalty 10000 .......\glue 4.0 .......\glue -4.0 @@ -607,10 +615,10 @@ Completed box being shipped out [901] .........\hbox(7.49817+2.49939)x15.55176, glue set 4.99878fil ..........\glue 0.0 plus 1.0fil minus 1.0fil ..........\hbox(7.49817+2.49939)x10.55298 -...........\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +...........\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} ...........\pdfliteral shipout page{/itemlabel <> BDC} -...........\marks4{b-,20,32,itemlabel,,,} -...........\marks4{b+,20,32,itemlabel,,,} +...........\marks4{b-,21,32,itemlabel,,,} +...........\marks4{b+,21,32,itemlabel,,,} ...........\glue 0.0 plus 1.0fil ...........\penalty 10000 ...........\hbox(0.0+0.0)x0.0 @@ -623,10 +631,10 @@ Completed box being shipped out [901] ...........\T1/cmr/m/n/10 1 ...........\T1/cmr/m/n/10 ] ...........\pdfliteral page{EMC} -...........\marks4{e-,20,32,} -...........\marks4{e+,20,32,} +...........\marks4{e-,21,32,} +...........\marks4{e+,21,32,} .........\glue 4.99878 -........\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +........\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} ........\pdfliteral shipout page{/text-block <> BDC} ........\penalty 0 ........\T1/cmr/m/n/10 s @@ -642,10 +650,10 @@ Completed box being shipped out [901] ........\penalty 10000 ........\glue(\parfillskip) 0.0 plus 1.0fil ........\glue(\rightskip) 0.0 plus 49.9878 -.......\marks4{b-,21,35,text-block,,,} -.......\marks4{b+,21,35,text-block,,,} -.......\marks4{e-,21,35,} -.......\marks4{e+,21,35,} +.......\marks4{b-,22,35,text-block,,,} +.......\marks4{b+,22,35,text-block,,,} +.......\marks4{e-,22,35,} +.......\marks4{e+,22,35,} .......\penalty -51 .......\glue 3.0 plus 1.0 minus 1.0 .......\kern 0.0 @@ -669,8 +677,8 @@ Completed box being shipped out [901] ......\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,23,-1,} -...\marks4{b+,23,-1,} +...\marks4{b-,24,-1,} +...\marks4{b+,24,-1,} ...\glue(\baselineskip) 23.1128 ...\hbox(6.8872+1.94397)x468.0 ....\hbox(6.8872+1.94397)x468.0, glue set 356.30505fil @@ -703,8 +711,8 @@ Completed box being shipped out [901] .....\T1/cmr/m/n/10 a .....\T1/cmr/m/n/10 t ...\pdfliteral page{EMC} -...\marks4{e-,23,27,} -...\marks4{e+,23,27,} +...\marks4{e-,24,27,} +...\marks4{e+,24,27,} ...\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -717,7 +725,7 @@ Package pdf Info: PDF standard validation failure. (pdf) Check if the standard must be changed to PDF/A-4F Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~35 structure objects -(tagpdf) with ~23 'MC' leaf nodes. +(tagpdf) with ~24 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/firstaid-float-H-2.luatex.tlg b/required/latex-lab/testfiles-float/firstaid-float-H-2.luatex.tlg index 18fddeaff..b774f903f 100644 --- a/required/latex-lab/testfiles-float/firstaid-float-H-2.luatex.tlg +++ b/required/latex-lab/testfiles-float/firstaid-float-H-2.luatex.tlg @@ -17,12 +17,13 @@ TEST 1: Show PDF Tags title="abc" rolemaps-to="H1" > - - 1 - + 1 + + abc ><> (firstaid-float-H-2.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~66 structure objects -(tagpdf) with ~34 'MC' leaf nodes. +(tagpdf) with ~35 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/firstaid-float-H-2.tlg b/required/latex-lab/testfiles-float/firstaid-float-H-2.tlg index 88da51191..0ca2a29da 100644 --- a/required/latex-lab/testfiles-float/firstaid-float-H-2.tlg +++ b/required/latex-lab/testfiles-float/firstaid-float-H-2.tlg @@ -17,12 +17,13 @@ TEST 1: Show PDF Tags title="abc" rolemaps-to="H1" > - 1 - + + abc ><> (firstaid-float-H-2.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~65 structure objects -(tagpdf) with ~34 'MC' leaf nodes. +(tagpdf) with ~35 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/firstaid-float-H.luatex.tpf b/required/latex-lab/testfiles-float/firstaid-float-H.luatex.tpf index 476c716ad..b7368537a 100644 --- a/required/latex-lab/testfiles-float/firstaid-float-H.luatex.tpf +++ b/required/latex-lab/testfiles-float/firstaid-float-H.luatex.tpf @@ -1,28 +1,32 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ 89 0 obj -<< /Length 4504 >> +<< /Length 4550 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(ab)-31(c)]TJ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(some)]TJ @@ -34,7 +38,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.648 605.582 Tm [(T)83(able)]TJ @@ -46,7 +50,7 @@ BT 1 0 0 1 304.794 605.582 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 309.222 605.582 Tm [(a)]TJ @@ -62,13 +66,13 @@ BT 1 0 0 1 139.746 593.726 Tm [<0067>]TJ ET EMC -/TD<> BDC +/TD<> BDC BT /F16 9.96264 Tf 1 0 0 1 139.746 593.726 Tm [(a)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 566.229 Tm [(some)]TJ @@ -78,7 +82,7 @@ BT 1 0 0 1 173.674 566.229 Tm [(text)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 554.274 Tm [(some)]TJ @@ -90,7 +94,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.648 524.442 Tm [(T)83(able)]TJ @@ -102,7 +106,7 @@ BT 1 0 0 1 304.794 524.442 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 309.222 524.442 Tm [(a)]TJ @@ -118,13 +122,13 @@ BT 1 0 0 1 139.746 512.586 Tm [<0067>]TJ ET EMC -/TD<> BDC +/TD<> BDC BT /F16 9.96264 Tf 1 0 0 1 139.746 512.586 Tm [(a)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 485.089 Tm [(some)]TJ @@ -134,7 +138,7 @@ BT 1 0 0 1 173.674 485.089 Tm [(text)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 473.134 Tm [(some)]TJ @@ -146,7 +150,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.648 443.302 Tm [(T)83(able)]TJ @@ -158,7 +162,7 @@ BT 1 0 0 1 304.794 443.302 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 309.222 443.302 Tm [(a)]TJ @@ -174,13 +178,13 @@ BT 1 0 0 1 139.746 431.446 Tm [<0067>]TJ ET EMC -/TD<> BDC +/TD<> BDC BT /F16 9.96264 Tf 1 0 0 1 139.746 431.446 Tm [(a)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 403.949 Tm [(some)]TJ @@ -190,7 +194,7 @@ BT 1 0 0 1 173.674 403.949 Tm [(text)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 391.994 Tm [(some)]TJ @@ -202,7 +206,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.648 362.161 Tm [(T)83(able)]TJ @@ -214,7 +218,7 @@ BT 1 0 0 1 304.794 362.161 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 309.222 362.161 Tm [(a)]TJ @@ -230,13 +234,13 @@ BT 1 0 0 1 139.746 350.306 Tm [<0067>]TJ ET EMC -/TD<> BDC +/TD<> BDC BT /F16 9.96264 Tf 1 0 0 1 139.746 350.306 Tm [(a)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 322.809 Tm [(some)]TJ @@ -349,7 +353,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 27 0 R 26 0 R 29 0 R 32 0 R 33 0 R 38 0 R 42 0 R 44 0 R 47 0 R 48 0 R 53 0 R 57 0 R 59 0 R 62 0 R 63 0 R 68 0 R 71 0 R 73 0 R 76 0 R 77 0 R 82 0 R 85 0 R] +<< /Nums [0 [ 27 0 R 26 0 R 26 0 R 29 0 R 32 0 R 33 0 R 38 0 R 42 0 R 44 0 R 47 0 R 48 0 R 53 0 R 57 0 R 59 0 R 62 0 R 63 0 R 68 0 R 71 0 R 73 0 R 76 0 R 77 0 R 82 0 R 85 0 R] ] >> endobj 100 0 obj @@ -362,7 +366,7 @@ endobj << /Kids [100 0 R 101 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 103 0 obj << /justify <> @@ -381,7 +385,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -414,16 +418,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 28 0 R 41 0 R 43 0 R 56 0 R 58 0 R 60 0 R 70 0 R 72 0 R 74 0 R 84 0 R] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> ] /ID (ID.007) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> <> ] /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K [29 0 R 30 0 R 40 0 R] /ID (ID.009) >> endobj 29 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.010) >> endobj 30 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 28 0 R /K [31 0 R 34 0 R] /ID (ID.011) >> @@ -432,10 +436,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.012) >> endobj 32 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.013) >> endobj 33 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.014) >> endobj 34 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K [35 0 R 36 0 R 39 0 R] /ID (ID.015) >> @@ -450,7 +454,7 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 36 0 R /K 38 0 R /ID (ID.018) >> endobj 38 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 37 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 37 0 R /K <> /ID (ID.019) >> endobj 39 0 obj << /Type /StructElem /S /text-block /NS 15 0 R /P 34 0 R /ID (ID.020) >> @@ -462,13 +466,13 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 42 0 R /ID (ID.022) >> endobj 42 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.023) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.023) >> endobj 43 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K [44 0 R 45 0 R 55 0 R] /ID (ID.024) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.025) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.025) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 43 0 R /K [46 0 R 49 0 R] /ID (ID.026) >> @@ -477,10 +481,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 45 0 R /K [47 0 R 48 0 R] /ID (ID.027) >> endobj 47 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.028) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.028) >> endobj 48 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 46 0 R /K <> /ID (ID.029) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 46 0 R /K <> /ID (ID.029) >> endobj 49 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 45 0 R /K [50 0 R 51 0 R 54 0 R] /ID (ID.030) >> @@ -495,7 +499,7 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 51 0 R /K 53 0 R /ID (ID.033) >> endobj 53 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 52 0 R /K <> /ID (ID.034) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 52 0 R /K <> /ID (ID.034) >> endobj 54 0 obj << /Type /StructElem /S /text-block /NS 15 0 R /P 49 0 R /ID (ID.035) >> @@ -507,13 +511,13 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 57 0 R /ID (ID.037) >> endobj 57 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 56 0 R /K <> /ID (ID.038) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 56 0 R /K <> /ID (ID.038) >> endobj 58 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 59 0 R /ID (ID.039) >> endobj 59 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 58 0 R /K <> /ID (ID.040) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 58 0 R /K <> /ID (ID.040) >> endobj 60 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 25 0 R /K [61 0 R 64 0 R] /ID (ID.041) >> @@ -522,10 +526,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 60 0 R /K [62 0 R 63 0 R] /ID (ID.042) >> endobj 62 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.043) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.043) >> endobj 63 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.044) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.044) >> endobj 64 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 60 0 R /K [65 0 R 66 0 R 69 0 R] /ID (ID.045) >> @@ -540,7 +544,7 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 66 0 R /K 68 0 R /ID (ID.048) >> endobj 68 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 67 0 R /K <> /ID (ID.049) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 67 0 R /K <> /ID (ID.049) >> endobj 69 0 obj << /Type /StructElem /S /text-block /NS 15 0 R /P 64 0 R /ID (ID.050) >> @@ -549,13 +553,13 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 71 0 R /ID (ID.051) >> endobj 71 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 70 0 R /K <> /ID (ID.052) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 70 0 R /K <> /ID (ID.052) >> endobj 72 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 73 0 R /ID (ID.053) >> endobj 73 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 72 0 R /K <> /ID (ID.054) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 72 0 R /K <> /ID (ID.054) >> endobj 74 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 25 0 R /K [75 0 R 78 0 R] /ID (ID.055) >> @@ -564,10 +568,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 74 0 R /K [76 0 R 77 0 R] /ID (ID.056) >> endobj 76 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 75 0 R /K <> /ID (ID.057) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 75 0 R /K <> /ID (ID.057) >> endobj 77 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.058) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.058) >> endobj 78 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 74 0 R /K [79 0 R 80 0 R 83 0 R] /ID (ID.059) >> @@ -582,7 +586,7 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 80 0 R /K 82 0 R /ID (ID.062) >> endobj 82 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 81 0 R /K <> /ID (ID.063) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 81 0 R /K <> /ID (ID.063) >> endobj 83 0 obj << /Type /StructElem /S /text-block /NS 15 0 R /P 78 0 R /ID (ID.064) >> @@ -591,7 +595,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 85 0 R /ID (ID.065) >> endobj 85 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K <> /ID (ID.066) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K <> /ID (ID.066) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 102 0 R /ClassMap 103 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> @@ -1164,126 +1168,126 @@ endobj xref 0 119 0000000010 65535 f -0000007457 00000 n -0000007504 00000 n -0000007526 00000 n -0000007548 00000 n -0000018806 00000 n -0000007640 00000 n -0000009037 00000 n -0000011341 00000 n -0000009859 00000 n +0000007503 00000 n +0000007550 00000 n +0000007572 00000 n +0000007594 00000 n +0000019154 00000 n +0000007686 00000 n +0000009090 00000 n +0000011653 00000 n +0000010019 00000 n 0000000012 00000 f -0000009927 00000 n +0000010087 00000 n 0000000014 00000 f -0000009997 00000 n +0000010157 00000 n 0000000020 00000 f -0000010877 00000 n -0000010078 00000 n -0000011150 00000 n -0000010979 00000 n -0000011252 00000 n +0000011189 00000 n +0000010238 00000 n +0000011462 00000 n +0000011291 00000 n +0000011564 00000 n 0000000000 00000 f -0000011402 00000 n -0000011500 00000 n -0000011589 00000 n -0000011678 00000 n -0000011767 00000 n -0000011934 00000 n -0000012091 00000 n -0000012224 00000 n -0000012344 00000 n -0000012485 00000 n -0000012590 00000 n -0000012697 00000 n -0000012819 00000 n -0000012960 00000 n -0000013080 00000 n -0000013183 00000 n -0000013279 00000 n -0000013372 00000 n -0000013493 00000 n -0000013584 00000 n -0000013675 00000 n -0000013779 00000 n -0000013920 00000 n -0000014040 00000 n -0000014181 00000 n -0000014286 00000 n -0000014393 00000 n -0000014515 00000 n -0000014656 00000 n -0000014776 00000 n -0000014879 00000 n -0000014975 00000 n -0000015068 00000 n -0000015190 00000 n -0000015281 00000 n -0000015372 00000 n -0000015476 00000 n -0000015618 00000 n -0000015722 00000 n -0000015864 00000 n -0000015969 00000 n -0000016076 00000 n -0000016199 00000 n -0000016341 00000 n -0000016461 00000 n -0000016564 00000 n -0000016660 00000 n -0000016753 00000 n -0000016875 00000 n -0000016966 00000 n -0000017070 00000 n -0000017212 00000 n -0000017316 00000 n -0000017458 00000 n -0000017563 00000 n -0000017670 00000 n -0000017793 00000 n -0000017935 00000 n -0000018055 00000 n -0000018158 00000 n -0000018254 00000 n -0000018347 00000 n -0000018469 00000 n -0000018560 00000 n -0000018664 00000 n -0000018945 00000 n -0000004719 00000 n -0000004584 00000 n +0000011714 00000 n +0000011812 00000 n +0000011901 00000 n +0000011990 00000 n +0000012079 00000 n +0000012246 00000 n +0000012438 00000 n +0000012571 00000 n +0000012691 00000 n +0000012832 00000 n +0000012937 00000 n +0000013044 00000 n +0000013166 00000 n +0000013307 00000 n +0000013427 00000 n +0000013530 00000 n +0000013626 00000 n +0000013719 00000 n +0000013840 00000 n +0000013931 00000 n +0000014022 00000 n +0000014126 00000 n +0000014267 00000 n +0000014387 00000 n +0000014528 00000 n +0000014633 00000 n +0000014740 00000 n +0000014862 00000 n +0000015004 00000 n +0000015124 00000 n +0000015227 00000 n +0000015323 00000 n +0000015416 00000 n +0000015538 00000 n +0000015629 00000 n +0000015720 00000 n +0000015824 00000 n +0000015966 00000 n +0000016070 00000 n +0000016212 00000 n +0000016317 00000 n +0000016424 00000 n +0000016547 00000 n +0000016689 00000 n +0000016809 00000 n +0000016912 00000 n +0000017008 00000 n +0000017101 00000 n +0000017223 00000 n +0000017314 00000 n +0000017418 00000 n +0000017560 00000 n +0000017664 00000 n +0000017806 00000 n +0000017911 00000 n +0000018018 00000 n +0000018141 00000 n +0000018283 00000 n +0000018403 00000 n +0000018506 00000 n +0000018602 00000 n +0000018695 00000 n +0000018817 00000 n +0000018908 00000 n +0000019012 00000 n +0000019293 00000 n +0000004765 00000 n +0000004630 00000 n 0000000020 00000 n -0000055829 00000 n -0000032898 00000 n -0000057775 00000 n -0000057936 00000 n -0000004806 00000 n -0000005272 00000 n -0000005477 00000 n -0000007247 00000 n -0000007570 00000 n -0000007604 00000 n -0000007830 00000 n -0000008690 00000 n -0000008990 00000 n -0000009696 00000 n -0000031112 00000 n -0000031324 00000 n -0000031948 00000 n -0000031357 00000 n -0000032171 00000 n -0000033054 00000 n -0000033257 00000 n -0000041302 00000 n -0000033391 00000 n -0000053832 00000 n -0000041511 00000 n -0000054039 00000 n -0000055990 00000 n -0000057998 00000 n -0000058124 00000 n +0000056177 00000 n +0000033246 00000 n +0000058123 00000 n +0000058284 00000 n +0000004852 00000 n +0000005318 00000 n +0000005523 00000 n +0000007293 00000 n +0000007616 00000 n +0000007650 00000 n +0000007883 00000 n +0000008743 00000 n +0000009043 00000 n +0000009856 00000 n +0000031460 00000 n +0000031672 00000 n +0000032296 00000 n +0000031705 00000 n +0000032519 00000 n +0000033402 00000 n +0000033605 00000 n +0000041650 00000 n +0000033739 00000 n +0000054180 00000 n +0000041859 00000 n +0000054387 00000 n +0000056338 00000 n +0000058346 00000 n +0000058472 00000 n trailer << /Size 119 /Root 117 0 R /Info 118 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -58257 +58605 %%EOF diff --git a/required/latex-lab/testfiles-float/firstaid-float-H.tpf b/required/latex-lab/testfiles-float/firstaid-float-H.tpf index e66fceb12..c64dd9554 100644 --- a/required/latex-lab/testfiles-float/firstaid-float-H.tpf +++ b/required/latex-lab/testfiles-float/firstaid-float-H.tpf @@ -245,138 +245,143 @@ endstream endobj 88 0 obj << -/Length 3132 +/Length 3211 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F50 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(ab)-30(c)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 269.656 605.641 Td [(T)83(able)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 27.391 0 Td [(1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 309.221 605.641 Td [(a)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(T)83(able)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/TD <> BDC +/TD <> BDC BT /F45 9.9626 Tf 139.746 593.786 Td [(a)]TJ ET EMC -/text-block <> BDC -EMC /text-block <> BDC +EMC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 566.289 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 554.334 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 269.656 524.558 Td [(T)83(able)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 27.391 0 Td [(2:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 309.221 524.558 Td [(a)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(T)83(able)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/TD <> BDC +/TD <> BDC BT /F45 9.9626 Tf 139.746 512.703 Td [(a)]TJ ET EMC -/text-block <> BDC -EMC /text-block <> BDC +EMC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 485.206 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 473.251 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 269.656 443.475 Td [(T)83(able)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 27.391 0 Td [(3:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 309.221 443.475 Td [(a)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(T)83(able)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/TD <> BDC +/TD <> BDC BT /F45 9.9626 Tf 139.746 431.619 Td [(a)]TJ ET EMC -/text-block <> BDC -EMC /text-block <> BDC +EMC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 404.123 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 392.167 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 269.656 362.392 Td [(T)83(able)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 27.391 0 Td [(4:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 309.221 362.392 Td [(a)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(T)83(able)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/TD <> BDC +/TD <> BDC BT /F45 9.9626 Tf 139.746 350.536 Td [(a)]TJ ET EMC -/text-block <> BDC -EMC /text-block <> BDC +EMC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 323.039 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET @@ -401,7 +406,7 @@ endobj 87 0 obj << /ExtGState 1 0 R -/Font << /F47 89 0 R /F45 90 0 R /F50 91 0 R >> +/Font << /F47 89 0 R /F50 90 0 R /F45 91 0 R >> >> endobj 93 0 obj @@ -495,7 +500,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 26 0 R 25 0 R 29 0 R 40 0 R 32 0 R 33 0 R 35 0 R 38 0 R 39 0 R 42 0 R 44 0 R 55 0 R 47 0 R 48 0 R 50 0 R 53 0 R 54 0 R 57 0 R 59 0 R 62 0 R 63 0 R 65 0 R 68 0 R 69 0 R 71 0 R 73 0 R 76 0 R 77 0 R 79 0 R 82 0 R 83 0 R 85 0 R ] +<< /Nums [0 [ 26 0 R 25 0 R 25 0 R 29 0 R 40 0 R 32 0 R 33 0 R 35 0 R 38 0 R 39 0 R 42 0 R 44 0 R 55 0 R 47 0 R 48 0 R 50 0 R 53 0 R 54 0 R 57 0 R 59 0 R 62 0 R 63 0 R 65 0 R 68 0 R 69 0 R 71 0 R 73 0 R 76 0 R 77 0 R 79 0 R 82 0 R 83 0 R 85 0 R ] ] >> endobj 99 0 obj @@ -508,7 +513,7 @@ endobj << /Kids [99 0 R 100 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 102 0 obj << /justify <> @@ -527,7 +532,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -557,16 +562,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 28 0 R 41 0 R 43 0 R 56 0 R 58 0 R 60 0 R 70 0 R 72 0 R 74 0 R 84 0 R] /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <> <>] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K [29 0 R 30 0 R 40 0 R] /ID (ID.008) >> endobj 29 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.009) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.009) >> endobj 30 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 28 0 R /K [31 0 R 34 0 R] /ID (ID.010) >> @@ -575,16 +580,16 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.011) >> endobj 32 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.012) >> endobj 33 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K <> /ID (ID.013) >> endobj 34 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K [35 0 R 36 0 R 39 0 R] /ID (ID.014) >> endobj 35 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 34 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 34 0 R /K <> /ID (ID.015) >> endobj 36 0 obj << /Type /StructElem /S /Table /NS 11 0 R /P 34 0 R /K 37 0 R /ID (ID.016) >> @@ -593,25 +598,25 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 36 0 R /K 38 0 R /ID (ID.017) >> endobj 38 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 37 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 37 0 R /K <> /ID (ID.018) >> endobj 39 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 34 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 34 0 R /K <> /ID (ID.019) >> endobj 40 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 28 0 R /K <> /ID (ID.020) >> endobj 41 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 42 0 R /ID (ID.021) >> endobj 42 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K <> /ID (ID.022) >> endobj 43 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K [44 0 R 45 0 R 55 0 R] /ID (ID.023) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.024) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 43 0 R /K [46 0 R 49 0 R] /ID (ID.025) >> @@ -620,16 +625,16 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 45 0 R /K [47 0 R 48 0 R] /ID (ID.026) >> endobj 47 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.027) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.027) >> endobj 48 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 46 0 R /K <> /ID (ID.028) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 46 0 R /K <> /ID (ID.028) >> endobj 49 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 45 0 R /K [50 0 R 51 0 R 54 0 R] /ID (ID.029) >> endobj 50 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 49 0 R /K <> /ID (ID.030) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 49 0 R /K <> /ID (ID.030) >> endobj 51 0 obj << /Type /StructElem /S /Table /NS 11 0 R /P 49 0 R /K 52 0 R /ID (ID.031) >> @@ -638,25 +643,25 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 51 0 R /K 53 0 R /ID (ID.032) >> endobj 53 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 52 0 R /K <> /ID (ID.033) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 52 0 R /K <> /ID (ID.033) >> endobj 54 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 49 0 R /K <> /ID (ID.034) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 49 0 R /K <> /ID (ID.034) >> endobj 55 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.035) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.035) >> endobj 56 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 57 0 R /ID (ID.036) >> endobj 57 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 56 0 R /K <> /ID (ID.037) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 56 0 R /K <> /ID (ID.037) >> endobj 58 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 59 0 R /ID (ID.038) >> endobj 59 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 58 0 R /K <> /ID (ID.039) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 58 0 R /K <> /ID (ID.039) >> endobj 60 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K [61 0 R 64 0 R] /ID (ID.040) >> @@ -665,16 +670,16 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 60 0 R /K [62 0 R 63 0 R] /ID (ID.041) >> endobj 62 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.042) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.042) >> endobj 63 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.043) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.043) >> endobj 64 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 60 0 R /K [65 0 R 66 0 R 69 0 R] /ID (ID.044) >> endobj 65 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 64 0 R /K <> /ID (ID.045) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 64 0 R /K <> /ID (ID.045) >> endobj 66 0 obj << /Type /StructElem /S /Table /NS 11 0 R /P 64 0 R /K 67 0 R /ID (ID.046) >> @@ -683,22 +688,22 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 66 0 R /K 68 0 R /ID (ID.047) >> endobj 68 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 67 0 R /K <> /ID (ID.048) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 67 0 R /K <> /ID (ID.048) >> endobj 69 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 64 0 R /K <> /ID (ID.049) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 64 0 R /K <> /ID (ID.049) >> endobj 70 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 71 0 R /ID (ID.050) >> endobj 71 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 70 0 R /K <> /ID (ID.051) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 70 0 R /K <> /ID (ID.051) >> endobj 72 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 73 0 R /ID (ID.052) >> endobj 73 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 72 0 R /K <> /ID (ID.053) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 72 0 R /K <> /ID (ID.053) >> endobj 74 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K [75 0 R 78 0 R] /ID (ID.054) >> @@ -707,16 +712,16 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 74 0 R /K [76 0 R 77 0 R] /ID (ID.055) >> endobj 76 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 75 0 R /K <> /ID (ID.056) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 75 0 R /K <> /ID (ID.056) >> endobj 77 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.057) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.057) >> endobj 78 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 74 0 R /K [79 0 R 80 0 R 83 0 R] /ID (ID.058) >> endobj 79 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 78 0 R /K <> /ID (ID.059) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 78 0 R /K <> /ID (ID.059) >> endobj 80 0 obj << /Type /StructElem /S /Table /NS 11 0 R /P 78 0 R /K 81 0 R /ID (ID.060) >> @@ -725,25 +730,25 @@ endobj << /Type /StructElem /S /TR /NS 11 0 R /P 80 0 R /K 82 0 R /ID (ID.061) >> endobj 82 0 obj -<< /Type /StructElem /S /TD /NS 11 0 R /P 81 0 R /K <> /ID (ID.062) >> +<< /Type /StructElem /S /TD /NS 11 0 R /P 81 0 R /K <> /ID (ID.062) >> endobj 83 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 78 0 R /K <> /ID (ID.063) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 78 0 R /K <> /ID (ID.063) >> endobj 84 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 24 0 R /K 85 0 R /ID (ID.064) >> endobj 85 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K <> /ID (ID.065) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K <> /ID (ID.065) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 101 0 R /ClassMap 102 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -103 0 obj -[333] +104 0 obj +[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj 105 0 obj -[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] +[333] endobj 106 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8] @@ -823,7 +828,7 @@ endobj /FontFile 111 0 R >> endobj -104 0 obj +103 0 obj << /Type /Encoding /Differences [49/one/two/three/four 58/colon 84/T 97/a/b/c 101/e 108/l/m 111/o 115/s/t 120/x] @@ -982,7 +987,7 @@ endobj /FirstChar 49 /LastChar 99 /Widths 106 0 R -/Encoding 104 0 R +/Encoding 103 0 R /ToUnicode 113 0 R >> endobj @@ -1130,7 +1135,7 @@ end %%EOF endstream endobj -90 0 obj +91 0 obj << /Type /Font /Subtype /Type1 @@ -1138,8 +1143,8 @@ endobj /FontDescriptor 112 0 R /FirstChar 49 /LastChar 120 -/Widths 105 0 R -/Encoding 104 0 R +/Widths 104 0 R +/Encoding 103 0 R /ToUnicode 114 0 R >> endobj @@ -1181,7 +1186,7 @@ end %%EOF endstream endobj -91 0 obj +90 0 obj << /Type /Font /Subtype /Type1 @@ -1189,7 +1194,7 @@ endobj /FontDescriptor 108 0 R /FirstChar 32 /LastChar 32 -/Widths 103 0 R +/Widths 105 0 R /ToUnicode 115 0 R >> endobj @@ -1216,128 +1221,128 @@ endobj xref 0 118 0000000010 65535 f -0000018242 00000 n -0000018289 00000 n -0000018311 00000 n -0000018333 00000 n -0000029880 00000 n -0000018425 00000 n -0000019874 00000 n -0000022178 00000 n -0000020696 00000 n +0000018321 00000 n +0000018368 00000 n +0000018390 00000 n +0000018412 00000 n +0000030259 00000 n +0000018504 00000 n +0000019960 00000 n +0000022523 00000 n +0000020889 00000 n 0000000012 00000 f -0000020764 00000 n +0000020957 00000 n 0000000014 00000 f -0000020834 00000 n +0000021027 00000 n 0000000020 00000 f -0000021714 00000 n -0000020915 00000 n -0000021987 00000 n -0000021816 00000 n -0000022089 00000 n +0000022059 00000 n +0000021108 00000 n +0000022332 00000 n +0000022161 00000 n +0000022434 00000 n 0000000000 00000 f -0000022239 00000 n -0000022337 00000 n -0000022426 00000 n -0000022515 00000 n +0000022584 00000 n 0000022682 00000 n -0000022837 00000 n -0000015370 00000 n -0000022968 00000 n -0000023088 00000 n -0000023227 00000 n -0000023332 00000 n -0000023439 00000 n -0000023559 00000 n -0000023698 00000 n -0000023818 00000 n -0000023957 00000 n -0000024053 00000 n -0000024146 00000 n -0000024265 00000 n -0000024392 00000 n -0000024519 00000 n -0000024623 00000 n -0000024762 00000 n -0000024882 00000 n -0000025022 00000 n -0000025127 00000 n -0000025234 00000 n -0000025355 00000 n -0000025495 00000 n -0000025615 00000 n -0000025755 00000 n -0000025851 00000 n -0000025944 00000 n -0000026064 00000 n -0000026192 00000 n -0000026320 00000 n -0000026424 00000 n -0000026564 00000 n -0000026668 00000 n -0000026808 00000 n -0000026913 00000 n -0000027020 00000 n -0000027141 00000 n -0000027281 00000 n -0000027401 00000 n -0000027541 00000 n -0000027637 00000 n -0000027730 00000 n -0000027850 00000 n -0000027978 00000 n -0000028082 00000 n -0000028222 00000 n -0000028326 00000 n -0000028466 00000 n -0000028571 00000 n -0000028678 00000 n -0000028799 00000 n -0000028939 00000 n -0000029059 00000 n -0000029199 00000 n -0000029295 00000 n -0000029388 00000 n -0000029508 00000 n -0000029636 00000 n -0000029740 00000 n +0000022771 00000 n +0000022860 00000 n +0000023027 00000 n +0000023215 00000 n +0000015449 00000 n +0000023346 00000 n +0000023466 00000 n +0000023605 00000 n +0000023710 00000 n +0000023817 00000 n +0000023937 00000 n +0000024076 00000 n +0000024196 00000 n +0000024335 00000 n +0000024431 00000 n +0000024524 00000 n +0000024643 00000 n +0000024770 00000 n +0000024897 00000 n +0000025001 00000 n +0000025141 00000 n +0000025261 00000 n +0000025401 00000 n +0000025506 00000 n +0000025613 00000 n +0000025734 00000 n +0000025874 00000 n +0000025994 00000 n +0000026134 00000 n +0000026230 00000 n +0000026323 00000 n +0000026443 00000 n +0000026571 00000 n +0000026699 00000 n +0000026803 00000 n +0000026943 00000 n +0000027047 00000 n +0000027187 00000 n +0000027292 00000 n +0000027399 00000 n +0000027520 00000 n +0000027660 00000 n +0000027780 00000 n +0000027920 00000 n +0000028016 00000 n +0000028109 00000 n +0000028229 00000 n +0000028357 00000 n +0000028461 00000 n +0000028601 00000 n +0000028705 00000 n +0000028845 00000 n +0000028950 00000 n +0000029057 00000 n +0000029178 00000 n +0000029318 00000 n +0000029438 00000 n +0000029578 00000 n +0000029674 00000 n +0000029767 00000 n +0000029887 00000 n +0000030015 00000 n +0000030119 00000 n 0000000015 00000 n -0000015505 00000 n +0000015584 00000 n 0000012179 00000 n -0000051978 00000 n -0000054249 00000 n -0000055145 00000 n -0000055312 00000 n -0000015593 00000 n -0000016058 00000 n -0000016263 00000 n -0000018032 00000 n -0000018355 00000 n -0000018389 00000 n -0000018685 00000 n -0000019544 00000 n -0000019828 00000 n -0000020533 00000 n -0000030019 00000 n -0000049755 00000 n -0000030042 00000 n -0000030482 00000 n -0000030799 00000 n -0000033464 00000 n -0000033684 00000 n -0000037425 00000 n -0000037656 00000 n -0000049489 00000 n -0000049888 00000 n -0000052159 00000 n -0000054431 00000 n -0000055371 00000 n -0000055497 00000 n +0000052357 00000 n +0000055524 00000 n +0000054628 00000 n +0000055691 00000 n +0000015672 00000 n +0000016137 00000 n +0000016342 00000 n +0000018111 00000 n +0000018434 00000 n +0000018468 00000 n +0000018771 00000 n +0000019630 00000 n +0000019914 00000 n +0000020726 00000 n +0000050134 00000 n +0000030398 00000 n +0000030838 00000 n +0000030861 00000 n +0000031178 00000 n +0000033843 00000 n +0000034063 00000 n +0000037804 00000 n +0000038035 00000 n +0000049868 00000 n +0000050267 00000 n +0000052538 00000 n +0000054810 00000 n +0000055750 00000 n +0000055876 00000 n trailer << /Size 118 /Root 116 0 R /Info 117 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -55630 +56009 %%EOF diff --git a/required/latex-lab/testfiles-float/float-001.luatex.tlg b/required/latex-lab/testfiles-float/float-001.luatex.tlg index 92db6cbbb..8da193782 100644 --- a/required/latex-lab/testfiles-float/float-001.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-001.luatex.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child ':Sect' --> ':section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child ':section' --> ':section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child ':section' --> ':heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child ':section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child ':heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 8 tagged /heading-number +Package tagpdf Info: Checking Parent-Child ':section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number Package tagpdf Info: Checking Parent-Child ':section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -357,8 +360,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 I @@ -540,7 +547,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~24 structure objects -(tagpdf) with ~12 'MC' leaf nodes. +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-001.tlg b/required/latex-lab/testfiles-float/float-001.tlg index 8f1e7f658..bcac9405b 100644 --- a/required/latex-lab/testfiles-float/float-001.tlg +++ b/required/latex-lab/testfiles-float/float-001.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child ':Sect' --> ':section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child ':section' --> ':section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child ':section' --> ':heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child ':section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child ':heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 7 tagged /heading-number +Package tagpdf Info: Checking Parent-Child ':section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number Package tagpdf Info: Checking Parent-Child ':section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -134,13 +137,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,11,-1,} -...\marks4{b+,11,-1,} +...\marks4{b-,12,-1,} +...\marks4{b+,12,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,11,5,} -...\marks4{e+,11,5,} +...\marks4{e-,12,5,} +...\marks4{e+,12,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -151,7 +154,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+1.94397)x345.0, glue set 312.20245fil -......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -165,16 +168,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,4,12,text-block,,,} -.....\marks4{b+,4,12,text-block,,,} -.....\marks4{e-,4,12,} -.....\marks4{e+,4,12,} +.....\marks4{b-,5,12,text-block,,,} +.....\marks4{b+,5,12,text-block,,,} +.....\marks4{e-,5,12,} +.....\marks4{e+,5,12,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces This is an example image}}{\thepage }{figure.struct.10}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+1.94397)x345.0, glue set 94.88007fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -188,7 +191,7 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 T ......\T1/cmr/m/n/10 h @@ -216,14 +219,14 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 e ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,5,14,Lbl,,,} -.....\marks4{b+,5,14,Lbl,,,} -.....\marks4{e-,5,14,} -.....\marks4{e+,5,14,} -.....\marks4{b-,6,15,text-block,,,} -.....\marks4{b+,6,15,text-block,,,} -.....\marks4{e-,6,15,} -.....\marks4{e+,6,15,} +.....\marks4{b-,6,14,Lbl,,,} +.....\marks4{b+,6,14,Lbl,,,} +.....\marks4{e-,6,14,} +.....\marks4{e+,6,14,} +.....\marks4{b-,7,15,text-block,,,} +.....\marks4{b+,7,15,text-block,,,} +.....\marks4{e-,7,15,} +.....\marks4{e+,7,15,} .....\glue 0.0 .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 @@ -234,7 +237,7 @@ Completed box being shipped out [1] .....\glue 10.0 .....\hbox(6.8872+1.94397)x345.0, glue set 92.88055fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 T ......\kern-0.83313 @@ -248,7 +251,7 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 A ......\T1/cmr/m/n/10 n @@ -277,20 +280,20 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 s ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,8,20,Lbl,,,} -.....\marks4{b+,8,20,Lbl,,,} -.....\marks4{e-,8,20,} -.....\marks4{e+,8,20,} -.....\marks4{b-,9,21,text-block,,,} -.....\marks4{b+,9,21,text-block,,,} -.....\marks4{e-,9,21,} -.....\marks4{e+,9,21,} +.....\marks4{b-,9,20,Lbl,,,} +.....\marks4{b+,9,20,Lbl,,,} +.....\marks4{e-,9,20,} +.....\marks4{e+,9,20,} +.....\marks4{b-,10,21,text-block,,,} +.....\marks4{b+,10,21,text-block,,,} +.....\marks4{e-,10,21,} +.....\marks4{e+,10,21,} .....\glue 0.0 .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+0.0)x345.0, glue set 304.982fil -......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -306,10 +309,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,10,23,text-block,,,} -.....\marks4{b+,10,23,text-block,,,} -.....\marks4{e-,10,23,} -.....\marks4{e+,10,23,} +.....\marks4{b-,11,23,text-block,,,} +.....\marks4{b+,11,23,text-block,,,} +.....\marks4{e-,11,23,} +.....\marks4{e+,11,23,} .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 ...\glue -12.0 plus -2.0 minus -2.0 @@ -318,16 +321,28 @@ Completed box being shipped out [1] ...\write-{} ...\glue(\topskip) 0.06242 ...\hbox(9.93758+0.0)x345.0, glue set 234.2053fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 I ....\T1/cmr/bx/n/14.4 n @@ -343,18 +358,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 i ....\T1/cmr/bx/n/14.4 o ....\T1/cmr/bx/n/14.4 n -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}Introduction}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -362,7 +373,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+0.0)x345.0, glue set 144.6878fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 F ....\T1/cmr/m/n/10 l @@ -416,17 +427,17 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,9,text-block,,,} -...\marks4{b+,3,9,text-block,,,} -...\marks4{e-,3,9,} -...\marks4{e+,3,9,} +...\marks4{b-,4,9,text-block,,,} +...\marks4{b+,4,9,text-block,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} ...\penalty 0 ...\penalty 10000 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.1128 ...\hbox(6.8872+0.0)x345.0, glue set 237.96692fil -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 T @@ -455,10 +466,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,7,17,text-block,,,} -...\marks4{b+,7,17,text-block,,,} -...\marks4{e-,7,17,} -...\marks4{e+,7,17,} +...\marks4{b-,8,17,text-block,,,} +...\marks4{b+,8,17,text-block,,,} +...\marks4{e-,8,17,} +...\marks4{e+,8,17,} ...\penalty 0 ...\penalty 10000 ...\kern 0.0 @@ -468,8 +479,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,12,-1,} -..\marks4{b+,12,-1,} +..\marks4{b-,13,-1,} +..\marks4{b+,13,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -477,8 +488,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,12,5,} -..\marks4{e+,12,5,} +..\marks4{e-,13,5,} +..\marks4{e+,13,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -496,7 +507,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~23 structure objects -(tagpdf) with ~12 'MC' leaf nodes. +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-002.luatex.tlg b/required/latex-lab/testfiles-float/float-002.luatex.tlg index 7f5b9713b..ab345456f 100644 --- a/required/latex-lab/testfiles-float/float-002.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-002.luatex.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 8 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -143,13 +146,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 31 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -499,8 +505,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 a @@ -553,8 +563,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 2 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 a @@ -819,7 +833,7 @@ Package tagpdf Info: closing structure 29 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~51 structure objects -(tagpdf) with ~26 'MC' leaf nodes. +(tagpdf) with ~28 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-002.tlg b/required/latex-lab/testfiles-float/float-002.tlg index 11e5b55d0..091fa3aef 100644 --- a/required/latex-lab/testfiles-float/float-002.tlg +++ b/required/latex-lab/testfiles-float/float-002.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 7 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -143,13 +146,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 30 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 30 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -289,13 +295,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,23,-1,} -...\marks4{b+,23,-1,} +...\marks4{b-,25,-1,} +...\marks4{b+,25,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,23,28,} -...\marks4{e+,23,28,} +...\marks4{e-,25,28,} +...\marks4{e+,25,28,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -306,7 +312,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.1493+0.0)x345.0, glue set 327.50427fil -......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 t @@ -317,15 +323,15 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,4,12,text-block,,,} -.....\marks4{b+,4,12,text-block,,,} -.....\marks4{e-,4,12,} -.....\marks4{e+,4,12,} +.....\marks4{b-,5,12,text-block,,,} +.....\marks4{b+,5,12,text-block,,,} +.....\marks4{e-,5,12,} +.....\marks4{e+,5,12,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 320.53375fil -......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 ^^\ (ligature fi) @@ -337,16 +343,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,5,14,text-block,,,} -.....\marks4{b+,5,14,text-block,,,} -.....\marks4{e-,5,14,} -.....\marks4{e+,5,14,} +.....\marks4{b-,6,14,text-block,,,} +.....\marks4{b+,6,14,text-block,,,} +.....\marks4{e-,6,14,} +.....\marks4{e+,6,14,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces A}}{\thepage }{figure.struct.10}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+1.94397)x345.0, glue set 146.86737fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -360,26 +366,26 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 A ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,6,16,Lbl,,,} -.....\marks4{b+,6,16,Lbl,,,} -.....\marks4{e-,6,16,} -.....\marks4{e+,6,16,} -.....\marks4{b-,7,17,text-block,,,} -.....\marks4{b+,7,17,text-block,,,} -.....\marks4{e-,7,17,} -.....\marks4{e+,7,17,} +.....\marks4{b-,7,16,Lbl,,,} +.....\marks4{b+,7,16,Lbl,,,} +.....\marks4{e-,7,16,} +.....\marks4{e+,7,16,} +.....\marks4{b-,8,17,text-block,,,} +.....\marks4{b+,8,17,text-block,,,} +.....\marks4{e-,8,17,} +.....\marks4{e+,8,17,} .....\glue 0.0 .....\write1{\newlabel{fig:1}{{1}{\thepage }{abc}{figure.struct.10}{}}} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+0.0)x345.0, glue set 275.82245fil -......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 S @@ -400,10 +406,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,8,19,text-block,,,} -.....\marks4{b+,8,19,text-block,,,} -.....\marks4{e-,8,19,} -.....\marks4{e+,8,19,} +.....\marks4{b-,9,19,text-block,,,} +.....\marks4{b+,9,19,text-block,,,} +.....\marks4{e-,9,19,} +.....\marks4{e+,9,19,} .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(28.8872+0.0)x345.0 @@ -413,7 +419,7 @@ Completed box being shipped out [1] .....\glue 10.0 .....\hbox(6.8872+0.0)x345.0, glue set 140.56335fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 T ......\kern-0.83313 @@ -427,7 +433,7 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 T ......\kern-0.83313 @@ -437,20 +443,20 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 e ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,9,22,Lbl,,,} -.....\marks4{b+,9,22,Lbl,,,} -.....\marks4{e-,9,22,} -.....\marks4{e+,9,22,} -.....\marks4{b-,10,23,text-block,,,} -.....\marks4{b+,10,23,text-block,,,} -.....\marks4{e-,10,23,} -.....\marks4{e+,10,23,} +.....\marks4{b-,10,22,Lbl,,,} +.....\marks4{b+,10,22,Lbl,,,} +.....\marks4{e-,10,22,} +.....\marks4{e+,10,22,} +.....\marks4{b-,11,23,text-block,,,} +.....\marks4{b+,11,23,text-block,,,} +.....\marks4{e-,11,23,} +.....\marks4{e+,11,23,} .....\glue 0.0 .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 315.00732fil -......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -464,10 +470,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,11,25,text-block,,,} -.....\marks4{b+,11,25,text-block,,,} -.....\marks4{e-,11,25,} -.....\marks4{e+,11,25,} +.....\marks4{b-,12,25,text-block,,,} +.....\marks4{b+,12,25,text-block,,,} +.....\marks4{e-,12,25,} +.....\marks4{e+,12,25,} .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 ...\glue -12.0 plus -2.0 minus -2.0 @@ -476,33 +482,41 @@ Completed box being shipped out [1] ...\write-{} ...\glue(\topskip) 0.06242 ...\hbox(9.93758+0.0)x345.0, glue set 297.05144fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 ....\T1/cmr/bx/n/14.4 c -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}abc}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -510,7 +524,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.5849 ...\hbox(6.4151+0.0)x345.0, glue set 340.00122fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 1 ....\hbox(0.0+0.0)x0.0 @@ -518,10 +532,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,9,text-block,,,} -...\marks4{b+,3,9,text-block,,,} -...\marks4{e-,3,9,} -...\marks4{e+,3,9,} +...\marks4{b-,4,9,text-block,,,} +...\marks4{b+,4,9,text-block,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} ...\penalty 0 ...\penalty 10000 ...\penalty 0 @@ -532,33 +546,41 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.06242 ...\hbox(9.93758+0.0)x345.0, glue set 297.05144fil -....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,13,30,heading-number,,,} +.....\marks4{b+,13,30,heading-number,,,} .....\T1/cmr/bx/n/14.4 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,13,30,} +.....\marks4{e+,13,30,} +.....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,14,29,section,,,} +.....\marks4{b+,14,29,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,14,29,} +.....\marks4{e+,14,29,} +....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 ....\T1/cmr/bx/n/14.4 c -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,12,30,section-number,,,} -...\marks4{b+,12,30,section-number,,,} -...\marks4{e-,12,30,} -...\marks4{e+,12,30,} -...\marks4{b-,13,29,section,,,} -...\marks4{b+,13,29,section,,,} -...\marks4{e-,13,29,} -...\marks4{e+,13,29,} +...\marks4{b-,15,29,section,,,} +...\marks4{b+,15,29,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,15,29,} +...\marks4{e+,15,29,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}abc}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -568,7 +590,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.8507 ...\hbox(6.1493+0.0)x345.0, glue set 302.45483fil -....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 s ....\T1/cmr/m/n/10 o @@ -583,10 +605,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,18,40,text-block,,,} -...\marks4{b+,18,40,text-block,,,} -...\marks4{e-,18,40,} -...\marks4{e+,18,40,} +...\marks4{b-,20,40,text-block,,,} +...\marks4{b+,20,40,text-block,,,} +...\marks4{e-,20,40,} +...\marks4{e+,20,40,} ...\penalty 0 ...\penalty 10000 ...\kern 0.0 @@ -598,7 +620,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -609,15 +631,15 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,14,33,text-block,,,} -.....\marks4{b+,14,33,text-block,,,} -.....\marks4{e-,14,33,} -.....\marks4{e+,14,33,} +.....\marks4{b-,16,33,text-block,,,} +.....\marks4{b+,16,33,text-block,,,} +.....\marks4{e-,16,33,} +.....\marks4{e+,16,33,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -628,16 +650,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,15,35,text-block,,,} -.....\marks4{b+,15,35,text-block,,,} -.....\marks4{e-,15,35,} -.....\marks4{e+,15,35,} +.....\marks4{b-,17,35,text-block,,,} +.....\marks4{b+,17,35,text-block,,,} +.....\marks4{e-,17,35,} +.....\marks4{e+,17,35,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {2}{\ignorespaces B}}{\thepage }{figure.struct.31}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 147.07565fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -651,19 +673,19 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 B ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,16,37,Lbl,,,} -.....\marks4{b+,16,37,Lbl,,,} -.....\marks4{e-,16,37,} -.....\marks4{e+,16,37,} -.....\marks4{b-,17,38,text-block,,,} -.....\marks4{b+,17,38,text-block,,,} -.....\marks4{e-,17,38,} -.....\marks4{e+,17,38,} +.....\marks4{b-,18,37,Lbl,,,} +.....\marks4{b+,18,37,Lbl,,,} +.....\marks4{e-,18,37,} +.....\marks4{e+,18,37,} +.....\marks4{b-,19,38,text-block,,,} +.....\marks4{b+,19,38,text-block,,,} +.....\marks4{e-,19,38,} +.....\marks4{e+,19,38,} .....\glue 0.0 .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 @@ -673,8 +695,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,24,-1,} -..\marks4{b+,24,-1,} +..\marks4{b-,26,-1,} +..\marks4{b+,26,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -682,8 +704,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,24,28,} -..\marks4{e+,24,28,} +..\marks4{e-,26,28,} +..\marks4{e+,26,28,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -702,13 +724,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,25,-1,} -...\marks4{b+,25,-1,} +...\marks4{b-,27,-1,} +...\marks4{b+,27,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,25,28,} -...\marks4{e+,25,28,} +...\marks4{e-,27,28,} +...\marks4{e+,27,28,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -722,7 +744,7 @@ Completed box being shipped out [2] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -733,15 +755,15 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,19,43,text-block,,,} -.....\marks4{b+,19,43,text-block,,,} -.....\marks4{e-,19,43,} -.....\marks4{e+,19,43,} +.....\marks4{b-,21,43,text-block,,,} +.....\marks4{b+,21,43,text-block,,,} +.....\marks4{e-,21,43,} +.....\marks4{e+,21,43,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -752,16 +774,16 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,20,45,text-block,,,} -.....\marks4{b+,20,45,text-block,,,} -.....\marks4{e-,20,45,} -.....\marks4{e+,20,45,} +.....\marks4{b-,22,45,text-block,,,} +.....\marks4{b+,22,45,text-block,,,} +.....\marks4{e-,22,45,} +.....\marks4{e+,22,45,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {3}{\ignorespaces C}}{\thepage }{figure.struct.41}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 147.00623fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -775,26 +797,26 @@ Completed box being shipped out [2] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 C ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,21,47,Lbl,,,} -.....\marks4{b+,21,47,Lbl,,,} -.....\marks4{e-,21,47,} -.....\marks4{e+,21,47,} -.....\marks4{b-,22,48,text-block,,,} -.....\marks4{b+,22,48,text-block,,,} -.....\marks4{e-,22,48,} -.....\marks4{e+,22,48,} +.....\marks4{b-,23,47,Lbl,,,} +.....\marks4{b+,23,47,Lbl,,,} +.....\marks4{e-,23,47,} +.....\marks4{e+,23,47,} +.....\marks4{b-,24,48,text-block,,,} +.....\marks4{b+,24,48,text-block,,,} +.....\marks4{e-,24,48,} +.....\marks4{e+,24,48,} .....\glue 0.0 .....\glue 0.0 ...\glue 0.0 plus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,26,-1,} -..\marks4{b+,26,-1,} +..\marks4{b-,28,-1,} +..\marks4{b+,28,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -802,8 +824,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,26,28,} -..\marks4{e+,26,28,} +..\marks4{e-,28,28,} +..\marks4{e+,28,28,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -814,7 +836,7 @@ Package tagpdf Info: closing structure 28 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~50 structure objects -(tagpdf) with ~26 'MC' leaf nodes. +(tagpdf) with ~28 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-003.luatex.tlg b/required/latex-lab/testfiles-float/float-003.luatex.tlg index f69f688e3..bf739ad99 100644 --- a/required/latex-lab/testfiles-float/float-003.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-003.luatex.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 8 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -143,13 +146,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 31 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 31 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -499,8 +505,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 a @@ -553,8 +563,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 2 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 a @@ -819,7 +833,7 @@ Package tagpdf Info: closing structure 29 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~51 structure objects -(tagpdf) with ~26 'MC' leaf nodes. +(tagpdf) with ~28 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-003.tlg b/required/latex-lab/testfiles-float/float-003.tlg index ff065b968..f6b557990 100644 --- a/required/latex-lab/testfiles-float/float-003.tlg +++ b/required/latex-lab/testfiles-float/float-003.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 7 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -143,13 +146,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 30 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 30 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -289,13 +295,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,23,-1,} -...\marks4{b+,23,-1,} +...\marks4{b-,25,-1,} +...\marks4{b+,25,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,23,28,} -...\marks4{e+,23,28,} +...\marks4{e-,25,28,} +...\marks4{e+,25,28,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -306,7 +312,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.1493+0.0)x345.0, glue set 327.50427fil -......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 t @@ -317,15 +323,15 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,4,12,text-block,,,} -.....\marks4{b+,4,12,text-block,,,} -.....\marks4{e-,4,12,} -.....\marks4{e+,4,12,} +.....\marks4{b-,5,12,text-block,,,} +.....\marks4{b+,5,12,text-block,,,} +.....\marks4{e-,5,12,} +.....\marks4{e+,5,12,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 320.53375fil -......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 ^^\ (ligature fi) @@ -337,16 +343,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,5,14,text-block,,,} -.....\marks4{b+,5,14,text-block,,,} -.....\marks4{e-,5,14,} -.....\marks4{e+,5,14,} +.....\marks4{b-,6,14,text-block,,,} +.....\marks4{b+,6,14,text-block,,,} +.....\marks4{e-,6,14,} +.....\marks4{e+,6,14,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces A}}{\thepage }{figure.struct.10}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+1.94397)x345.0, glue set 146.86737fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -360,26 +366,26 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 A ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,6,16,Lbl,,,} -.....\marks4{b+,6,16,Lbl,,,} -.....\marks4{e-,6,16,} -.....\marks4{e+,6,16,} -.....\marks4{b-,7,17,text-block,,,} -.....\marks4{b+,7,17,text-block,,,} -.....\marks4{e-,7,17,} -.....\marks4{e+,7,17,} +.....\marks4{b-,7,16,Lbl,,,} +.....\marks4{b+,7,16,Lbl,,,} +.....\marks4{e-,7,16,} +.....\marks4{e+,7,16,} +.....\marks4{b-,8,17,text-block,,,} +.....\marks4{b+,8,17,text-block,,,} +.....\marks4{e-,8,17,} +.....\marks4{e+,8,17,} .....\glue 0.0 .....\write1{\newlabel{fig:1}{{1}{\thepage }{abc}{figure.struct.10}{}}} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+0.0)x345.0, glue set 275.82245fil -......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 S @@ -400,10 +406,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,8,19,text-block,,,} -.....\marks4{b+,8,19,text-block,,,} -.....\marks4{e-,8,19,} -.....\marks4{e+,8,19,} +.....\marks4{b-,9,19,text-block,,,} +.....\marks4{b+,9,19,text-block,,,} +.....\marks4{e-,9,19,} +.....\marks4{e+,9,19,} .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 ...\vbox(28.8872+0.0)x345.0 @@ -413,7 +419,7 @@ Completed box being shipped out [1] .....\glue 10.0 .....\hbox(6.8872+0.0)x345.0, glue set 140.56335fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 T ......\kern-0.83313 @@ -427,7 +433,7 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 T ......\kern-0.83313 @@ -437,20 +443,20 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 e ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,9,22,Lbl,,,} -.....\marks4{b+,9,22,Lbl,,,} -.....\marks4{e-,9,22,} -.....\marks4{e+,9,22,} -.....\marks4{b-,10,23,text-block,,,} -.....\marks4{b+,10,23,text-block,,,} -.....\marks4{e-,10,23,} -.....\marks4{e+,10,23,} +.....\marks4{b-,10,22,Lbl,,,} +.....\marks4{b+,10,22,Lbl,,,} +.....\marks4{e-,10,22,} +.....\marks4{e+,10,22,} +.....\marks4{b-,11,23,text-block,,,} +.....\marks4{b+,11,23,text-block,,,} +.....\marks4{e-,11,23,} +.....\marks4{e+,11,23,} .....\glue 0.0 .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 315.00732fil -......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -464,10 +470,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,11,25,text-block,,,} -.....\marks4{b+,11,25,text-block,,,} -.....\marks4{e-,11,25,} -.....\marks4{e+,11,25,} +.....\marks4{b-,12,25,text-block,,,} +.....\marks4{b+,12,25,text-block,,,} +.....\marks4{e-,12,25,} +.....\marks4{e+,12,25,} .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 ...\glue -12.0 plus -2.0 minus -2.0 @@ -476,33 +482,41 @@ Completed box being shipped out [1] ...\write-{} ...\glue(\topskip) 0.06242 ...\hbox(9.93758+0.0)x345.0, glue set 297.05144fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 ....\T1/cmr/bx/n/14.4 c -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}abc}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -510,7 +524,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.5849 ...\hbox(6.4151+0.0)x345.0, glue set 340.00122fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 1 ....\hbox(0.0+0.0)x0.0 @@ -518,10 +532,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,9,text-block,,,} -...\marks4{b+,3,9,text-block,,,} -...\marks4{e-,3,9,} -...\marks4{e+,3,9,} +...\marks4{b-,4,9,text-block,,,} +...\marks4{b+,4,9,text-block,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} ...\penalty 0 ...\penalty 10000 ...\penalty 0 @@ -532,33 +546,41 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.06242 ...\hbox(9.93758+0.0)x345.0, glue set 297.05144fil -....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,13,30,heading-number,,,} +.....\marks4{b+,13,30,heading-number,,,} .....\T1/cmr/bx/n/14.4 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,13,30,} +.....\marks4{e+,13,30,} +.....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,14,29,section,,,} +.....\marks4{b+,14,29,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,14,29,} +.....\marks4{e+,14,29,} +....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 ....\T1/cmr/bx/n/14.4 c -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,12,30,section-number,,,} -...\marks4{b+,12,30,section-number,,,} -...\marks4{e-,12,30,} -...\marks4{e+,12,30,} -...\marks4{b-,13,29,section,,,} -...\marks4{b+,13,29,section,,,} -...\marks4{e-,13,29,} -...\marks4{e+,13,29,} +...\marks4{b-,15,29,section,,,} +...\marks4{b+,15,29,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,15,29,} +...\marks4{e+,15,29,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}abc}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -568,7 +590,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.8507 ...\hbox(6.1493+0.0)x345.0, glue set 302.45483fil -....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 s ....\T1/cmr/m/n/10 o @@ -583,10 +605,10 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,18,40,text-block,,,} -...\marks4{b+,18,40,text-block,,,} -...\marks4{e-,18,40,} -...\marks4{e+,18,40,} +...\marks4{b-,20,40,text-block,,,} +...\marks4{b+,20,40,text-block,,,} +...\marks4{e-,20,40,} +...\marks4{e+,20,40,} ...\penalty 0 ...\penalty 10000 ...\kern 0.0 @@ -598,7 +620,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -609,15 +631,15 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,14,33,text-block,,,} -.....\marks4{b+,14,33,text-block,,,} -.....\marks4{e-,14,33,} -.....\marks4{e+,14,33,} +.....\marks4{b-,16,33,text-block,,,} +.....\marks4{b+,16,33,text-block,,,} +.....\marks4{e-,16,33,} +.....\marks4{e+,16,33,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -628,16 +650,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,15,35,text-block,,,} -.....\marks4{b+,15,35,text-block,,,} -.....\marks4{e-,15,35,} -.....\marks4{e+,15,35,} +.....\marks4{b-,17,35,text-block,,,} +.....\marks4{b+,17,35,text-block,,,} +.....\marks4{e-,17,35,} +.....\marks4{e+,17,35,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {2}{\ignorespaces B}}{\thepage }{figure.struct.31}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 147.07565fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -651,19 +673,19 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 B ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,16,37,Lbl,,,} -.....\marks4{b+,16,37,Lbl,,,} -.....\marks4{e-,16,37,} -.....\marks4{e+,16,37,} -.....\marks4{b-,17,38,text-block,,,} -.....\marks4{b+,17,38,text-block,,,} -.....\marks4{e-,17,38,} -.....\marks4{e+,17,38,} +.....\marks4{b-,18,37,Lbl,,,} +.....\marks4{b+,18,37,Lbl,,,} +.....\marks4{e-,18,37,} +.....\marks4{e+,18,37,} +.....\marks4{b-,19,38,text-block,,,} +.....\marks4{b+,19,38,text-block,,,} +.....\marks4{e-,19,38,} +.....\marks4{e+,19,38,} .....\glue 0.0 .....\glue 0.0 ...\glue 12.0 plus 2.0 minus 2.0 @@ -673,8 +695,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,24,-1,} -..\marks4{b+,24,-1,} +..\marks4{b-,26,-1,} +..\marks4{b+,26,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -682,8 +704,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,24,28,} -..\marks4{e+,24,28,} +..\marks4{e-,26,28,} +..\marks4{e+,26,28,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -702,13 +724,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,25,-1,} -...\marks4{b+,25,-1,} +...\marks4{b-,27,-1,} +...\marks4{b+,27,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,25,28,} -...\marks4{e+,25,28,} +...\marks4{e-,27,28,} +...\marks4{e+,27,28,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -722,7 +744,7 @@ Completed box being shipped out [2] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -733,15 +755,15 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,19,43,text-block,,,} -.....\marks4{b+,19,43,text-block,,,} -.....\marks4{e-,19,43,} -.....\marks4{e+,19,43,} +.....\marks4{b-,21,43,text-block,,,} +.....\marks4{b+,21,43,text-block,,,} +.....\marks4{e-,21,43,} +.....\marks4{e+,21,43,} .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+0.0)x345.0, glue set 329.72595fil -......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 a @@ -752,16 +774,16 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,20,45,text-block,,,} -.....\marks4{b+,20,45,text-block,,,} -.....\marks4{e-,20,45,} -.....\marks4{e+,20,45,} +.....\marks4{b-,22,45,text-block,,,} +.....\marks4{b+,22,45,text-block,,,} +.....\marks4{e-,22,45,} +.....\marks4{e+,22,45,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {3}{\ignorespaces C}}{\thepage }{figure.struct.41}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 5.1128 .....\hbox(6.8872+1.94397)x345.0, glue set 147.00623fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -775,26 +797,26 @@ Completed box being shipped out [2] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 C ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,21,47,Lbl,,,} -.....\marks4{b+,21,47,Lbl,,,} -.....\marks4{e-,21,47,} -.....\marks4{e+,21,47,} -.....\marks4{b-,22,48,text-block,,,} -.....\marks4{b+,22,48,text-block,,,} -.....\marks4{e-,22,48,} -.....\marks4{e+,22,48,} +.....\marks4{b-,23,47,Lbl,,,} +.....\marks4{b+,23,47,Lbl,,,} +.....\marks4{e-,23,47,} +.....\marks4{e+,23,47,} +.....\marks4{b-,24,48,text-block,,,} +.....\marks4{b+,24,48,text-block,,,} +.....\marks4{e-,24,48,} +.....\marks4{e+,24,48,} .....\glue 0.0 .....\glue 0.0 ...\glue 0.0 plus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,26,-1,} -..\marks4{b+,26,-1,} +..\marks4{b-,28,-1,} +..\marks4{b+,28,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -802,8 +824,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,26,28,} -..\marks4{e+,26,28,} +..\marks4{e-,28,28,} +..\marks4{e+,28,28,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -814,7 +836,7 @@ Package tagpdf Info: closing structure 28 tagged /Sect Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~50 structure objects -(tagpdf) with ~26 'MC' leaf nodes. +(tagpdf) with ~28 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-004.luatex.tlg b/required/latex-lab/testfiles-float/float-004.luatex.tlg index a7b44917a..2bffd938b 100644 --- a/required/latex-lab/testfiles-float/float-004.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-004.luatex.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 8 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -631,16 +634,20 @@ Completed box being shipped out [1] ......\penalty 10000 ......\hbox(0.0+0.0)x0.0, direction TLT .......\hbox(0.0+0.0)x0.0, shifted -18.0, direction TLT -........\pdfliteral page -........\pdfliteral page ........\pdfdest name{section.1} xyz ........\pdfdest name{section.1} xyz ........\penalty 10000 ......\kern0.0 ......\glue 0.0 +......\pdfliteral page +......\pdfliteral page ......\OT1/cmr/bx/n/14.4 1 +......\pdfliteral page +......\pdfliteral page ......\TU/lmr/m/n/10 ......\glue 12.86998 +......\TU/lmr/m/n/10 +......\glue -3.33 .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 I @@ -1812,7 +1819,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~47 structure objects -(tagpdf) with ~36 'MC' leaf nodes. +(tagpdf) with ~37 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree @@ -1820,10 +1827,10 @@ Package tagpdf Info: writing RoleMap Package tagpdf Info: writing ClassMap Package tagpdf Info: writing NameSpaces Package tagpdf Info: writing StructElems -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 10 has no kids -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 12 has no kids -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 22 has no kids -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 24 has no kids -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 27 has no kids -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 29 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 11 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 13 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 23 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 25 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 28 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 30 has no kids Package tagpdf Info: writing Root diff --git a/required/latex-lab/testfiles-float/float-004.tlg b/required/latex-lab/testfiles-float/float-004.tlg index e07efda84..62dcc5d57 100644 --- a/required/latex-lab/testfiles-float/float-004.tlg +++ b/required/latex-lab/testfiles-float/float-004.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 7 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -346,13 +349,13 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\pdfrunninglinkoff ....\pdfliteral page{/Artifact BMC} -....\marks4{b-,33,-1,} -....\marks4{b+,33,-1,} +....\marks4{b-,34,-1,} +....\marks4{b+,34,-1,} ....\hbox(0.0+0.0)x345.0 .....\hbox(0.0+0.0)x345.0 ....\pdfliteral page{EMC} -....\marks4{e-,33,5,} -....\marks4{e+,33,5,} +....\marks4{e-,34,5,} +....\marks4{e+,34,5,} ....\pdfrunninglinkon ...\glue 25.0 ...\glue(\lineskip) 0.0 @@ -365,11 +368,11 @@ Completed box being shipped out [1] ......\glue(\parskip) 0.0 ......\glue(\parskip) 0.0 ......\hbox(258.75659+0.0)x345.0 -.......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x0.0 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{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: }}} @@ -388,30 +391,30 @@ Completed box being shipped out [1] ..........\kern 345.00964 ..........\glue 0.0 plus 1.0fil minus 1.0fil .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{b-,10,15,text-block,,,} -......\marks4{b+,10,15,text-block,,,} -......\marks4{e-,10,15,} -......\marks4{e+,10,15,} -......\marks4{b-,11,16,Figure,,,} -......\marks4{b+,11,16,Figure,,,} -......\marks4{e-,11,16,} -......\marks4{e+,11,16,} -......\marks4{b-,12,15,text-block,,,} -......\marks4{b+,12,15,text-block,,,} -......\marks4{e-,12,15,} -......\marks4{e+,12,15,} +......\marks4{b-,11,15,text-block,,,} +......\marks4{b+,11,15,text-block,,,} +......\marks4{e-,11,15,} +......\marks4{e+,11,15,} +......\marks4{b-,12,16,Figure,,,} +......\marks4{b+,12,16,Figure,,,} +......\marks4{e-,12,16,} +......\marks4{e+,12,16,} +......\marks4{b-,13,15,text-block,,,} +......\marks4{b+,13,15,text-block,,,} +......\marks4{e-,13,15,} +......\marks4{e+,13,15,} ......\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces This is an example image }}{\thepage }{figure.struct.13}\protected@file@percent }} ......\glue 10.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x345.0, glue set 93.21382fil .......\glue 0.0 plus 1.0fil -.......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Lbl <> BDC} .......\T1/cmr/m/n/10 F .......\T1/cmr/m/n/10 i @@ -425,7 +428,7 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 : .......\glue 4.44336 plus 3.33252 minus 0.55542 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 T .......\T1/cmr/m/n/10 h @@ -457,14 +460,14 @@ Completed box being shipped out [1] .......\glue -0.00002 .......\pdfliteral page{EMC} .......\glue 0.0 plus 1.0fil -......\marks4{b-,13,18,Lbl,,,} -......\marks4{b+,13,18,Lbl,,,} -......\marks4{e-,13,18,} -......\marks4{e+,13,18,} -......\marks4{b-,14,19,text-block,,,} -......\marks4{b+,14,19,text-block,,,} -......\marks4{e-,14,19,} -......\marks4{e+,14,19,} +......\marks4{b-,14,18,Lbl,,,} +......\marks4{b+,14,18,Lbl,,,} +......\marks4{e-,14,18,} +......\marks4{e+,14,18,} +......\marks4{b-,15,19,text-block,,,} +......\marks4{b+,15,19,text-block,,,} +......\marks4{e-,15,19,} +......\marks4{e+,15,19,} ......\glue 0.0 ......\glue 6.0 plus 2.0 minus 2.0 ......\glue 0.0 @@ -472,7 +475,7 @@ Completed box being shipped out [1] ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 2.04626 ......\hbox(5.50977+1.55518)x345.0, glue set 0.70831 -.......\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x0.0 .......\T1/cmr/m/it/8 N @@ -571,8 +574,8 @@ Completed box being shipped out [1] .......\kern-0.43878 .......\T1/cmr/m/it/8 d .......\glue(\rightskip) 0.0 -......\marks4{b-,15,21,text-block,,,} -......\marks4{b+,15,21,text-block,,,} +......\marks4{b-,16,21,text-block,,,} +......\marks4{b+,16,21,text-block,,,} ......\penalty 10150 ......\glue(\baselineskip) 2.43506 ......\hbox(5.50977+0.0)x345.0, glue set 321.9473fil @@ -585,8 +588,8 @@ Completed box being shipped out [1] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,15,21,} -......\marks4{e+,15,21,} +......\marks4{e-,16,21,} +......\marks4{e+,16,21,} ......\glue 0.0 ....\glue 12.0 plus 2.0 minus 2.0 ....\glue -12.0 plus -2.0 minus -2.0 @@ -597,21 +600,33 @@ Completed box being shipped out [1] ....\pdfdest struct22 name{Doc-Start} xyz ....\glue(\topskip) 0.06242 ....\hbox(9.93758+0.0)x345.0, glue set 234.2053fil -.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -.....\pdfliteral shipout page{/section-number <> BDC} .....\hbox(9.20918+0.0)x23.75433 ......\penalty 10000 ......\hbox(0.0+0.0)x0.0 .......\hbox(0.0+0.0)x0.0, shifted -18.0 ........\pdfdest name{section.1} xyz -........\pdfdest struct27 name{section.1} xyz +........\pdfdest struct26 name{section.1} xyz ........\penalty 10000 ......\kern 0.0 ......\glue 0.0 +......\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/heading-number <> BDC} +......\marks4{b-,1,7,heading-number,,,} +......\marks4{b+,1,7,heading-number,,,} ......\T1/cmr/bx/n/14.4 1 +......\pdfliteral page{EMC} +......\marks4{e-,1,7,} +......\marks4{e+,1,7,} +......\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/section <> BDC} +......\marks4{b-,2,6,section,,,} +......\marks4{b+,2,6,section,,,} ......\glue 15.83623 -.....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +......\pdffakespace +......\pdfliteral page{EMC} +......\marks4{e-,2,6,} +......\marks4{e+,2,6,} +.....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/section <> BDC} .....\T1/cmr/bx/n/14.4 I .....\T1/cmr/bx/n/14.4 n @@ -627,18 +642,14 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 i .....\T1/cmr/bx/n/14.4 o .....\T1/cmr/bx/n/14.4 n -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{b-,1,7,section-number,,,} -....\marks4{b+,1,7,section-number,,,} -....\marks4{e-,1,7,} -....\marks4{e+,1,7,} -....\marks4{b-,2,6,section,,,} -....\marks4{b+,2,6,section,,,} -....\marks4{e-,2,6,} -....\marks4{e+,2,6,} +....\marks4{b-,3,6,section,,,} +....\marks4{b+,3,6,section,,,} +....\pdfliteral page{EMC} +....\marks4{e-,3,6,} +....\marks4{e+,3,6,} ....\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}Introduction}{\thepage }{section.1}\protected@file@percent }} ....\penalty 10000 ....\glue 9.90036 plus 0.86089 @@ -646,7 +657,7 @@ Completed box being shipped out [1] ....\glue(\parskip) 0.0 ....\glue(\baselineskip) 5.1128 ....\hbox(6.8872+1.94397)x345.0, glue set 0.4969 -.....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\T1/cmr/m/n/10 F .....\T1/cmr/m/n/10 l @@ -719,14 +730,14 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/Link <> BDC} .....\pdfstartlink(*+*)x* attr{/Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 2 } action goto name{figure.struct.13} .....\T1/cmr/m/n/10 1 .....\pdfendlink .....\write1{\new@label@record{@tag@objr@page@2}{{tagabspage}{\__property_code_tagabspage: }}} .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\T1/cmr/m/n/10 w @@ -736,16 +747,16 @@ Completed box being shipped out [1] .....\kern-0.27771 .....\T1/cmr/m/n/10 h .....\glue(\rightskip) 0.0 -....\marks4{b-,3,9,text-block,,,} -....\marks4{b+,3,9,text-block,,,} -....\marks4{e-,3,9,} -....\marks4{e+,3,9,} -....\marks4{b-,4,10,Link,,,} -....\marks4{b+,4,10,Link,,,} -....\marks4{e-,4,10,} -....\marks4{e+,4,10,} -....\marks4{b-,5,9,text-block,,,} -....\marks4{b+,5,9,text-block,,,} +....\marks4{b-,4,9,text-block,,,} +....\marks4{b+,4,9,text-block,,,} +....\marks4{e-,4,9,} +....\marks4{e+,4,9,} +....\marks4{b-,5,10,Link,,,} +....\marks4{b+,5,10,Link,,,} +....\marks4{e-,5,10,} +....\marks4{e+,5,10,} +....\marks4{b-,6,9,text-block,,,} +....\marks4{b+,6,9,text-block,,,} ....\penalty 10000 ....\glue(\baselineskip) 3.16882 ....\hbox(6.8872+1.94397)x345.0, glue set 0.05743 @@ -788,14 +799,14 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/Link <> BDC} .....\pdfstartlink(*+*)x* attr{/Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 3 } action goto name{figure.struct.31} .....\T1/cmr/m/n/10 2 .....\pdfendlink .....\write1{\new@label@record{@tag@objr@page@3}{{tagabspage}{\__property_code_tagabspage: }}} .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\T1/cmr/m/n/10 a @@ -810,14 +821,14 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/Link <> BDC} .....\pdfstartlink(*+*)x* attr{/Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 4 } action goto name{figure.struct.38} .....\T1/cmr/m/n/10 3 .....\pdfendlink .....\write1{\new@label@record{@tag@objr@page@4}{{tagabspage}{\__property_code_tagabspage: }}} .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\T1/cmr/m/n/10 a @@ -849,22 +860,22 @@ Completed box being shipped out [1] .....\kern-0.27771 .....\T1/cmr/m/n/10 t .....\glue(\rightskip) 0.0 -....\marks4{e-,5,9,} -....\marks4{e+,5,9,} -....\marks4{b-,6,11,Link,,,} -....\marks4{b+,6,11,Link,,,} -....\marks4{e-,6,11,} -....\marks4{e+,6,11,} -....\marks4{b-,7,9,text-block,,,} -....\marks4{b+,7,9,text-block,,,} -....\marks4{e-,7,9,} -....\marks4{e+,7,9,} -....\marks4{b-,8,12,Link,,,} -....\marks4{b+,8,12,Link,,,} -....\marks4{e-,8,12,} -....\marks4{e+,8,12,} -....\marks4{b-,9,9,text-block,,,} -....\marks4{b+,9,9,text-block,,,} +....\marks4{e-,6,9,} +....\marks4{e+,6,9,} +....\marks4{b-,7,11,Link,,,} +....\marks4{b+,7,11,Link,,,} +....\marks4{e-,7,11,} +....\marks4{e+,7,11,} +....\marks4{b-,8,9,text-block,,,} +....\marks4{b+,8,9,text-block,,,} +....\marks4{e-,8,9,} +....\marks4{e+,8,9,} +....\marks4{b-,9,12,Link,,,} +....\marks4{b+,9,12,Link,,,} +....\marks4{e-,9,12,} +....\marks4{e+,9,12,} +....\marks4{b-,10,9,text-block,,,} +....\marks4{b+,10,9,text-block,,,} ....\glue(\baselineskip) 2.55786 ....\hbox(7.49817+2.49939)x345.0, glue set - 0.33656 .....\T1/cmr/m/n/10 a @@ -996,15 +1007,15 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{e-,9,9,} -....\marks4{e+,9,9,} +....\marks4{e-,10,9,} +....\marks4{e+,10,9,} ....\penalty 0 ....\penalty 10000 ....\glue(\parskip) 0.0 plus 1.0 ....\glue(\parskip) 0.0 ....\glue(\baselineskip) 3.16882 ....\hbox(6.8872+1.94397)x345.0, glue set 0.15187 -.....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\hbox(0.0+0.0)x15.0 .....\T1/cmr/m/n/10 T @@ -1039,14 +1050,14 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/Link <> BDC} .....\pdfstartlink(*+*)x* attr{/Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 5 } action goto name{table.struct.25} .....\T1/cmr/m/n/10 1 .....\pdfendlink .....\write1{\new@label@record{@tag@objr@page@5}{{tagabspage}{\__property_code_tagabspage: }}} .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\T1/cmr/m/n/10 i @@ -1096,16 +1107,16 @@ Completed box being shipped out [1] .....\T1/cmr/m/n/10 l .....\T1/cmr/m/n/10 y .....\glue(\rightskip) 0.0 -....\marks4{b-,16,23,text-block,,,} -....\marks4{b+,16,23,text-block,,,} -....\marks4{e-,16,23,} -....\marks4{e+,16,23,} -....\marks4{b-,17,24,Link,,,} -....\marks4{b+,17,24,Link,,,} -....\marks4{e-,17,24,} -....\marks4{e+,17,24,} -....\marks4{b-,18,23,text-block,,,} -....\marks4{b+,18,23,text-block,,,} +....\marks4{b-,17,23,text-block,,,} +....\marks4{b+,17,23,text-block,,,} +....\marks4{e-,17,23,} +....\marks4{e+,17,23,} +....\marks4{b-,18,24,Link,,,} +....\marks4{b+,18,24,Link,,,} +....\marks4{e-,18,24,} +....\marks4{e+,18,24,} +....\marks4{b-,19,23,text-block,,,} +....\marks4{b+,19,23,text-block,,,} ....\penalty 300 ....\glue(\baselineskip) 3.16882 ....\hbox(6.8872+1.94397)x345.0, glue set 168.93188fil @@ -1156,8 +1167,8 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{e-,18,23,} -....\marks4{e+,18,23,} +....\marks4{e-,19,23,} +....\marks4{e+,19,23,} ....\penalty 0 ....\penalty 10000 ....\penalty 0 @@ -1166,7 +1177,7 @@ Completed box being shipped out [1] ....\glue(\parskip) 0.0 ....\glue(\baselineskip) 3.16882 ....\hbox(6.8872+1.94397)x345.0, glue set 106.11023fil -.....\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\hbox(0.0+0.0)x15.0 .....\T1/cmr/m/n/10 A @@ -1223,10 +1234,10 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{b-,32,46,text-block,,,} -....\marks4{b+,32,46,text-block,,,} -....\marks4{e-,32,46,} -....\marks4{e+,32,46,} +....\marks4{b-,33,46,text-block,,,} +....\marks4{b+,33,46,text-block,,,} +....\marks4{e-,33,46,} +....\marks4{e+,33,46,} ....\kern -1.94397 ....\hbox(0.0+1.94397)x0.0 ....\glue 20.0 plus 2.0 minus 4.0 @@ -1239,7 +1250,7 @@ Completed box being shipped out [1] ......\glue 10.0 ......\hbox(6.8872+1.94397)x345.0, glue set 92.88055fil .......\glue 0.0 plus 1.0fil -.......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Lbl <> BDC} .......\T1/cmr/m/n/10 T .......\kern-0.83313 @@ -1253,7 +1264,7 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 : .......\glue 4.44336 plus 3.33252 minus 0.55542 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 n @@ -1282,14 +1293,14 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 s .......\pdfliteral page{EMC} .......\glue 0.0 plus 1.0fil -......\marks4{b-,19,27,Lbl,,,} -......\marks4{b+,19,27,Lbl,,,} -......\marks4{e-,19,27,} -......\marks4{e+,19,27,} -......\marks4{b-,20,28,text-block,,,} -......\marks4{b+,20,28,text-block,,,} -......\marks4{e-,20,28,} -......\marks4{e+,20,28,} +......\marks4{b-,20,27,Lbl,,,} +......\marks4{b+,20,27,Lbl,,,} +......\marks4{e-,20,27,} +......\marks4{e+,20,27,} +......\marks4{b-,21,28,text-block,,,} +......\marks4{b+,21,28,text-block,,,} +......\marks4{e-,21,28,} +......\marks4{e+,21,28,} ......\glue 0.0 ......\write1{\newlabel{b}{{1}{\thepage }{Introduction}{table.struct.25}{}}} ......\glue(\parskip) 0.0 @@ -1297,7 +1308,7 @@ Completed box being shipped out [1] ......\glue(\baselineskip) 7.11476 ......\hbox(12.94127+4.3045)x345.0, glue set 87.00151fil .......\glue(\leftskip) 0.0 plus 1.0fil -.......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x0.0 .......\T1/cmr/m/n/17.28 a @@ -1331,10 +1342,10 @@ Completed box being shipped out [1] .......\penalty 10000 .......\glue(\parfillskip) 0.0 .......\glue(\rightskip) 0.0 plus 1.0fil -......\marks4{b-,21,30,text-block,,,} -......\marks4{b+,21,30,text-block,,,} -......\marks4{e-,21,30,} -......\marks4{e+,21,30,} +......\marks4{b-,22,30,text-block,,,} +......\marks4{b+,22,30,text-block,,,} +......\marks4{e-,22,30,} +......\marks4{e+,22,30,} ......\glue 0.0 ....\glue 12.0 plus 2.0 minus 2.0 ....\glue -12.0 plus -2.0 minus -2.0 @@ -1343,8 +1354,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 0.0001fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,34,-1,} -...\marks4{b+,34,-1,} +...\marks4{b-,35,-1,} +...\marks4{b+,35,-1,} ...\glue(\baselineskip) 23.5849 ...\hbox(6.4151+0.0)x345.0 ....\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -1352,8 +1363,8 @@ Completed box being shipped out [1] .....\T1/cmr/m/n/10 1 .....\glue 0.0 plus 1.0fil ...\pdfliteral page{EMC} -...\marks4{e-,34,5,} -...\marks4{e+,34,5,} +...\marks4{e-,35,5,} +...\marks4{e+,35,5,} ...\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -1388,13 +1399,13 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ....\pdfrunninglinkoff ....\pdfliteral page{/Artifact BMC} -....\marks4{b-,35,-1,} -....\marks4{b+,35,-1,} +....\marks4{b-,36,-1,} +....\marks4{b+,36,-1,} ....\hbox(0.0+0.0)x345.0 .....\hbox(0.0+0.0)x345.0 ....\pdfliteral page{EMC} -....\marks4{e-,35,5,} -....\marks4{e+,35,5,} +....\marks4{e-,36,5,} +....\marks4{e+,36,5,} ....\pdfrunninglinkon ...\glue 25.0 ...\glue(\lineskip) 0.0 @@ -1410,11 +1421,11 @@ Completed box being shipped out [2] ......\glue(\parskip) 0.0 ......\glue(\parskip) 0.0 ......\hbox(213.52757+0.0)x345.0 -.......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x0.0 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Figure <> BDC} .......\pdfsavepos .......\write1{\new@label@record{__tag_graphic.2}{{xpos}{\__property_code_xpos: }{ypos}{\__property_code_ypos: }{abspage}{\__property_code_abspage: }}} @@ -1433,30 +1444,30 @@ Completed box being shipped out [2] ..........\kern 345.03526 ..........\glue 0.0 plus 1.0fil minus 1.0fil .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{b-,22,33,text-block,,,} -......\marks4{b+,22,33,text-block,,,} -......\marks4{e-,22,33,} -......\marks4{e+,22,33,} -......\marks4{b-,23,34,Figure,,,} -......\marks4{b+,23,34,Figure,,,} -......\marks4{e-,23,34,} -......\marks4{e+,23,34,} -......\marks4{b-,24,33,text-block,,,} -......\marks4{b+,24,33,text-block,,,} -......\marks4{e-,24,33,} -......\marks4{e+,24,33,} +......\marks4{b-,23,33,text-block,,,} +......\marks4{b+,23,33,text-block,,,} +......\marks4{e-,23,33,} +......\marks4{e+,23,33,} +......\marks4{b-,24,34,Figure,,,} +......\marks4{b+,24,34,Figure,,,} +......\marks4{e-,24,34,} +......\marks4{e+,24,34,} +......\marks4{b-,25,33,text-block,,,} +......\marks4{b+,25,33,text-block,,,} +......\marks4{e-,25,33,} +......\marks4{e+,25,33,} ......\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {2}{\ignorespaces This is an example image from the duckuments package}}{\thepage }{figure.struct.31}\protected@file@percent }} ......\glue 10.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x345.0, glue set 28.18802fil .......\glue 0.0 plus 1.0fil -.......\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Lbl <> BDC} .......\T1/cmr/m/n/10 F .......\T1/cmr/m/n/10 i @@ -1470,7 +1481,7 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 : .......\glue 4.44336 plus 3.33252 minus 0.55542 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 T .......\T1/cmr/m/n/10 h @@ -1530,14 +1541,14 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 e .......\pdfliteral page{EMC} .......\glue 0.0 plus 1.0fil -......\marks4{b-,25,36,Lbl,,,} -......\marks4{b+,25,36,Lbl,,,} -......\marks4{e-,25,36,} -......\marks4{e+,25,36,} -......\marks4{b-,26,37,text-block,,,} -......\marks4{b+,26,37,text-block,,,} -......\marks4{e-,26,37,} -......\marks4{e+,26,37,} +......\marks4{b-,26,36,Lbl,,,} +......\marks4{b+,26,36,Lbl,,,} +......\marks4{e-,26,36,} +......\marks4{e+,26,36,} +......\marks4{b-,27,37,text-block,,,} +......\marks4{b+,27,37,text-block,,,} +......\marks4{e-,27,37,} +......\marks4{e+,27,37,} ......\glue 0.0 ......\write1{\newlabel{c}{{2}{\thepage }{Introduction}{figure.struct.31}{}}} ......\glue 6.0 plus 2.0 minus 2.0 @@ -1549,11 +1560,11 @@ Completed box being shipped out [2] ......\glue(\parskip) 0.0 ......\glue(\lineskip) 1.0 ......\hbox(213.52757+0.0)x345.0 -.......\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x0.0 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Figure <> BDC} .......\pdfsavepos .......\write1{\new@label@record{__tag_graphic.3}{{xpos}{\__property_code_xpos: }{ypos}{\__property_code_ypos: }{abspage}{\__property_code_abspage: }}} @@ -1572,30 +1583,30 @@ Completed box being shipped out [2] ..........\kern 345.03526 ..........\glue 0.0 plus 1.0fil minus 1.0fil .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{b-,27,40,text-block,,,} -......\marks4{b+,27,40,text-block,,,} -......\marks4{e-,27,40,} -......\marks4{e+,27,40,} -......\marks4{b-,28,41,Figure,,,} -......\marks4{b+,28,41,Figure,,,} -......\marks4{e-,28,41,} -......\marks4{e+,28,41,} -......\marks4{b-,29,40,text-block,,,} -......\marks4{b+,29,40,text-block,,,} -......\marks4{e-,29,40,} -......\marks4{e+,29,40,} +......\marks4{b-,28,40,text-block,,,} +......\marks4{b+,28,40,text-block,,,} +......\marks4{e-,28,40,} +......\marks4{e+,28,40,} +......\marks4{b-,29,41,Figure,,,} +......\marks4{b+,29,41,Figure,,,} +......\marks4{e-,29,41,} +......\marks4{e+,29,41,} +......\marks4{b-,30,40,text-block,,,} +......\marks4{b+,30,40,text-block,,,} +......\marks4{e-,30,40,} +......\marks4{e+,30,40,} ......\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {3}{\ignorespaces The second page from the PDF}}{\thepage }{figure.struct.38}\protected@file@percent }} ......\glue 10.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x345.0, glue set 81.6333fil .......\glue 0.0 plus 1.0fil -.......\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/Lbl <> BDC} .......\T1/cmr/m/n/10 F .......\T1/cmr/m/n/10 i @@ -1609,7 +1620,7 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 : .......\glue 4.44336 plus 3.33252 minus 0.55542 .......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 T .......\T1/cmr/m/n/10 h @@ -1641,22 +1652,22 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 F .......\pdfliteral page{EMC} .......\glue 0.0 plus 1.0fil -......\marks4{b-,30,43,Lbl,,,} -......\marks4{b+,30,43,Lbl,,,} -......\marks4{e-,30,43,} -......\marks4{e+,30,43,} -......\marks4{b-,31,44,text-block,,,} -......\marks4{b+,31,44,text-block,,,} -......\marks4{e-,31,44,} -......\marks4{e+,31,44,} +......\marks4{b-,31,43,Lbl,,,} +......\marks4{b+,31,43,Lbl,,,} +......\marks4{e-,31,43,} +......\marks4{e+,31,43,} +......\marks4{b-,32,44,text-block,,,} +......\marks4{b+,32,44,text-block,,,} +......\marks4{e-,32,44,} +......\marks4{e+,32,44,} ......\glue 0.0 ......\write1{\newlabel{d}{{3}{\thepage }{Introduction}{figure.struct.38}{}}} ......\glue 0.0 ....\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,36,-1,} -...\marks4{b+,36,-1,} +...\marks4{b-,37,-1,} +...\marks4{b+,37,-1,} ...\glue(\baselineskip) 23.5849 ...\hbox(6.4151+0.0)x345.0 ....\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -1664,8 +1675,8 @@ Completed box being shipped out [2] .....\T1/cmr/m/n/10 2 .....\glue 0.0 plus 1.0fil ...\pdfliteral page{EMC} -...\marks4{e-,36,5,} -...\marks4{e+,36,5,} +...\marks4{e-,37,5,} +...\marks4{e+,37,5,} ...\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -1682,7 +1693,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~46 structure objects -(tagpdf) with ~36 'MC' leaf nodes. +(tagpdf) with ~37 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-005-double.luatex.tlg b/required/latex-lab/testfiles-float/float-005-double.luatex.tlg index 9a36ca3f5..64bb82b25 100644 --- a/required/latex-lab/testfiles-float/float-005-double.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-005-double.luatex.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 8 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 8 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -122,8 +125,12 @@ Completed box being shipped out [1] ........\pdfliteral page ........\pdfliteral page ........\OT1/cmr/bx/n/14.4 1 +........\pdfliteral page +........\pdfliteral page ........\TU/lmr/m/n/10 ........\glue 12.86998 +........\TU/lmr/m/n/10 +........\glue -3.33 .......\pdfliteral page .......\pdfliteral page .......\OT1/cmr/bx/n/14.4 a @@ -1528,7 +1535,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~16 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree @@ -1536,5 +1543,5 @@ Package tagpdf Info: writing RoleMap Package tagpdf Info: writing ClassMap Package tagpdf Info: writing NameSpaces Package tagpdf Info: writing StructElems -tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 7 has no kids +tagpdf: WARN TEX-MC-INSERT-NO-KIDS: 8 has no kids Package tagpdf Info: writing Root diff --git a/required/latex-lab/testfiles-float/float-005-double.tlg b/required/latex-lab/testfiles-float/float-005-double.tlg index 8ee1833ea..8fe690145 100644 --- a/required/latex-lab/testfiles-float/float-005-double.tlg +++ b/required/latex-lab/testfiles-float/float-005-double.tlg @@ -6,13 +6,16 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: Checking Parent-Child 'pdf2:Sect' --> 'latex:section' Package tagpdf Info: Parent-Child 'Sect' --> 'H1'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:section-number' -Package tagpdf Info: Parent-Child 'H1' --> 'Span'. +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'latex:heading-number' +Package tagpdf Info: Parent-Child 'H1' --> 'Lbl'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'latex:section-number' --> 'MC (real content)' -Package tagpdf Info: Parent-Child 'Span' --> 'MC'. +Package tagpdf Info: Checking Parent-Child 'latex:heading-number' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'Lbl' --> 'MC'. +(tagpdf) Relation is 1 (='0..n') on line ... +Package tagpdf Info: closing structure 7 tagged /heading-number +Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' +Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: closing structure 7 tagged /section-number Package tagpdf Info: Checking Parent-Child 'latex:section' --> 'MC (real content)' Package tagpdf Info: Parent-Child 'H1' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... @@ -73,7 +76,7 @@ The sequence \g__tag_mc_main_marks_seq is empty > . The sequence \g__tag_mc_main_marks_seq contains the items (without outer braces): > {e+} -> {7} +> {8} > {9}. Completed box being shipped out [1] \vbox(633.0+0.0)x469.0 @@ -92,13 +95,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,8,-1,} -...\marks4{b+,8,-1,} +...\marks4{b-,9,-1,} +...\marks4{b+,9,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,8,5,} -...\marks4{e+,8,5,} +...\marks4{e-,9,5,} +...\marks4{e+,9,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -110,33 +113,41 @@ Completed box being shipped out [1] ......\write-{} ......\glue(\topskip) 0.06242 ......\hbox(9.93758+0.0)x229.5, glue set 181.55144fil -.......\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -.......\pdfliteral shipout page{/section-number <> BDC} .......\hbox(9.20918+0.0)x23.75433 ........\hbox(0.0+0.0)x0.0 ........\penalty 10000 ........\glue 0.0 +........\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +........\pdfliteral shipout page{/heading-number <> BDC} +........\marks4{b-,1,7,heading-number,,,} +........\marks4{b+,1,7,heading-number,,,} ........\T1/cmr/bx/n/14.4 1 +........\pdfliteral page{EMC} +........\marks4{e-,1,7,} +........\marks4{e+,1,7,} +........\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +........\pdfliteral shipout page{/section <> BDC} +........\marks4{b-,2,6,section,,,} +........\marks4{b+,2,6,section,,,} ........\glue 15.83623 -.......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +........\pdffakespace +........\pdfliteral page{EMC} +........\marks4{e-,2,6,} +........\marks4{e+,2,6,} +.......\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/section <> BDC} .......\T1/cmr/bx/n/14.4 a .......\T1/cmr/bx/n/14.4 b .......\kern0.43988 .......\T1/cmr/bx/n/14.4 c -.......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{b-,1,7,section-number,,,} -......\marks4{b+,1,7,section-number,,,} -......\marks4{e-,1,7,} -......\marks4{e+,1,7,} -......\marks4{b-,2,6,section,,,} -......\marks4{b+,2,6,section,,,} -......\marks4{e-,2,6,} -......\marks4{e+,2,6,} +......\marks4{b-,3,6,section,,,} +......\marks4{b+,3,6,section,,,} +......\pdfliteral page{EMC} +......\marks4{e-,3,6,} +......\marks4{e+,3,6,} ......\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}abc}{\thepage }{target*.1}\protected@file@percent }} ......\penalty 10000 ......\glue 9.90036 plus 0.86089 @@ -144,7 +155,7 @@ Completed box being shipped out [1] ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.0747 -.......\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 L .......\T1/cmr/m/n/10 o @@ -208,8 +219,8 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 n .......\T1/cmr/m/n/10 g .......\glue(\rightskip) 0.0 -......\marks4{b-,3,9,text-block,,,} -......\marks4{b+,3,9,text-block,,,} +......\marks4{b-,4,9,text-block,,,} +......\marks4{b+,4,9,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.16747 @@ -1218,20 +1229,20 @@ Completed box being shipped out [1] .......\pdfliteral page{EMC} .......\penalty 10000 .......\glue 0.0 -.......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/P <> BDC} .......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,3,9,} -......\marks4{e+,3,9,} +......\marks4{e-,4,9,} +......\marks4{e+,4,9,} ......\penalty 0 ......\penalty 10000 -......\marks4{b-,7,9,P,,,} -......\marks4{b+,7,9,P,,,} -......\marks4{e-,7,9,} -......\marks4{e+,7,9,} +......\marks4{b-,8,9,P,,,} +......\marks4{b+,8,9,P,,,} +......\marks4{e-,8,9,} +......\marks4{e+,8,9,} ......\kern -1.94397 ......\hbox(0.0+1.94397)x0.0 ......\glue -1.94397 @@ -1254,8 +1265,8 @@ Completed box being shipped out [1] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,9,-1,} -..\marks4{b+,9,-1,} +..\marks4{b-,10,-1,} +..\marks4{b+,10,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -1263,8 +1274,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,9,5,} -..\marks4{e+,9,5,} +..\marks4{e-,10,5,} +..\marks4{e+,10,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -1283,13 +1294,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,10,-1,} -...\marks4{b+,10,-1,} +...\marks4{b-,11,-1,} +...\marks4{b+,11,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,10,5,} -...\marks4{e+,10,5,} +...\marks4{e-,11,5,} +...\marks4{e+,11,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -1303,7 +1314,7 @@ Completed box being shipped out [2] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(6.8872+1.94397)x469.0, glue set 444.53375fil -......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 ^^\ (ligature fi) @@ -1315,16 +1326,16 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,4,12,text-block,,,} -.....\marks4{b+,4,12,text-block,,,} -.....\marks4{e-,4,12,} -.....\marks4{e+,4,12,} +.....\marks4{b-,5,12,text-block,,,} +.....\marks4{b+,5,12,text-block,,,} +.....\marks4{e-,5,12,} +.....\marks4{e+,5,12,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces a wide figure}}{\thepage }{figure.struct.10}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+1.94397)x469.0, glue set 184.55386fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -1338,7 +1349,7 @@ Completed box being shipped out [2] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 a ......\glue 3.33252 plus 1.66626 minus 1.11084 @@ -1354,21 +1365,21 @@ Completed box being shipped out [2] ......\T1/cmr/m/n/10 e ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,5,14,Lbl,,,} -.....\marks4{b+,5,14,Lbl,,,} -.....\marks4{e-,5,14,} -.....\marks4{e+,5,14,} -.....\marks4{b-,6,15,text-block,,,} -.....\marks4{b+,6,15,text-block,,,} -.....\marks4{e-,6,15,} -.....\marks4{e+,6,15,} +.....\marks4{b-,6,14,Lbl,,,} +.....\marks4{b+,6,14,Lbl,,,} +.....\marks4{e-,6,14,} +.....\marks4{e+,6,14,} +.....\marks4{b-,7,15,text-block,,,} +.....\marks4{b+,7,15,text-block,,,} +.....\marks4{e-,7,15,} +.....\marks4{e+,7,15,} .....\glue 0.0 .....\glue 0.0 ...\glue 0.0 plus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,11,-1,} -..\marks4{b+,11,-1,} +..\marks4{b-,12,-1,} +..\marks4{b+,12,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -1376,8 +1387,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,11,5,} -..\marks4{e+,11,5,} +..\marks4{e-,12,5,} +..\marks4{e+,12,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 @@ -1391,7 +1402,7 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Sect'. Package tagpdf Info: closing structure 2 tagged /Document Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~15 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-007-gh55.luatex.tlg b/required/latex-lab/testfiles-float/float-007-gh55.luatex.tlg index a714c2a13..20c7e7d36 100644 --- a/required/latex-lab/testfiles-float/float-007-gh55.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-007-gh55.luatex.tlg @@ -135,8 +135,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 f @@ -169,8 +173,12 @@ Completed box being shipped out [1] .....\OT1/cmr/bx/n/12 1 .....\OT1/cmr/bx/n/12 . .....\OT1/cmr/bx/n/12 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 10.17 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/12 s @@ -294,7 +302,7 @@ Completed box being shipped out [1] <><> (float-007-gh55.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~23 structure objects -(tagpdf) with ~15 'MC' leaf nodes. +(tagpdf) with ~17 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-007-gh55.tlg b/required/latex-lab/testfiles-float/float-007-gh55.tlg index 5128dd917..0d578e0e4 100644 --- a/required/latex-lab/testfiles-float/float-007-gh55.tlg +++ b/required/latex-lab/testfiles-float/float-007-gh55.tlg @@ -20,13 +20,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,14,-1,} -...\marks4{b+,14,-1,} +...\marks4{b-,16,-1,} +...\marks4{b+,16,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,14,14,} -...\marks4{e+,14,14,} +...\marks4{e-,16,14,} +...\marks4{e+,16,14,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -56,12 +56,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 r ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,1,6,section,,,} ...\marks4{b+,1,6,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,1,6,} ...\marks4{e+,1,6,} ...\penalty 10000 @@ -145,33 +145,41 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 6.11845 ...\hbox(9.93758+0.0)x345.0, glue set 300.13072fil -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,7,13,heading-number,,,} +.....\marks4{b+,7,13,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,7,13,} +.....\marks4{e+,7,13,} +.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,8,12,section,,,} +.....\marks4{b+,8,12,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,8,12,} +.....\marks4{e+,8,12,} +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 f ....\T1/cmr/bx/n/14.4 o ....\kern0.43988 ....\T1/cmr/bx/n/14.4 o -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,7,13,section-number,,,} -...\marks4{b+,7,13,section-number,,,} -...\marks4{e-,7,13,} -...\marks4{e+,7,13,} -...\marks4{b-,8,12,section,,,} -...\marks4{b+,8,12,section,,,} -...\marks4{e-,8,12,} -...\marks4{e+,8,12,} +...\marks4{b-,9,12,section,,,} +...\marks4{b+,9,12,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,9,12,} +...\marks4{e+,9,12,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}foo}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -179,18 +187,30 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.71869 ...\hbox(8.28131+0.0)x345.0, glue set 269.19351fil -....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x30.7425 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,10,16,heading-number,,,} +.....\marks4{b+,10,16,heading-number,,,} .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,10,16,} +.....\marks4{e+,10,16,} +.....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,11,15,subsection,,,} +.....\marks4{b+,11,15,subsection,,,} .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,11,15,} +.....\marks4{e+,11,15,} +....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\T1/cmr/bx/n/12 s ....\T1/cmr/bx/n/12 u @@ -200,18 +220,14 @@ Completed box being shipped out [1] ....\kern0.37491 ....\T1/cmr/bx/n/12 o ....\T1/cmr/bx/n/12 1 -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,9,16,section-number,,,} -...\marks4{b+,9,16,section-number,,,} -...\marks4{e-,9,16,} -...\marks4{e+,9,16,} -...\marks4{b-,10,15,subsection,,,} -...\marks4{b+,10,15,subsection,,,} -...\marks4{e-,10,15,} -...\marks4{e+,10,15,} +...\marks4{b-,12,15,subsection,,,} +...\marks4{b+,12,15,subsection,,,} +...\pdfliteral page{EMC} +...\marks4{e-,12,15,} +...\marks4{e+,12,15,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1}subfoo1}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\penalty 10000 @@ -225,7 +241,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\hbox(6.8872+1.94397)x345.0, glue set 143.60428fil ......\glue(\leftskip) 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/m/n/10 ^^\ (ligature fi) @@ -244,16 +260,16 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 ......\glue(\rightskip) 0.0 plus 1.0fil -.....\marks4{b-,11,19,text-block,,,} -.....\marks4{b+,11,19,text-block,,,} -.....\marks4{e-,11,19,} -.....\marks4{e+,11,19,} +.....\marks4{b-,13,19,text-block,,,} +.....\marks4{b+,13,19,text-block,,,} +.....\marks4{e-,13,19,} +.....\marks4{e+,13,19,} .....\write1{\@writefile{lof}{\protect \contentsline {figure}{\protect \numberline {1}{\ignorespaces figure1}}{\thepage }{figure.struct.17}\protected@file@percent }} .....\glue 10.0 .....\glue(\baselineskip) 3.16882 .....\hbox(6.8872+1.94397)x345.0, glue set 135.88394fil ......\glue 0.0 plus 1.0fil -......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/Lbl <> BDC} ......\T1/cmr/m/n/10 F ......\T1/cmr/m/n/10 i @@ -267,7 +283,7 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 : ......\glue 4.44336 plus 3.33252 minus 0.55542 ......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\T1/cmr/m/n/10 ^^\ (ligature fi) ......\T1/cmr/m/n/10 g @@ -277,14 +293,14 @@ Completed box being shipped out [1] ......\T1/cmr/m/n/10 1 ......\pdfliteral page{EMC} ......\glue 0.0 plus 1.0fil -.....\marks4{b-,12,21,Lbl,,,} -.....\marks4{b+,12,21,Lbl,,,} -.....\marks4{e-,12,21,} -.....\marks4{e+,12,21,} -.....\marks4{b-,13,22,text-block,,,} -.....\marks4{b+,13,22,text-block,,,} -.....\marks4{e-,13,22,} -.....\marks4{e+,13,22,} +.....\marks4{b-,14,21,Lbl,,,} +.....\marks4{b+,14,21,Lbl,,,} +.....\marks4{e-,14,21,} +.....\marks4{e+,14,21,} +.....\marks4{b-,15,22,text-block,,,} +.....\marks4{b+,15,22,text-block,,,} +.....\marks4{e-,15,22,} +.....\marks4{e+,15,22,} .....\glue 0.0 .....\write1{\newlabel{figure1}{{1}{\thepage }{subfoo1}{figure.struct.17}{}}} .....\glue 0.0 @@ -299,8 +315,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,15,-1,} -..\marks4{b+,15,-1,} +..\marks4{b-,17,-1,} +..\marks4{b+,17,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -308,8 +324,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,15,14,} -..\marks4{e+,15,14,} +..\marks4{e-,17,14,} +..\marks4{e+,17,14,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -319,7 +335,7 @@ Completed box being shipped out [1] <><> (float-007-gh55.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~22 structure objects -(tagpdf) with ~15 'MC' leaf nodes. +(tagpdf) with ~17 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-float/float-012-unknown.luatex.tpf b/required/latex-lab/testfiles-float/float-012-unknown.luatex.tpf index b70175813..fd38118ca 100644 --- a/required/latex-lab/testfiles-float/float-012-unknown.luatex.tpf +++ b/required/latex-lab/testfiles-float/float-012-unknown.luatex.tpf @@ -139,7 +139,7 @@ endobj << /Kids [44 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 46 0 obj << /justify <> @@ -158,7 +158,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -600,39 +600,39 @@ xref 0000003415 00000 n 0000003437 00000 n 0000003459 00000 n -0000007458 00000 n +0000007717 00000 n 0000003551 00000 n 0000003880 00000 n -0000006185 00000 n -0000004701 00000 n +0000006444 00000 n +0000004808 00000 n 0000000012 00000 f -0000004769 00000 n +0000004876 00000 n 0000000014 00000 f -0000004839 00000 n +0000004946 00000 n 0000000020 00000 f -0000005719 00000 n -0000004920 00000 n -0000005992 00000 n -0000005821 00000 n -0000006094 00000 n +0000005978 00000 n +0000005027 00000 n +0000006251 00000 n +0000006080 00000 n +0000006353 00000 n 0000000000 00000 f -0000006246 00000 n -0000006360 00000 n -0000006449 00000 n -0000006538 00000 n -0000006627 00000 n -0000006731 00000 n -0000006872 00000 n -0000006968 00000 n -0000007072 00000 n -0000007213 00000 n -0000007317 00000 n -0000007595 00000 n +0000006505 00000 n +0000006619 00000 n +0000006708 00000 n +0000006797 00000 n +0000006886 00000 n +0000006990 00000 n +0000007131 00000 n +0000007227 00000 n +0000007331 00000 n +0000007472 00000 n +0000007576 00000 n +0000007854 00000 n 0000000654 00000 n 0000000519 00000 n 0000000020 00000 n -0000031999 00000 n -0000032157 00000 n +0000032258 00000 n +0000032416 00000 n 0000000717 00000 n 0000001183 00000 n 0000001388 00000 n @@ -641,15 +641,15 @@ xref 0000003515 00000 n 0000003608 00000 n 0000003843 00000 n -0000004539 00000 n -0000019763 00000 n -0000030010 00000 n -0000019950 00000 n -0000030215 00000 n -0000032219 00000 n -0000032344 00000 n +0000004646 00000 n +0000020022 00000 n +0000030269 00000 n +0000020209 00000 n +0000030474 00000 n +0000032478 00000 n +0000032603 00000 n trailer << /Size 53 /Root 51 0 R /Info 52 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32476 +32735 %%EOF diff --git a/required/latex-lab/testfiles-float/float-012-unknown.tpf b/required/latex-lab/testfiles-float/float-012-unknown.tpf index a8cfc1001..cf538b7d4 100644 --- a/required/latex-lab/testfiles-float/float-012-unknown.tpf +++ b/required/latex-lab/testfiles-float/float-012-unknown.tpf @@ -390,7 +390,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 45 0 obj << /justify <> @@ -409,7 +409,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -677,38 +677,38 @@ xref 0000015489 00000 n 0000015511 00000 n 0000015533 00000 n -0000019421 00000 n +0000019680 00000 n 0000015625 00000 n 0000015938 00000 n -0000018243 00000 n -0000016759 00000 n +0000018502 00000 n +0000016866 00000 n 0000000012 00000 f -0000016827 00000 n +0000016934 00000 n 0000000014 00000 f -0000016897 00000 n +0000017004 00000 n 0000000020 00000 f -0000017777 00000 n -0000016978 00000 n -0000018050 00000 n -0000017879 00000 n -0000018152 00000 n +0000018036 00000 n +0000017085 00000 n +0000018309 00000 n +0000018138 00000 n +0000018411 00000 n 0000000000 00000 f -0000018304 00000 n -0000018418 00000 n -0000018507 00000 n -0000018596 00000 n -0000018700 00000 n +0000018563 00000 n +0000018677 00000 n +0000018766 00000 n +0000018855 00000 n +0000018959 00000 n 0000012594 00000 n -0000018839 00000 n -0000018935 00000 n -0000019039 00000 n -0000019178 00000 n -0000019282 00000 n +0000019098 00000 n +0000019194 00000 n +0000019298 00000 n +0000019437 00000 n +0000019541 00000 n 0000000015 00000 n 0000012729 00000 n 0000012180 00000 n -0000032621 00000 n -0000032799 00000 n +0000032880 00000 n +0000033058 00000 n 0000012793 00000 n 0000013258 00000 n 0000013463 00000 n @@ -717,19 +717,19 @@ xref 0000015589 00000 n 0000015682 00000 n 0000015901 00000 n -0000016597 00000 n -0000030445 00000 n -0000019558 00000 n -0000019997 00000 n -0000030210 00000 n -0000030532 00000 n -0000032858 00000 n -0000032983 00000 n +0000016704 00000 n +0000030704 00000 n +0000019817 00000 n +0000020256 00000 n +0000030469 00000 n +0000030791 00000 n +0000033117 00000 n +0000033242 00000 n trailer << /Size 53 /Root 51 0 R /Info 52 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -33115 +33374 %%EOF diff --git a/required/latex-lab/testfiles-float/float-013-new.luatex.tpf b/required/latex-lab/testfiles-float/float-013-new.luatex.tpf index 6b2e5880e..0da199296 100644 --- a/required/latex-lab/testfiles-float/float-013-new.luatex.tpf +++ b/required/latex-lab/testfiles-float/float-013-new.luatex.tpf @@ -139,7 +139,7 @@ endobj << /Kids [45 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 47 0 obj << /justify <> @@ -158,7 +158,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -603,40 +603,40 @@ xref 0000003415 00000 n 0000003437 00000 n 0000003459 00000 n -0000007569 00000 n +0000007828 00000 n 0000003551 00000 n 0000003896 00000 n -0000006201 00000 n -0000004717 00000 n +0000006460 00000 n +0000004824 00000 n 0000000012 00000 f -0000004785 00000 n +0000004892 00000 n 0000000014 00000 f -0000004855 00000 n +0000004962 00000 n 0000000020 00000 f -0000005735 00000 n -0000004936 00000 n -0000006008 00000 n -0000005837 00000 n -0000006110 00000 n +0000005994 00000 n +0000005043 00000 n +0000006267 00000 n +0000006096 00000 n +0000006369 00000 n 0000000000 00000 f -0000006262 00000 n -0000006376 00000 n -0000006465 00000 n -0000006554 00000 n -0000006643 00000 n -0000006738 00000 n -0000006842 00000 n -0000006983 00000 n -0000007079 00000 n -0000007183 00000 n -0000007324 00000 n -0000007428 00000 n -0000007706 00000 n +0000006521 00000 n +0000006635 00000 n +0000006724 00000 n +0000006813 00000 n +0000006902 00000 n +0000006997 00000 n +0000007101 00000 n +0000007242 00000 n +0000007338 00000 n +0000007442 00000 n +0000007583 00000 n +0000007687 00000 n +0000007965 00000 n 0000000654 00000 n 0000000519 00000 n 0000000020 00000 n -0000032106 00000 n -0000032264 00000 n +0000032365 00000 n +0000032523 00000 n 0000000717 00000 n 0000001183 00000 n 0000001388 00000 n @@ -645,15 +645,15 @@ xref 0000003515 00000 n 0000003608 00000 n 0000003859 00000 n -0000004555 00000 n -0000019870 00000 n -0000030117 00000 n -0000020057 00000 n -0000030322 00000 n -0000032326 00000 n -0000032451 00000 n +0000004662 00000 n +0000020129 00000 n +0000030376 00000 n +0000020316 00000 n +0000030581 00000 n +0000032585 00000 n +0000032710 00000 n trailer << /Size 54 /Root 52 0 R /Info 53 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32583 +32842 %%EOF diff --git a/required/latex-lab/testfiles-float/float-013-new.tpf b/required/latex-lab/testfiles-float/float-013-new.tpf index 84a9de76e..06879dd89 100644 --- a/required/latex-lab/testfiles-float/float-013-new.tpf +++ b/required/latex-lab/testfiles-float/float-013-new.tpf @@ -390,7 +390,7 @@ endobj << /Kids [44 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 46 0 obj << /justify <> @@ -409,7 +409,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -680,39 +680,39 @@ xref 0000015485 00000 n 0000015507 00000 n 0000015529 00000 n -0000019528 00000 n +0000019787 00000 n 0000015621 00000 n 0000015950 00000 n -0000018255 00000 n -0000016771 00000 n +0000018514 00000 n +0000016878 00000 n 0000000012 00000 f -0000016839 00000 n +0000016946 00000 n 0000000014 00000 f -0000016909 00000 n +0000017016 00000 n 0000000020 00000 f -0000017789 00000 n -0000016990 00000 n -0000018062 00000 n -0000017891 00000 n -0000018164 00000 n +0000018048 00000 n +0000017097 00000 n +0000018321 00000 n +0000018150 00000 n +0000018423 00000 n 0000000000 00000 f -0000018316 00000 n -0000018430 00000 n -0000018519 00000 n -0000018608 00000 n -0000018703 00000 n -0000018807 00000 n +0000018575 00000 n +0000018689 00000 n +0000018778 00000 n +0000018867 00000 n +0000018962 00000 n +0000019066 00000 n 0000012590 00000 n -0000018946 00000 n -0000019042 00000 n -0000019146 00000 n -0000019285 00000 n -0000019389 00000 n +0000019205 00000 n +0000019301 00000 n +0000019405 00000 n +0000019544 00000 n +0000019648 00000 n 0000000015 00000 n 0000012725 00000 n 0000012176 00000 n -0000032728 00000 n -0000032906 00000 n +0000032987 00000 n +0000033165 00000 n 0000012789 00000 n 0000013254 00000 n 0000013459 00000 n @@ -721,19 +721,19 @@ xref 0000015585 00000 n 0000015678 00000 n 0000015913 00000 n -0000016609 00000 n -0000030552 00000 n -0000019665 00000 n -0000020104 00000 n -0000030317 00000 n -0000030639 00000 n -0000032965 00000 n -0000033090 00000 n +0000016716 00000 n +0000030811 00000 n +0000019924 00000 n +0000020363 00000 n +0000030576 00000 n +0000030898 00000 n +0000033224 00000 n +0000033349 00000 n trailer << /Size 54 /Root 52 0 R /Info 53 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -33222 +33481 %%EOF diff --git a/required/latex-lab/testfiles-float/float-014-defer.luatex.tpf b/required/latex-lab/testfiles-float/float-014-defer.luatex.tpf index 12f11e954..58ff4aa1b 100644 --- a/required/latex-lab/testfiles-float/float-014-defer.luatex.tpf +++ b/required/latex-lab/testfiles-float/float-014-defer.luatex.tpf @@ -1,7 +1,7 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ 51 0 obj -<< /Length 2416 >> +<< /Length 2511 >> stream /opacity1 gs /Artifact BMC @@ -54,16 +54,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 587.718 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 587.718 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 587.718 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 587.718 Tm [(section)]TJ /F15 9.96264 Tf @@ -74,15 +78,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 563.905 Tm [(1.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 563.905 Tm [<0067>]TJ +1 0 0 1 150.954 563.905 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 563.905 Tm [(subsection)]TJ @@ -94,7 +102,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 545.515 Tm [(some)]TJ @@ -108,7 +116,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 274.67 508.709 Tm [(Figure)]TJ @@ -120,7 +128,7 @@ BT 1 0 0 1 313.857 508.709 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 318.285 508.709 Tm [(here)]TJ @@ -275,7 +283,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 33 0 R 34 0 R 39 0 R 40 0 R 27 0 R 26 0 R 30 0 R 29 0 R 36 0 R 43 0 R 44 0 R] +<< /Nums [0 [ 33 0 R 34 0 R 39 0 R 40 0 R 27 0 R 26 0 R 26 0 R 30 0 R 29 0 R 29 0 R 36 0 R 43 0 R 44 0 R] 1 [ 47 0 R 48 0 R] ] >> endobj @@ -286,7 +294,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 68 0 obj << /justify <> @@ -305,7 +313,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -338,19 +346,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 28 0 R] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> ] /ID (ID.007) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> <> ] /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> endobj 28 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 25 0 R /K [29 0 R 35 0 R 41 0 R] /ID (ID.009) >> endobj 29 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 28 0 R /K [30 0 R <> ] /ID (ID.010) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 28 0 R /K [30 0 R <> <> ] /ID (ID.010) >> endobj 30 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.011) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.011) >> endobj 31 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 32 0 R /ID (ID.012) >> @@ -368,7 +376,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 28 0 R /K 36 0 R /ID (ID.016) >> endobj 36 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 35 0 R /K [<> ] /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 35 0 R /K [<> ] /ID (ID.017) >> endobj 37 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 38 0 R /ID (ID.018) >> @@ -389,10 +397,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.023) >> endobj 43 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.024) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.025) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.025) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 46 0 R /ID (ID.026) >> @@ -977,91 +985,91 @@ endobj xref 0 84 0000000010 65535 f -0000006229 00000 n -0000006276 00000 n -0000006298 00000 n -0000006320 00000 n -0000012825 00000 n -0000006412 00000 n -0000007089 00000 n -0000009394 00000 n -0000007910 00000 n +0000006324 00000 n +0000006371 00000 n +0000006393 00000 n +0000006415 00000 n +0000013265 00000 n +0000006507 00000 n +0000007198 00000 n +0000009762 00000 n +0000008126 00000 n 0000000012 00000 f -0000007978 00000 n +0000008194 00000 n 0000000014 00000 f -0000008048 00000 n +0000008264 00000 n 0000000020 00000 f -0000008928 00000 n -0000008129 00000 n -0000009201 00000 n -0000009030 00000 n -0000009303 00000 n +0000009296 00000 n +0000008345 00000 n +0000009569 00000 n +0000009398 00000 n +0000009671 00000 n 0000000000 00000 f -0000009455 00000 n -0000009562 00000 n -0000009651 00000 n -0000009765 00000 n -0000009854 00000 n -0000009958 00000 n -0000010139 00000 n -0000010272 00000 n -0000010383 00000 n -0000010579 00000 n -0000010712 00000 n -0000010808 00000 n -0000010915 00000 n -0000011037 00000 n -0000011178 00000 n -0000011282 00000 n -0000011426 00000 n -0000011522 00000 n -0000011629 00000 n -0000011751 00000 n -0000011892 00000 n -0000011988 00000 n -0000012095 00000 n -0000012217 00000 n -0000012359 00000 n -0000012455 00000 n -0000012562 00000 n -0000012684 00000 n -0000002631 00000 n -0000002496 00000 n +0000009823 00000 n +0000009930 00000 n +0000010019 00000 n +0000010133 00000 n +0000010222 00000 n +0000010326 00000 n +0000010542 00000 n +0000010675 00000 n +0000010786 00000 n +0000011017 00000 n +0000011150 00000 n +0000011246 00000 n +0000011353 00000 n +0000011475 00000 n +0000011616 00000 n +0000011720 00000 n +0000011865 00000 n +0000011961 00000 n +0000012068 00000 n +0000012190 00000 n +0000012331 00000 n +0000012427 00000 n +0000012534 00000 n +0000012657 00000 n +0000012799 00000 n +0000012895 00000 n +0000013002 00000 n +0000013124 00000 n +0000002726 00000 n +0000002591 00000 n 0000000020 00000 n -0000055451 00000 n -0000026900 00000 n -0000053508 00000 n -0000055609 00000 n -0000012962 00000 n -0000003503 00000 n -0000003368 00000 n -0000002718 00000 n -0000003578 00000 n -0000004044 00000 n -0000004249 00000 n -0000006019 00000 n -0000006342 00000 n -0000006376 00000 n -0000006545 00000 n -0000007052 00000 n -0000007748 00000 n -0000025128 00000 n -0000025331 00000 n -0000025953 00000 n -0000025363 00000 n -0000026174 00000 n -0000027054 00000 n -0000027254 00000 n -0000036902 00000 n -0000027499 00000 n -0000051514 00000 n -0000037109 00000 n -0000051719 00000 n -0000053667 00000 n -0000055678 00000 n -0000055803 00000 n +0000055891 00000 n +0000027340 00000 n +0000053948 00000 n +0000056049 00000 n +0000013402 00000 n +0000003598 00000 n +0000003463 00000 n +0000002813 00000 n +0000003673 00000 n +0000004139 00000 n +0000004344 00000 n +0000006114 00000 n +0000006437 00000 n +0000006471 00000 n +0000006654 00000 n +0000007161 00000 n +0000007964 00000 n +0000025568 00000 n +0000025771 00000 n +0000026393 00000 n +0000025803 00000 n +0000026614 00000 n +0000027494 00000 n +0000027694 00000 n +0000037342 00000 n +0000027939 00000 n +0000051954 00000 n +0000037549 00000 n +0000052159 00000 n +0000054107 00000 n +0000056118 00000 n +0000056243 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -55935 +56375 %%EOF diff --git a/required/latex-lab/testfiles-float/float-014-defer.tpf b/required/latex-lab/testfiles-float/float-014-defer.tpf index 2e34d1768..a854d0d37 100644 --- a/required/latex-lab/testfiles-float/float-014-defer.tpf +++ b/required/latex-lab/testfiles-float/float-014-defer.tpf @@ -2,7 +2,7 @@ %ÐÔÅØ 51 0 obj << -/Length 1491 +/Length 1652 >> stream /opacity1 gs @@ -28,39 +28,49 @@ BT /F45 9.9626 Tf 305.693 619.658 Td [(hallo)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.347 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 587.833 Td [(1)]TJ ET EMC /section <> BDC BT +/F50 9.9626 Tf 157.434 587.833 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 587.833 Td [(section)]TJ/F50 9.9626 Tf( )Tj/F47 14.3462 Tf 52.839 0 Td [(A)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F49 11.9552 Tf 133.768 564.022 Td [(1.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F50 9.9626 Tf 164.396 564.022 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F49 11.9552 Tf 164.396 564.022 Td [(subsection)]TJ/F50 9.9626 Tf( )Tj/F49 11.9552 Tf 65.299 0 Td [(A)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 545.634 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/P <> BDC +/P <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 274.678 508.885 Td [(Figure)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(3:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 318.282 508.885 Td [(here)]TJ ET @@ -463,7 +473,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 33 0 R 34 0 R 39 0 R 40 0 R 26 0 R 25 0 R 30 0 R 29 0 R 36 0 R 36 0 R 43 0 R 44 0 R ] +<< /Nums [0 [ 33 0 R 34 0 R 39 0 R 40 0 R 26 0 R 25 0 R 25 0 R 30 0 R 29 0 R 29 0 R 36 0 R 36 0 R 43 0 R 44 0 R ] 1 [ 47 0 R 49 0 R ] ] >> endobj @@ -474,7 +484,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 68 0 obj << /justify <> @@ -493,7 +503,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -523,19 +533,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 28 0 R] /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <> <>] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> endobj 28 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 24 0 R /K [29 0 R 35 0 R 41 0 R] /ID (ID.008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 28 0 R /K [30 0 R <>] /ID (ID.009) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 28 0 R /K [30 0 R <> <>] /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 29 0 R /K <> /ID (ID.010) >> endobj 31 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 32 0 R /ID (ID.011) >> @@ -553,7 +563,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 28 0 R /K 36 0 R /ID (ID.015) >> endobj 36 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 35 0 R /K [<> <>] /ID (ID.016) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 35 0 R /K [<> <>] /ID (ID.016) >> endobj 37 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 38 0 R /ID (ID.017) >> @@ -574,10 +584,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.022) >> endobj 43 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.023) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.023) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.024) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 46 0 R /ID (ID.025) >> @@ -1256,98 +1266,98 @@ endobj xref 0 88 0000000010 65535 f -0000017253 00000 n -0000017300 00000 n -0000017322 00000 n -0000017344 00000 n -0000023758 00000 n -0000017436 00000 n -0000018104 00000 n -0000020409 00000 n -0000018925 00000 n +0000017414 00000 n +0000017461 00000 n +0000017483 00000 n +0000017505 00000 n +0000024260 00000 n +0000017597 00000 n +0000018279 00000 n +0000020843 00000 n +0000019207 00000 n 0000000012 00000 f -0000018993 00000 n +0000019275 00000 n 0000000014 00000 f -0000019063 00000 n +0000019345 00000 n 0000000020 00000 f -0000019943 00000 n -0000019144 00000 n -0000020216 00000 n -0000020045 00000 n -0000020318 00000 n +0000020377 00000 n +0000019426 00000 n +0000020650 00000 n +0000020479 00000 n +0000020752 00000 n 0000000000 00000 f -0000020470 00000 n -0000020577 00000 n -0000020691 00000 n -0000020780 00000 n -0000020884 00000 n -0000021063 00000 n -0000001565 00000 n -0000021194 00000 n -0000021305 00000 n -0000021499 00000 n -0000021630 00000 n -0000021726 00000 n -0000021833 00000 n -0000021953 00000 n -0000022092 00000 n -0000022196 00000 n -0000022370 00000 n -0000022466 00000 n -0000022573 00000 n -0000022693 00000 n -0000022832 00000 n -0000022928 00000 n -0000023035 00000 n -0000023156 00000 n -0000023296 00000 n -0000023392 00000 n -0000023499 00000 n -0000014393 00000 n -0000023619 00000 n -0000001700 00000 n +0000020904 00000 n +0000021011 00000 n +0000021125 00000 n +0000021214 00000 n +0000021318 00000 n +0000021530 00000 n +0000001726 00000 n +0000021661 00000 n +0000021772 00000 n +0000021999 00000 n +0000022130 00000 n +0000022226 00000 n +0000022333 00000 n +0000022453 00000 n +0000022592 00000 n +0000022696 00000 n +0000022872 00000 n +0000022968 00000 n +0000023075 00000 n +0000023195 00000 n +0000023334 00000 n +0000023430 00000 n +0000023537 00000 n +0000023658 00000 n +0000023798 00000 n +0000023894 00000 n +0000024001 00000 n +0000014554 00000 n +0000024121 00000 n +0000001861 00000 n 0000000015 00000 n -0000072175 00000 n -0000073066 00000 n -0000069908 00000 n -0000067641 00000 n -0000073230 00000 n -0000001800 00000 n -0000014528 00000 n -0000013963 00000 n -0000014604 00000 n -0000015069 00000 n -0000015274 00000 n -0000017043 00000 n -0000017366 00000 n -0000017400 00000 n -0000017576 00000 n -0000018067 00000 n -0000018763 00000 n -0000065391 00000 n -0000023895 00000 n -0000024343 00000 n -0000024747 00000 n -0000024769 00000 n -0000025208 00000 n -0000027872 00000 n -0000028090 00000 n -0000040004 00000 n -0000040254 00000 n -0000050899 00000 n -0000051138 00000 n -0000065109 00000 n -0000065552 00000 n -0000067819 00000 n -0000070086 00000 n -0000072353 00000 n -0000073296 00000 n -0000073421 00000 n +0000072677 00000 n +0000073568 00000 n +0000070410 00000 n +0000068143 00000 n +0000073732 00000 n +0000001961 00000 n +0000014689 00000 n +0000014124 00000 n +0000014765 00000 n +0000015230 00000 n +0000015435 00000 n +0000017204 00000 n +0000017527 00000 n +0000017561 00000 n +0000017751 00000 n +0000018242 00000 n +0000019045 00000 n +0000065893 00000 n +0000024397 00000 n +0000024845 00000 n +0000025249 00000 n +0000025271 00000 n +0000025710 00000 n +0000028374 00000 n +0000028592 00000 n +0000040506 00000 n +0000040756 00000 n +0000051401 00000 n +0000051640 00000 n +0000065611 00000 n +0000066054 00000 n +0000068321 00000 n +0000070588 00000 n +0000072855 00000 n +0000073798 00000 n +0000073923 00000 n trailer << /Size 88 /Root 86 0 R /Info 87 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -73553 +74055 %%EOF diff --git a/required/latex-lab/testfiles-float/float-015-defer.luatex.tpf b/required/latex-lab/testfiles-float/float-015-defer.luatex.tpf index 2d60bb674..cbf1cb42a 100644 --- a/required/latex-lab/testfiles-float/float-015-defer.luatex.tpf +++ b/required/latex-lab/testfiles-float/float-015-defer.luatex.tpf @@ -1,7 +1,7 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ 51 0 obj -<< /Length 2421 >> +<< /Length 2516 >> stream /opacity1 gs /Artifact BMC @@ -54,16 +54,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 587.718 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 587.718 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 587.718 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 587.718 Tm [(section)]TJ /F15 9.96264 Tf @@ -74,15 +78,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 563.905 Tm [(1.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 563.905 Tm [<0067>]TJ +1 0 0 1 150.954 563.905 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 563.905 Tm [(subsection)]TJ @@ -94,7 +102,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 545.515 Tm [(some)]TJ @@ -108,7 +116,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 263.739 508.82 Tm [(Figure)]TJ @@ -120,7 +128,7 @@ BT 1 0 0 1 302.926 508.82 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 307.354 508.82 Tm [(con)27(tainer)]TJ @@ -275,7 +283,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 31 0 R 32 0 R 37 0 R 38 0 R 25 0 R 24 0 R 28 0 R 27 0 R 34 0 R 43 0 R 44 0 R] +<< /Nums [0 [ 31 0 R 32 0 R 37 0 R 38 0 R 25 0 R 24 0 R 24 0 R 28 0 R 27 0 R 27 0 R 34 0 R 43 0 R 44 0 R] 1 [ 47 0 R 48 0 R] ] >> endobj @@ -286,7 +294,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 68 0 obj << /justify <> @@ -305,7 +313,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -332,19 +340,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [24 0 R 26 0 R] /ID (ID.004) >> endobj 24 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 23 0 R /K [25 0 R <> ] /ID (ID.005) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 23 0 R /K [25 0 R <> <> ] /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 24 0 R /K <> /ID (ID.006) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 24 0 R /K <> /ID (ID.006) >> endobj 26 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 23 0 R /K [27 0 R 29 0 R 33 0 R 45 0 R] /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 26 0 R /K [28 0 R <> ] /ID (ID.008) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 26 0 R /K [28 0 R <> <> ] /ID (ID.008) >> endobj 28 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 27 0 R /K <> /ID (ID.009) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 27 0 R /K <> /ID (ID.009) >> endobj 29 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 26 0 R /K 30 0 R /ID (ID.010) >> @@ -362,7 +370,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 26 0 R /K [34 0 R 35 0 R 39 0 R] /ID (ID.014) >> endobj 34 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.015) >> endobj 35 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 33 0 R /K 36 0 R /ID (ID.016) >> @@ -389,10 +397,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.023) >> endobj 43 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.024) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.025) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.025) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 26 0 R /K 46 0 R /ID (ID.026) >> @@ -977,91 +985,91 @@ endobj xref 0 84 0000000010 65535 f -0000006234 00000 n -0000006281 00000 n -0000006303 00000 n -0000006325 00000 n -0000012836 00000 n -0000006417 00000 n -0000007094 00000 n -0000009399 00000 n -0000007915 00000 n +0000006329 00000 n +0000006376 00000 n +0000006398 00000 n +0000006420 00000 n +0000013276 00000 n +0000006512 00000 n +0000007203 00000 n +0000009767 00000 n +0000008131 00000 n 0000000012 00000 f -0000007983 00000 n +0000008199 00000 n 0000000014 00000 f -0000008053 00000 n +0000008269 00000 n 0000000020 00000 f -0000008933 00000 n -0000008134 00000 n -0000009206 00000 n -0000009035 00000 n -0000009308 00000 n +0000009301 00000 n +0000008350 00000 n +0000009574 00000 n +0000009403 00000 n +0000009676 00000 n 0000000000 00000 f -0000009460 00000 n -0000009567 00000 n -0000009656 00000 n -0000009760 00000 n -0000009941 00000 n -0000010074 00000 n -0000010192 00000 n -0000010388 00000 n -0000010521 00000 n -0000010617 00000 n -0000010724 00000 n -0000010846 00000 n -0000010987 00000 n -0000011107 00000 n -0000011248 00000 n -0000011344 00000 n -0000011451 00000 n -0000011573 00000 n -0000011714 00000 n -0000011805 00000 n -0000011903 00000 n -0000011999 00000 n -0000012106 00000 n -0000012228 00000 n -0000012370 00000 n -0000012466 00000 n -0000012573 00000 n -0000012695 00000 n -0000002636 00000 n -0000002501 00000 n +0000009828 00000 n +0000009935 00000 n +0000010024 00000 n +0000010128 00000 n +0000010344 00000 n +0000010477 00000 n +0000010595 00000 n +0000010826 00000 n +0000010959 00000 n +0000011055 00000 n +0000011162 00000 n +0000011284 00000 n +0000011425 00000 n +0000011545 00000 n +0000011687 00000 n +0000011783 00000 n +0000011890 00000 n +0000012012 00000 n +0000012153 00000 n +0000012244 00000 n +0000012342 00000 n +0000012438 00000 n +0000012545 00000 n +0000012668 00000 n +0000012810 00000 n +0000012906 00000 n +0000013013 00000 n +0000013135 00000 n +0000002731 00000 n +0000002596 00000 n 0000000020 00000 n -0000055716 00000 n -0000026911 00000 n -0000053773 00000 n -0000055874 00000 n -0000012973 00000 n -0000003508 00000 n -0000003373 00000 n -0000002723 00000 n -0000003583 00000 n -0000004049 00000 n -0000004254 00000 n -0000006024 00000 n -0000006347 00000 n -0000006381 00000 n -0000006550 00000 n -0000007057 00000 n -0000007753 00000 n -0000025139 00000 n -0000025342 00000 n -0000025964 00000 n -0000025374 00000 n -0000026185 00000 n -0000027065 00000 n -0000027265 00000 n -0000036917 00000 n -0000027514 00000 n -0000051779 00000 n -0000037124 00000 n -0000051984 00000 n -0000053932 00000 n -0000055943 00000 n -0000056068 00000 n +0000056156 00000 n +0000027351 00000 n +0000054213 00000 n +0000056314 00000 n +0000013413 00000 n +0000003603 00000 n +0000003468 00000 n +0000002818 00000 n +0000003678 00000 n +0000004144 00000 n +0000004349 00000 n +0000006119 00000 n +0000006442 00000 n +0000006476 00000 n +0000006659 00000 n +0000007166 00000 n +0000007969 00000 n +0000025579 00000 n +0000025782 00000 n +0000026404 00000 n +0000025814 00000 n +0000026625 00000 n +0000027505 00000 n +0000027705 00000 n +0000037357 00000 n +0000027954 00000 n +0000052219 00000 n +0000037564 00000 n +0000052424 00000 n +0000054372 00000 n +0000056383 00000 n +0000056508 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -56200 +56640 %%EOF diff --git a/required/latex-lab/testfiles-float/float-015-defer.tpf b/required/latex-lab/testfiles-float/float-015-defer.tpf index 3de36d887..1eb5bc476 100644 --- a/required/latex-lab/testfiles-float/float-015-defer.tpf +++ b/required/latex-lab/testfiles-float/float-015-defer.tpf @@ -2,7 +2,7 @@ %ÐÔÅØ 51 0 obj << -/Length 1499 +/Length 1660 >> stream /opacity1 gs @@ -28,39 +28,49 @@ BT /F45 9.9626 Tf 305.693 619.658 Td [(hallo)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.347 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 587.833 Td [(1)]TJ ET EMC /section <> BDC BT +/F50 9.9626 Tf 157.434 587.833 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 587.833 Td [(section)]TJ/F50 9.9626 Tf( )Tj/F47 14.3462 Tf 52.839 0 Td [(A)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F49 11.9552 Tf 133.768 564.022 Td [(1.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F50 9.9626 Tf 164.396 564.022 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F49 11.9552 Tf 164.396 564.022 Td [(subsection)]TJ/F50 9.9626 Tf( )Tj/F49 11.9552 Tf 65.299 0 Td [(A)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 545.634 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/P <> BDC +/P <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 263.75 508.885 Td [(Figure)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(3:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 307.353 508.885 Td [(con)28(tainer)]TJ ET @@ -463,7 +473,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 31 0 R 32 0 R 37 0 R 38 0 R 24 0 R 23 0 R 28 0 R 27 0 R 34 0 R 39 0 R 43 0 R 44 0 R ] +<< /Nums [0 [ 31 0 R 32 0 R 37 0 R 38 0 R 24 0 R 23 0 R 23 0 R 28 0 R 27 0 R 27 0 R 34 0 R 39 0 R 43 0 R 44 0 R ] 1 [ 47 0 R 49 0 R ] ] >> endobj @@ -474,7 +484,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 68 0 obj << /justify <> @@ -493,7 +503,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -517,19 +527,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [23 0 R 26 0 R] /ID (ID.003) >> endobj 23 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 22 0 R /K [24 0 R <>] /ID (ID.004) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 22 0 R /K [24 0 R <> <>] /ID (ID.004) >> endobj 24 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 23 0 R /K <> /ID (ID.005) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 23 0 R /K <> /ID (ID.005) >> endobj 26 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [27 0 R 29 0 R 33 0 R 45 0 R] /ID (ID.006) >> endobj 27 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 26 0 R /K [28 0 R <>] /ID (ID.007) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 26 0 R /K [28 0 R <> <>] /ID (ID.007) >> endobj 28 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 27 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 27 0 R /K <> /ID (ID.008) >> endobj 29 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 26 0 R /K 30 0 R /ID (ID.009) >> @@ -547,7 +557,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 26 0 R /K [34 0 R 35 0 R 39 0 R] /ID (ID.013) >> endobj 34 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.014) >> endobj 35 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 33 0 R /K 36 0 R /ID (ID.015) >> @@ -562,7 +572,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 36 0 R /K <> /ID (ID.018) >> endobj 39 0 obj -<< /Type /StructElem /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /S /text-block /NS 15 0 R /P 33 0 R /K <> /ID (ID.019) >> endobj 40 0 obj << /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K 41 0 R /ID (ID.020) >> @@ -574,10 +584,10 @@ endobj << /Type /StructElem /S /Caption /NS 11 0 R /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.022) >> endobj 43 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.023) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.023) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 42 0 R /K <> /ID (ID.024) >> endobj 45 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 26 0 R /K 46 0 R /ID (ID.025) >> @@ -1256,98 +1266,98 @@ endobj xref 0 88 0000000010 65535 f -0000017261 00000 n -0000017308 00000 n -0000017330 00000 n -0000017352 00000 n -0000023776 00000 n -0000017444 00000 n -0000018112 00000 n -0000020417 00000 n -0000018933 00000 n +0000017422 00000 n +0000017469 00000 n +0000017491 00000 n +0000017513 00000 n +0000024278 00000 n +0000017605 00000 n +0000018287 00000 n +0000020851 00000 n +0000019215 00000 n 0000000012 00000 f -0000019001 00000 n +0000019283 00000 n 0000000014 00000 f -0000019071 00000 n +0000019353 00000 n 0000000020 00000 f -0000019951 00000 n -0000019152 00000 n -0000020224 00000 n -0000020053 00000 n -0000020326 00000 n +0000020385 00000 n +0000019434 00000 n +0000020658 00000 n +0000020487 00000 n +0000020760 00000 n 0000000000 00000 f -0000020478 00000 n -0000020585 00000 n -0000020689 00000 n -0000020868 00000 n -0000001573 00000 n -0000020999 00000 n -0000021117 00000 n -0000021311 00000 n -0000021442 00000 n -0000021538 00000 n -0000021645 00000 n -0000021765 00000 n -0000021904 00000 n -0000022024 00000 n -0000022163 00000 n -0000022259 00000 n -0000022366 00000 n -0000022486 00000 n -0000022625 00000 n -0000022752 00000 n -0000022850 00000 n -0000022946 00000 n -0000023053 00000 n -0000023174 00000 n -0000023314 00000 n -0000023410 00000 n -0000023517 00000 n -0000014401 00000 n -0000023637 00000 n -0000001708 00000 n +0000020912 00000 n +0000021019 00000 n +0000021123 00000 n +0000021335 00000 n +0000001734 00000 n +0000021466 00000 n +0000021584 00000 n +0000021811 00000 n +0000021942 00000 n +0000022038 00000 n +0000022145 00000 n +0000022265 00000 n +0000022404 00000 n +0000022524 00000 n +0000022664 00000 n +0000022760 00000 n +0000022867 00000 n +0000022987 00000 n +0000023126 00000 n +0000023254 00000 n +0000023352 00000 n +0000023448 00000 n +0000023555 00000 n +0000023676 00000 n +0000023816 00000 n +0000023912 00000 n +0000024019 00000 n +0000014562 00000 n +0000024139 00000 n +0000001869 00000 n 0000000015 00000 n -0000072370 00000 n -0000073261 00000 n -0000070103 00000 n -0000067836 00000 n -0000073425 00000 n -0000001808 00000 n -0000014536 00000 n -0000013971 00000 n -0000014612 00000 n -0000015077 00000 n -0000015282 00000 n -0000017051 00000 n -0000017374 00000 n -0000017408 00000 n -0000017584 00000 n -0000018075 00000 n -0000018771 00000 n -0000065586 00000 n -0000023913 00000 n -0000024361 00000 n -0000024765 00000 n -0000024787 00000 n -0000025226 00000 n -0000027890 00000 n -0000028108 00000 n -0000040022 00000 n -0000040272 00000 n -0000050917 00000 n -0000051156 00000 n -0000065302 00000 n -0000065747 00000 n -0000068014 00000 n -0000070281 00000 n -0000072548 00000 n -0000073491 00000 n -0000073616 00000 n +0000072872 00000 n +0000073763 00000 n +0000070605 00000 n +0000068338 00000 n +0000073927 00000 n +0000001969 00000 n +0000014697 00000 n +0000014132 00000 n +0000014773 00000 n +0000015238 00000 n +0000015443 00000 n +0000017212 00000 n +0000017535 00000 n +0000017569 00000 n +0000017759 00000 n +0000018250 00000 n +0000019053 00000 n +0000066088 00000 n +0000024415 00000 n +0000024863 00000 n +0000025267 00000 n +0000025289 00000 n +0000025728 00000 n +0000028392 00000 n +0000028610 00000 n +0000040524 00000 n +0000040774 00000 n +0000051419 00000 n +0000051658 00000 n +0000065804 00000 n +0000066249 00000 n +0000068516 00000 n +0000070783 00000 n +0000073050 00000 n +0000073993 00000 n +0000074118 00000 n trailer << /Size 88 /Root 86 0 R /Info 87 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -73748 +74250 %%EOF diff --git a/required/latex-lab/testfiles-float/float-sidewaystable.luatex.tpf b/required/latex-lab/testfiles-float/float-sidewaystable.luatex.tpf index c0b09fc69..64d848c42 100644 --- a/required/latex-lab/testfiles-float/float-sidewaystable.luatex.tpf +++ b/required/latex-lab/testfiles-float/float-sidewaystable.luatex.tpf @@ -1,21 +1,25 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ 41 0 obj -<< /Length 375 >> +<< /Length 420 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(test)]TJ ET @@ -130,7 +134,7 @@ endobj << /DisplayDocTitle true >> endobj 6 0 obj -<< /Nums [0 [ 27 0 R 26 0 R] +<< /Nums [0 [ 27 0 R 26 0 R 26 0 R] 1 [ 30 0 R 31 0 R 36 0 R 37 0 R] ] >> endobj @@ -141,7 +145,7 @@ endobj << /Kids [52 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 54 0 obj << /justify <> @@ -160,7 +164,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -193,10 +197,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 26 0 R /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> ] /ID (ID.007) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 25 0 R /K [27 0 R <> <> ] /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 26 0 R /K <> /ID (ID.008) >> endobj 28 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K [29 0 R 32 0 R] /ID (ID.009) >> @@ -900,77 +904,77 @@ endobj xref 0 70 0000000010 65535 f -0000001875 00000 n -0000001922 00000 n -0000001944 00000 n -0000001966 00000 n -0000006899 00000 n -0000002069 00000 n -0000002537 00000 n -0000004838 00000 n -0000003358 00000 n +0000001920 00000 n +0000001967 00000 n +0000001989 00000 n +0000002011 00000 n +0000007245 00000 n +0000002114 00000 n +0000002589 00000 n +0000005149 00000 n +0000003517 00000 n 0000000012 00000 f -0000003426 00000 n +0000003585 00000 n 0000000014 00000 f -0000003496 00000 n +0000003655 00000 n 0000000020 00000 f -0000004376 00000 n -0000003577 00000 n -0000004649 00000 n -0000004478 00000 n -0000004751 00000 n +0000004687 00000 n +0000003736 00000 n +0000004960 00000 n +0000004789 00000 n +0000005062 00000 n 0000000000 00000 f -0000004899 00000 n -0000005006 00000 n -0000005095 00000 n -0000005184 00000 n -0000005281 00000 n -0000005376 00000 n -0000005537 00000 n -0000005670 00000 n -0000005775 00000 n -0000005882 00000 n -0000006004 00000 n -0000006145 00000 n -0000006265 00000 n -0000006368 00000 n -0000006464 00000 n -0000006566 00000 n -0000006687 00000 n -0000006808 00000 n -0000000590 00000 n -0000000455 00000 n +0000005210 00000 n +0000005317 00000 n +0000005406 00000 n +0000005495 00000 n +0000005592 00000 n +0000005687 00000 n +0000005883 00000 n +0000006016 00000 n +0000006121 00000 n +0000006228 00000 n +0000006350 00000 n +0000006491 00000 n +0000006611 00000 n +0000006714 00000 n +0000006810 00000 n +0000006912 00000 n +0000007033 00000 n +0000007154 00000 n +0000000635 00000 n +0000000500 00000 n 0000000020 00000 n -0000047021 00000 n -0000025802 00000 n -0000048964 00000 n -0000049122 00000 n -0000007036 00000 n -0000001800 00000 n -0000001665 00000 n -0000000677 00000 n -0000001988 00000 n -0000002024 00000 n -0000002153 00000 n -0000002500 00000 n -0000003196 00000 n -0000024068 00000 n -0000024233 00000 n -0000024855 00000 n -0000024265 00000 n -0000025076 00000 n -0000025956 00000 n -0000026156 00000 n -0000034245 00000 n -0000026327 00000 n -0000045027 00000 n -0000034452 00000 n -0000045232 00000 n -0000047180 00000 n -0000049191 00000 n -0000049331 00000 n +0000047367 00000 n +0000026148 00000 n +0000049310 00000 n +0000049468 00000 n +0000007382 00000 n +0000001845 00000 n +0000001710 00000 n +0000000722 00000 n +0000002033 00000 n +0000002069 00000 n +0000002205 00000 n +0000002552 00000 n +0000003355 00000 n +0000024414 00000 n +0000024579 00000 n +0000025201 00000 n +0000024611 00000 n +0000025422 00000 n +0000026302 00000 n +0000026502 00000 n +0000034591 00000 n +0000026673 00000 n +0000045373 00000 n +0000034798 00000 n +0000045578 00000 n +0000047526 00000 n +0000049537 00000 n +0000049677 00000 n trailer << /Size 70 /Root 68 0 R /Info 69 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -49463 +49809 %%EOF diff --git a/required/latex-lab/testfiles-float/float-sidewaystable.tpf b/required/latex-lab/testfiles-float/float-sidewaystable.tpf index 4845ae86b..ef60d1195 100644 --- a/required/latex-lab/testfiles-float/float-sidewaystable.tpf +++ b/required/latex-lab/testfiles-float/float-sidewaystable.tpf @@ -2,19 +2,24 @@ %ÐÔÅØ 41 0 obj << -/Length 264 +/Length 342 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F50 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(test)]TJ ET EMC @@ -32,16 +37,16 @@ endobj /Resources 40 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 44 0 R +/Parent 45 0 R >> endobj 40 0 obj << /ExtGState 1 0 R -/Font << /F47 42 0 R /F45 43 0 R >> +/Font << /F47 42 0 R /F50 43 0 R /F45 44 0 R >> >> endobj -45 0 obj +46 0 obj << /Type /Metadata /Subtype /XML /Length 16940 @@ -382,7 +387,7 @@ stream endstream endobj -47 0 obj +48 0 obj << /Length 659 >> @@ -431,17 +436,17 @@ endobj 31 0 obj << /Type /Page -/Contents 47 0 R -/Resources 46 0 R +/Contents 48 0 R +/Resources 47 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 44 0 R +/Parent 45 0 R >> endobj -46 0 obj +47 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 48 0 R >> +/Font << /F45 44 0 R /F50 43 0 R >> >> endobj 1 0 obj @@ -463,7 +468,7 @@ endobj << /DisplayDocTitle true >> endobj 6 0 obj -<< /Nums [0 [ 26 0 R 25 0 R ] +<< /Nums [0 [ 26 0 R 25 0 R 25 0 R ] 1 [ 30 0 R 32 0 R 34 0 R 37 0 R 38 0 R 39 0 R ] ] >> endobj @@ -474,7 +479,7 @@ endobj << /Kids [51 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 53 0 obj << /justify <> @@ -493,7 +498,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -523,10 +528,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 25 0 R /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 24 0 R /K [26 0 R <> <>] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> endobj 28 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K [29 0 R 33 0 R] /ID (ID.008) >> @@ -564,11 +569,11 @@ endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 52 0 R /ClassMap 53 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -54 0 obj -[333] +55 0 obj +[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7] endobj 56 0 obj -[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7] +[333] endobj 57 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] @@ -648,7 +653,7 @@ endobj /FontFile 62 0 R >> endobj -55 0 obj +54 0 obj << /Type /Encoding /Differences [49/one/two 58/colon 84/T 97/a/b 101/e 108/l 115/s/t] @@ -807,7 +812,7 @@ endobj /FirstChar 49 /LastChar 116 /Widths 57 0 R -/Encoding 55 0 R +/Encoding 54 0 R /ToUnicode 64 0 R >> endobj @@ -955,7 +960,7 @@ end %%EOF endstream endobj -43 0 obj +44 0 obj << /Type /Font /Subtype /Type1 @@ -963,8 +968,8 @@ endobj /FontDescriptor 63 0 R /FirstChar 49 /LastChar 108 -/Widths 56 0 R -/Encoding 55 0 R +/Widths 55 0 R +/Encoding 54 0 R /ToUnicode 65 0 R >> endobj @@ -1006,7 +1011,7 @@ end %%EOF endstream endobj -48 0 obj +43 0 obj << /Type /Font /Subtype /Type1 @@ -1014,11 +1019,11 @@ endobj /FontDescriptor 59 0 R /FirstChar 32 /LastChar 32 -/Widths 54 0 R +/Widths 56 0 R /ToUnicode 66 0 R >> endobj -44 0 obj +45 0 obj << /Type /Pages /Count 2 @@ -1028,8 +1033,8 @@ endobj 67 0 obj << /Type /Catalog -/Pages 44 0 R -/MarkInfo 49 0 R/ViewerPreferences 50 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 45 0 R +/Pages 45 0 R +/MarkInfo 49 0 R/ViewerPreferences 50 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 46 0 R >> endobj 68 0 obj @@ -1041,79 +1046,79 @@ endobj xref 0 69 0000000010 65535 f -0000018507 00000 n -0000018554 00000 n -0000018576 00000 n -0000018598 00000 n -0000023500 00000 n -0000018701 00000 n -0000019167 00000 n -0000021468 00000 n -0000019988 00000 n +0000018597 00000 n +0000018644 00000 n +0000018666 00000 n +0000018688 00000 n +0000023889 00000 n +0000018791 00000 n +0000019264 00000 n +0000021824 00000 n +0000020192 00000 n 0000000012 00000 f -0000020056 00000 n +0000020260 00000 n 0000000014 00000 f -0000020126 00000 n +0000020330 00000 n 0000000020 00000 f -0000021006 00000 n -0000020207 00000 n -0000021279 00000 n -0000021108 00000 n -0000021381 00000 n +0000021362 00000 n +0000020411 00000 n +0000021635 00000 n +0000021464 00000 n +0000021737 00000 n 0000000000 00000 f -0000021529 00000 n -0000021636 00000 n -0000021725 00000 n -0000021822 00000 n -0000021917 00000 n -0000022076 00000 n -0000000338 00000 n -0000022207 00000 n -0000022312 00000 n -0000022419 00000 n -0000018296 00000 n -0000022539 00000 n -0000022678 00000 n -0000022798 00000 n -0000022937 00000 n -0000023033 00000 n -0000023135 00000 n -0000023254 00000 n -0000023373 00000 n -0000000473 00000 n +0000021885 00000 n +0000021992 00000 n +0000022081 00000 n +0000022178 00000 n +0000022273 00000 n +0000022465 00000 n +0000000416 00000 n +0000022596 00000 n +0000022701 00000 n +0000022808 00000 n +0000018386 00000 n +0000022928 00000 n +0000023067 00000 n +0000023187 00000 n +0000023326 00000 n +0000023422 00000 n +0000023524 00000 n +0000023643 00000 n +0000023762 00000 n +0000000551 00000 n 0000000015 00000 n -0000046484 00000 n -0000048751 00000 n -0000049806 00000 n -0000000549 00000 n -0000018431 00000 n -0000017578 00000 n -0000049642 00000 n -0000018620 00000 n -0000018656 00000 n -0000018799 00000 n -0000019130 00000 n -0000019826 00000 n -0000023637 00000 n -0000044290 00000 n -0000023659 00000 n -0000024028 00000 n -0000024432 00000 n -0000027096 00000 n -0000027314 00000 n -0000037157 00000 n -0000037386 00000 n -0000044047 00000 n -0000044395 00000 n -0000046662 00000 n -0000048929 00000 n -0000049872 00000 n -0000050012 00000 n +0000046873 00000 n +0000050031 00000 n +0000049140 00000 n +0000050195 00000 n +0000000639 00000 n +0000018521 00000 n +0000017668 00000 n +0000018710 00000 n +0000018746 00000 n +0000018896 00000 n +0000019227 00000 n +0000020030 00000 n +0000044679 00000 n +0000024026 00000 n +0000024395 00000 n +0000024417 00000 n +0000024821 00000 n +0000027485 00000 n +0000027703 00000 n +0000037546 00000 n +0000037775 00000 n +0000044436 00000 n +0000044784 00000 n +0000047051 00000 n +0000049318 00000 n +0000050261 00000 n +0000050401 00000 n trailer << /Size 69 /Root 67 0 R /Info 68 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -50144 +50533 %%EOF diff --git a/required/latex-lab/testfiles-float/float-tagging-off.luatex.tlg b/required/latex-lab/testfiles-float/float-tagging-off.luatex.tlg index c3a4fc2a9..883626000 100644 --- a/required/latex-lab/testfiles-float/float-tagging-off.luatex.tlg +++ b/required/latex-lab/testfiles-float/float-tagging-off.luatex.tlg @@ -283,6 +283,7 @@ Completed box being shipped out [1] ......\glue 0.0 ......\OT1/cmr/bx/n/14.4 1 ......\glue 16.19998 +......\glue 0.0 .....\OT1/cmr/bx/n/14.4 I .....\OT1/cmr/bx/n/14.4 n .....\discretionary (penalty 50) diff --git a/required/latex-lab/testfiles-float/float-tagging-off.tlg b/required/latex-lab/testfiles-float/float-tagging-off.tlg index 248923d42..4b571f764 100644 --- a/required/latex-lab/testfiles-float/float-tagging-off.tlg +++ b/required/latex-lab/testfiles-float/float-tagging-off.tlg @@ -253,6 +253,7 @@ Completed box being shipped out [1] ......\glue 0.0 ......\T1/cmr/bx/n/14.4 1 ......\glue 15.83623 +......\pdffakespace .....\T1/cmr/bx/n/14.4 I .....\T1/cmr/bx/n/14.4 n .....\kern-0.4399 diff --git a/required/latex-lab/testfiles-float/marginpar-01.luatex.tpf b/required/latex-lab/testfiles-float/marginpar-01.luatex.tpf index 1aeb0664f..df38b97b4 100644 --- a/required/latex-lab/testfiles-float/marginpar-01.luatex.tpf +++ b/required/latex-lab/testfiles-float/marginpar-01.luatex.tpf @@ -4,28 +4,32 @@ << /Type/OBJR/Obj 36 0 R/Pg 9 0 R >> endobj 54 0 obj -<< /Length 3695 >> +<< /Length 3787 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Br)]TJ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(marginpar)]TJ @@ -33,7 +37,7 @@ BT 1 0 0 1 178.656 635.414 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 181.977 635.414 Tm [<0067>]TJ @@ -45,7 +49,7 @@ BT 1 0 0 1 196.921 635.414 Tm [(paragraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 488.438 635.414 Tm [(Br)]TJ @@ -53,15 +57,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 602.469 Tm [(2)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 141.838 602.469 Tm [<0067>]TJ +1 0 0 1 141.838 602.469 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F18 14.3462 Tf 1 0 0 1 157.978 602.469 Tm [(Duc)31(k)]TJ @@ -69,7 +77,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 488.438 592.603 Tm [(duc)27(k)]TJ @@ -77,7 +85,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 580.648 Tm [(marginpar)]TJ @@ -91,7 +99,7 @@ BT 1 0 0 1 193.6 580.648 Tm [(vmo)-27(de)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 568.692 Tm [(A)]TJ @@ -103,7 +111,7 @@ BT 1 0 0 1 179.984 568.692 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 183.305 568.692 Tm [<0067>]TJ @@ -123,7 +131,7 @@ BT 1 0 0 1 219.336 568.692 Tm [(b)-27(ear.)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 488.438 568.692 Tm [(Br,)]TJ @@ -135,7 +143,7 @@ BT 1 0 0 1 518.271 568.692 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 521.592 568.692 Tm [(1)]TJ @@ -143,7 +151,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 148.712 556.737 Tm [(A)]TJ @@ -157,7 +165,7 @@ BT 1 0 0 1 193.295 556.737 Tm [(note)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 212.114 556.737 Tm [<0067>]TJ @@ -173,25 +181,25 @@ BT 1 0 0 1 246.429 556.737 Tm [(list.)]TJ ET EMC -/itemlabel<> BDC +/itemlabel<> BDC BT /F19 9.96264 Tf 1 0 0 1 503.384 554.855 Tm [(\210)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 513.345 554.855 Tm [(Duc)27(k)]TJ ET EMC -/itemlabel<> BDC +/itemlabel<> BDC BT /F19 9.96264 Tf 1 0 0 1 503.384 534.93 Tm [(\210)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 513.345 534.93 Tm [(Br)]TJ @@ -234,13 +242,13 @@ endobj << /D [ 9 0 R /XYZ 133.768 675.168 null ] >> endobj 60 0 obj -[ 16 0 R /XYZ 133.768 675.168 null ] +[ 15 0 R /XYZ 133.768 675.168 null ] endobj 64 0 obj << /D [ 9 0 R /XYZ 133.768 620.401 null ] >> endobj 65 0 obj -[ 24 0 R /XYZ 133.768 620.401 null ] +[ 23 0 R /XYZ 133.768 620.401 null ] endobj 66 0 obj << /D [ 9 0 R /XYZ 503.384 566.811 null ] >> @@ -353,7 +361,7 @@ endobj (\376\377\000D\000u\000c\000k) endobj 6 0 obj -<< /Nums [0 [ 16 0 R 15 0 R 18 0 R 18 0 R 21 0 R 24 0 R 23 0 R 27 0 R 29 0 R 31 0 R 31 0 R 34 0 R 35 0 R 38 0 R 38 0 R 43 0 R 46 0 R 48 0 R 51 0 R] +<< /Nums [0 [ 16 0 R 15 0 R 15 0 R 18 0 R 18 0 R 21 0 R 24 0 R 23 0 R 23 0 R 27 0 R 29 0 R 31 0 R 31 0 R 34 0 R 35 0 R 38 0 R 38 0 R 43 0 R 46 0 R 48 0 R 51 0 R] 1 [ 74 0 R 74 0 R 77 0 R] 2 35 0 R ] >> @@ -365,7 +373,7 @@ endobj << /Kids [92 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 94 0 obj << /justify <> @@ -391,16 +399,16 @@ endobj << /Type /StructElem /S /Sect /P 10 0 R /K [15 0 R 17 0 R] /ID (ID.006) >> endobj 15 0 obj -<< /Type /StructElem /T /S /section /P 14 0 R /K [16 0 R <> ] /ID (ID.007) >> +<< /Type /StructElem /T /S /section /P 14 0 R /K [16 0 R <> <> ] /ID (ID.007) >> endobj 16 0 obj -<< /Type /StructElem /S /section-number /P 15 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /P 15 0 R /K <> /ID (ID.008) >> endobj 17 0 obj << /Type /StructElem /S /semantic-para /P 14 0 R /K [18 0 R 19 0 R] /ID (ID.009) >> endobj 18 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 17 0 R /K [<> <> ] /ID (ID.010) >> +<< /Type /StructElem /C /justify /S /text-block /P 17 0 R /K [<> <> ] /ID (ID.010) >> endobj 19 0 obj << /Type /StructElem /S /Aside /P 17 0 R /K 20 0 R /ID (ID.011) >> @@ -409,16 +417,16 @@ endobj << /Type /StructElem /S /semantic-para /P 19 0 R /K 21 0 R /ID (ID.012) >> endobj 21 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.013) >> endobj 22 0 obj << /Type /StructElem /S /Sect /P 10 0 R /K [23 0 R 25 0 R 28 0 R 30 0 R 37 0 R 73 0 R] /ID (ID.014) >> endobj 23 0 obj -<< /Type /StructElem /T /S /section /P 22 0 R /K [24 0 R <> ] /ID (ID.015) >> +<< /Type /StructElem /T /S /section /P 22 0 R /K [24 0 R <> <> ] /ID (ID.015) >> endobj 24 0 obj -<< /Type /StructElem /S /section-number /P 23 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /S /heading-number /P 23 0 R /K <> /ID (ID.016) >> endobj 25 0 obj << /Type /StructElem /S /Aside /P 22 0 R /K 26 0 R /ID (ID.017) >> @@ -427,19 +435,19 @@ endobj << /Type /StructElem /S /semantic-para /P 25 0 R /K 27 0 R /ID (ID.018) >> endobj 27 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 26 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /C /justify /S /text-block /P 26 0 R /K <> /ID (ID.019) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /P 22 0 R /K 29 0 R /ID (ID.020) >> endobj 29 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.021) >> +<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.021) >> endobj 30 0 obj << /Type /StructElem /S /semantic-para /P 22 0 R /K [31 0 R 32 0 R] /ID (ID.022) >> endobj 31 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 30 0 R /K [<> <> ] /ID (ID.023) >> +<< /Type /StructElem /C /justify /S /text-block /P 30 0 R /K [<> <> ] /ID (ID.023) >> endobj 32 0 obj << /Type /StructElem /S /Aside /P 30 0 R /K 33 0 R /ID (ID.024) >> @@ -448,16 +456,16 @@ endobj << /Type /StructElem /S /semantic-para /P 32 0 R /K 34 0 R /ID (ID.025) >> endobj 34 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 33 0 R /K [<> 35 0 R ] /ID (ID.026) >> +<< /Type /StructElem /C /justify /S /text-block /P 33 0 R /K [<> 35 0 R ] /ID (ID.026) >> endobj 35 0 obj -<< /Type /StructElem /S /Link /P 34 0 R /K [<> 52 0 R] /ID (ID.027) >> +<< /Type /StructElem /S /Link /P 34 0 R /K [<> 52 0 R] /ID (ID.027) >> endobj 37 0 obj << /Type /StructElem /S /semantic-para /P 22 0 R /K [38 0 R 39 0 R] /ID (ID.028) >> endobj 38 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 37 0 R /K [<> <> ] /ID (ID.029) >> +<< /Type /StructElem /C /justify /S /text-block /P 37 0 R /K [<> <> ] /ID (ID.029) >> endobj 39 0 obj << /Type /StructElem /S /Aside /P 37 0 R /K 40 0 R /ID (ID.030) >> @@ -472,7 +480,7 @@ endobj << /Type /StructElem /S /item /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.033) >> endobj 43 0 obj -<< /Type /StructElem /S /itemlabel /P 42 0 R /K <> /ID (ID.034) >> +<< /Type /StructElem /S /itemlabel /P 42 0 R /K <> /ID (ID.034) >> endobj 44 0 obj << /Type /StructElem /S /itembody /P 42 0 R /K 45 0 R /ID (ID.035) >> @@ -481,13 +489,13 @@ endobj << /Type /StructElem /S /semantic-para /P 44 0 R /K 46 0 R /ID (ID.036) >> endobj 46 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 45 0 R /K <> /ID (ID.037) >> +<< /Type /StructElem /C /justify /S /text-block /P 45 0 R /K <> /ID (ID.037) >> endobj 47 0 obj << /Type /StructElem /S /item /P 41 0 R /K [48 0 R 49 0 R] /ID (ID.038) >> endobj 48 0 obj -<< /Type /StructElem /S /itemlabel /P 47 0 R /K <> /ID (ID.039) >> +<< /Type /StructElem /S /itemlabel /P 47 0 R /K <> /ID (ID.039) >> endobj 49 0 obj << /Type /StructElem /S /itembody /P 47 0 R /K 50 0 R /ID (ID.040) >> @@ -496,7 +504,7 @@ endobj << /Type /StructElem /S /semantic-para /P 49 0 R /K 51 0 R /ID (ID.041) >> endobj 51 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 50 0 R /K <> /ID (ID.042) >> +<< /Type /StructElem /C /justify /S /text-block /P 50 0 R /K <> /ID (ID.042) >> endobj 73 0 obj << /Type /StructElem /S /semantic-para /P 22 0 R /K [74 0 R 75 0 R] /ID (ID.043) >> @@ -1227,126 +1235,126 @@ endobj xref 0 119 0000000008 65535 f -0000006394 00000 n -0000006441 00000 n -0000006463 00000 n -0000006485 00000 n -0000013692 00000 n -0000006751 00000 n -0000007788 00000 n +0000006486 00000 n +0000006533 00000 n +0000006555 00000 n +0000006577 00000 n +0000013975 00000 n +0000006843 00000 n +0000007894 00000 n 0000000078 00000 f -0000003828 00000 n -0000008674 00000 n -0000008769 00000 n -0000008846 00000 n -0000008923 00000 n -0000009000 00000 n -0000009092 00000 n -0000009236 00000 n -0000009356 00000 n -0000009457 00000 n -0000009621 00000 n -0000009705 00000 n -0000009797 00000 n -0000009925 00000 n -0000010045 00000 n -0000010193 00000 n -0000010313 00000 n -0000010397 00000 n -0000010489 00000 n -0000010617 00000 n -0000010709 00000 n -0000010837 00000 n -0000010938 00000 n -0000011103 00000 n -0000011187 00000 n -0000011279 00000 n -0000011418 00000 n -0000004004 00000 n -0000011538 00000 n -0000011639 00000 n -0000011805 00000 n -0000011889 00000 n -0000011981 00000 n +0000003920 00000 n +0000008887 00000 n +0000008982 00000 n +0000009059 00000 n +0000009136 00000 n +0000009213 00000 n +0000009305 00000 n +0000009483 00000 n +0000009603 00000 n +0000009704 00000 n +0000009868 00000 n +0000009952 00000 n +0000010044 00000 n +0000010172 00000 n +0000010292 00000 n +0000010474 00000 n +0000010594 00000 n +0000010678 00000 n +0000010770 00000 n +0000010898 00000 n +0000010990 00000 n +0000011119 00000 n +0000011220 00000 n +0000011386 00000 n +0000011470 00000 n +0000011562 00000 n +0000011701 00000 n +0000004096 00000 n +0000011821 00000 n +0000011922 00000 n 0000012088 00000 n -0000012180 00000 n -0000012296 00000 n -0000012383 00000 n -0000012475 00000 n -0000012604 00000 n -0000012696 00000 n -0000012812 00000 n -0000012899 00000 n -0000012991 00000 n +0000012172 00000 n +0000012264 00000 n +0000012371 00000 n +0000012463 00000 n +0000012579 00000 n +0000012666 00000 n +0000012758 00000 n +0000012887 00000 n +0000012979 00000 n +0000013095 00000 n +0000013182 00000 n +0000013274 00000 n 0000000020 00000 n -0000004912 00000 n +0000005004 00000 n 0000000073 00000 n -0000004230 00000 n -0000004290 00000 n -0000004342 00000 n -0000004403 00000 n -0000004456 00000 n -0000004517 00000 n -0000060308 00000 n -0000027946 00000 n -0000062255 00000 n -0000004570 00000 n -0000004631 00000 n -0000004684 00000 n -0000004745 00000 n -0000063999 00000 n -0000004798 00000 n -0000004859 00000 n -0000064180 00000 n -0000003977 00000 n -0000013120 00000 n -0000013221 00000 n -0000013387 00000 n -0000013471 00000 n -0000013563 00000 n +0000004322 00000 n +0000004382 00000 n +0000004434 00000 n +0000004495 00000 n +0000004548 00000 n +0000004609 00000 n +0000060591 00000 n +0000028229 00000 n +0000062538 00000 n +0000004662 00000 n +0000004723 00000 n +0000004776 00000 n +0000004837 00000 n +0000064282 00000 n +0000004890 00000 n +0000004951 00000 n +0000064463 00000 n +0000004069 00000 n +0000013403 00000 n +0000013504 00000 n +0000013670 00000 n +0000013754 00000 n +0000013846 00000 n 0000000000 00000 f -0000013811 00000 n -0000006295 00000 n -0000006047 00000 n -0000005035 00000 n -0000006182 00000 n -0000006243 00000 n -0000006507 00000 n -0000006543 00000 n -0000064398 00000 n -0000006600 00000 n -0000006646 00000 n -0000064323 00000 n -0000006703 00000 n -0000006956 00000 n -0000007751 00000 n -0000008467 00000 n -0000058451 00000 n -0000025988 00000 n -0000026013 00000 n -0000026284 00000 n -0000026981 00000 n -0000026316 00000 n -0000026390 00000 n -0000027219 00000 n -0000028102 00000 n -0000028303 00000 n -0000037109 00000 n -0000028489 00000 n -0000052414 00000 n -0000037357 00000 n -0000058228 00000 n -0000052736 00000 n -0000058518 00000 n -0000060470 00000 n -0000062415 00000 n -0000064248 00000 n -0000064473 00000 n -0000064652 00000 n -0000064690 00000 n -0000064949 00000 n +0000014094 00000 n +0000006387 00000 n +0000006139 00000 n +0000005127 00000 n +0000006274 00000 n +0000006335 00000 n +0000006599 00000 n +0000006635 00000 n +0000064681 00000 n +0000006692 00000 n +0000006738 00000 n +0000064606 00000 n +0000006795 00000 n +0000007062 00000 n +0000007857 00000 n +0000008680 00000 n +0000058734 00000 n +0000026271 00000 n +0000026296 00000 n +0000026567 00000 n +0000027264 00000 n +0000026599 00000 n +0000026673 00000 n +0000027502 00000 n +0000028385 00000 n +0000028586 00000 n +0000037392 00000 n +0000028772 00000 n +0000052697 00000 n +0000037640 00000 n +0000058511 00000 n +0000053019 00000 n +0000058801 00000 n +0000060753 00000 n +0000062698 00000 n +0000064531 00000 n +0000064756 00000 n +0000064935 00000 n +0000064973 00000 n +0000065232 00000 n trailer << /Size 119 /Root 117 0 R /Info 118 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -65159 +65442 %%EOF diff --git a/required/latex-lab/testfiles-float/marginpar-01.tpf b/required/latex-lab/testfiles-float/marginpar-01.tpf index bfc7b884c..90d2a0b7f 100644 --- a/required/latex-lab/testfiles-float/marginpar-01.tpf +++ b/required/latex-lab/testfiles-float/marginpar-01.tpf @@ -5,105 +5,115 @@ endobj 53 0 obj << -/Length 2423 +/Length 2581 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F49 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(B\344r)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(marginpar)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 185.285 635.417 Td [(in)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 11.62 0 Td [(paragraph)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 488.438 635.417 Td [(B\344r)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 602.475 Td [(2)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F49 9.9626 Tf 157.434 602.475 Td [( )]TJ +ET +EMC +/section <> BDC BT /F47 14.3462 Tf 157.434 602.475 Td [(Duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 488.438 592.611 Td [(duc)28(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 580.656 Td [(marginpar)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 48.197 0 Td [(in)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 11.62 0 Td [(vmo)-28(de)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 568.701 Td [(A)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(duc)28(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 183.296 568.701 Td [(is)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 10.016 0 Td [(not)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 17.707 0 Td [(a)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(b)-28(ear.)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 488.438 568.701 Td [(B\344r,)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 22.023 0 Td [(see)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 526.564 568.701 Td [(1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 556.746 Td [(A)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(margin)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 33.781 0 Td [(note)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 215.418 556.746 Td [(with)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 22.687 0 Td [(a)]TJ/F49 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(list.)]TJ ET EMC -/itemlabel <> BDC +/itemlabel <> BDC BT /F48 9.9626 Tf 503.379 554.921 Td [(\210)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 513.339 554.921 Td [(Duc)28(k)]TJ ET EMC -/itemlabel <> BDC +/itemlabel <> BDC BT /F48 9.9626 Tf 503.379 534.996 Td [(\210)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 513.339 534.996 Td [(B\344r)]TJ ET @@ -157,7 +167,7 @@ endobj >> endobj 59 0 obj -[15 0 R /XYZ 133.768 675.168 null] +[14 0 R /XYZ 133.768 675.168 null] endobj 63 0 obj << @@ -165,7 +175,7 @@ endobj >> endobj 64 0 obj -[23 0 R /XYZ 133.768 620.407 null] +[22 0 R /XYZ 133.768 620.407 null] endobj 65 0 obj << @@ -186,7 +196,7 @@ endobj 52 0 obj << /ExtGState 1 0 R -/Font << /F47 60 0 R /F45 61 0 R /F49 62 0 R /F48 67 0 R >> +/Font << /F47 60 0 R /F49 61 0 R /F45 62 0 R /F48 67 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -484,7 +494,7 @@ endobj 79 0 obj << /ExtGState 1 0 R -/Font << /F45 61 0 R /F49 62 0 R >> +/Font << /F45 62 0 R /F49 61 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -516,7 +526,7 @@ endobj (\376\377\000D\000u\000c\000k) endobj 6 0 obj -<< /Nums [0 [ 15 0 R 14 0 R 17 0 R 17 0 R 20 0 R 23 0 R 22 0 R 26 0 R 28 0 R 30 0 R 30 0 R 33 0 R 34 0 R 33 0 R 38 0 R 38 0 R 43 0 R 46 0 R 48 0 R 51 0 R ] +<< /Nums [0 [ 15 0 R 14 0 R 14 0 R 17 0 R 17 0 R 20 0 R 23 0 R 22 0 R 22 0 R 26 0 R 28 0 R 30 0 R 30 0 R 33 0 R 34 0 R 33 0 R 38 0 R 38 0 R 43 0 R 46 0 R 48 0 R 51 0 R ] 1 [ 72 0 R 72 0 R 76 0 R ] 2 34 0 R ] >> @@ -528,7 +538,7 @@ endobj << /Kids [90 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 92 0 obj << /justify <> @@ -551,16 +561,16 @@ endobj << /Type /StructElem /S /Sect /P 10 0 R /K [14 0 R 16 0 R] /ID (ID.005) >> endobj 14 0 obj -<< /Type /StructElem /T /S /section /P 13 0 R /K [15 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /P 13 0 R /K [15 0 R <> <>] /ID (ID.006) >> endobj 15 0 obj -<< /Type /StructElem /S /section-number /P 14 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /P 14 0 R /K <> /ID (ID.007) >> endobj 16 0 obj << /Type /StructElem /S /semantic-para /P 13 0 R /K [17 0 R 18 0 R] /ID (ID.008) >> endobj 17 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K [<> <>] /ID (ID.009) >> +<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K [<> <>] /ID (ID.009) >> endobj 18 0 obj << /Type /StructElem /S /Aside /P 16 0 R /K 19 0 R /ID (ID.010) >> @@ -569,16 +579,16 @@ endobj << /Type /StructElem /S /semantic-para /P 18 0 R /K 20 0 R /ID (ID.011) >> endobj 20 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 19 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /C /justify /S /text-block /P 19 0 R /K <> /ID (ID.012) >> endobj 21 0 obj << /Type /StructElem /S /Sect /P 10 0 R /K [22 0 R 24 0 R 27 0 R 29 0 R 37 0 R 71 0 R] /ID (ID.013) >> endobj 22 0 obj -<< /Type /StructElem /T /S /section /P 21 0 R /K [23 0 R <>] /ID (ID.014) >> +<< /Type /StructElem /T /S /section /P 21 0 R /K [23 0 R <> <>] /ID (ID.014) >> endobj 23 0 obj -<< /Type /StructElem /S /section-number /P 22 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /S /heading-number /P 22 0 R /K <> /ID (ID.015) >> endobj 24 0 obj << /Type /StructElem /S /Aside /P 21 0 R /K 25 0 R /ID (ID.016) >> @@ -587,19 +597,19 @@ endobj << /Type /StructElem /S /semantic-para /P 24 0 R /K 26 0 R /ID (ID.017) >> endobj 26 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 25 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /C /justify /S /text-block /P 25 0 R /K <> /ID (ID.018) >> endobj 27 0 obj << /Type /StructElem /S /semantic-para /P 21 0 R /K 28 0 R /ID (ID.019) >> endobj 28 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.020) >> endobj 29 0 obj << /Type /StructElem /S /semantic-para /P 21 0 R /K [30 0 R 31 0 R] /ID (ID.021) >> endobj 30 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 29 0 R /K [<> <>] /ID (ID.022) >> +<< /Type /StructElem /C /justify /S /text-block /P 29 0 R /K [<> <>] /ID (ID.022) >> endobj 31 0 obj << /Type /StructElem /S /Aside /P 29 0 R /K 32 0 R /ID (ID.023) >> @@ -608,16 +618,16 @@ endobj << /Type /StructElem /S /semantic-para /P 31 0 R /K 33 0 R /ID (ID.024) >> endobj 33 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 32 0 R /K [<> 34 0 R <>] /ID (ID.025) >> +<< /Type /StructElem /C /justify /S /text-block /P 32 0 R /K [<> 34 0 R <>] /ID (ID.025) >> endobj 34 0 obj -<< /Type /StructElem /S /Link /P 33 0 R /K [<> 36 0 R] /ID (ID.026) >> +<< /Type /StructElem /S /Link /P 33 0 R /K [<> 36 0 R] /ID (ID.026) >> endobj 37 0 obj << /Type /StructElem /S /semantic-para /P 21 0 R /K [38 0 R 39 0 R] /ID (ID.027) >> endobj 38 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 37 0 R /K [<> <>] /ID (ID.028) >> +<< /Type /StructElem /C /justify /S /text-block /P 37 0 R /K [<> <>] /ID (ID.028) >> endobj 39 0 obj << /Type /StructElem /S /Aside /P 37 0 R /K 40 0 R /ID (ID.029) >> @@ -632,7 +642,7 @@ endobj << /Type /StructElem /S /item /P 41 0 R /K [43 0 R 44 0 R] /ID (ID.032) >> endobj 43 0 obj -<< /Type /StructElem /S /itemlabel /P 42 0 R /K <> /ID (ID.033) >> +<< /Type /StructElem /S /itemlabel /P 42 0 R /K <> /ID (ID.033) >> endobj 44 0 obj << /Type /StructElem /S /itembody /P 42 0 R /K 45 0 R /ID (ID.034) >> @@ -641,13 +651,13 @@ endobj << /Type /StructElem /S /semantic-para /P 44 0 R /K 46 0 R /ID (ID.035) >> endobj 46 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 45 0 R /K <> /ID (ID.036) >> +<< /Type /StructElem /C /justify /S /text-block /P 45 0 R /K <> /ID (ID.036) >> endobj 47 0 obj << /Type /StructElem /S /item /P 41 0 R /K [48 0 R 49 0 R] /ID (ID.037) >> endobj 48 0 obj -<< /Type /StructElem /S /itemlabel /P 47 0 R /K <> /ID (ID.038) >> +<< /Type /StructElem /S /itemlabel /P 47 0 R /K <> /ID (ID.038) >> endobj 49 0 obj << /Type /StructElem /S /itembody /P 47 0 R /K 50 0 R /ID (ID.039) >> @@ -656,7 +666,7 @@ endobj << /Type /StructElem /S /semantic-para /P 49 0 R /K 51 0 R /ID (ID.040) >> endobj 51 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 50 0 R /K <> /ID (ID.041) >> +<< /Type /StructElem /C /justify /S /text-block /P 50 0 R /K <> /ID (ID.041) >> endobj 71 0 obj << /Type /StructElem /S /semantic-para /P 21 0 R /K [72 0 R 74 0 R] /ID (ID.042) >> @@ -679,11 +689,11 @@ endobj 94 0 obj [499.9] endobj -95 0 obj -[333] +96 0 obj +[277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9] endobj 97 0 obj -[277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9] +[333] endobj 98 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4 794.3 580.4 580.4 488.8 549.9 305.5 549.9 672.1 183.3 830.2 830.2 794.3 794.3 842.8 721.6 721.6 864.3 660.5 660.5 660.5 859.8 859.8 873.3 825.8 817.3 817.3 611 611 611 764.7 764.7 845 845 830.2 672.1 672.1 672.1 954.8 404.9 611 501.7 549.9 549.9 488.8 488.8 761.2 500 500 549.9 305.5 463.6 369.6 611 611 611 549.9 446.3 446.3 433.8 433.8 433.8 427.7 427.7 611 611 580.4 488.8 488.8 488.8 641.5 335 519.3 702.6 830.2 830.2 830.2 830.2 830.2 830.2 995.5 794.3 721.6 721.6 721.6 721.6 404.9 404.9 404.9 404.9 842.8 859.8 825.8 825.8 825.8 825.8 825.8 1117.7 855.4 845 845 845 845 830.2 690 1221.9 549.9 549.9 549.9 549.9 549.9] @@ -763,7 +773,7 @@ endobj /FontFile 103 0 R >> endobj -96 0 obj +95 0 obj << /Type /Encoding /Differences [44/comma 46/period 49/one/two 63/question 65/A/B 68/D 97/a/b/c/d/e 103/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u/v/w 228/adieresis] @@ -928,7 +938,7 @@ endobj /FirstChar 49 /LastChar 228 /Widths 98 0 R -/Encoding 96 0 R +/Encoding 95 0 R /ToUnicode 105 0 R >> endobj @@ -1076,7 +1086,7 @@ end %%EOF endstream endobj -61 0 obj +62 0 obj << /Type /Font /Subtype /Type1 @@ -1084,8 +1094,8 @@ endobj /FontDescriptor 104 0 R /FirstChar 44 /LastChar 228 -/Widths 97 0 R -/Encoding 96 0 R +/Widths 96 0 R +/Encoding 95 0 R /ToUnicode 106 0 R >> endobj @@ -1127,7 +1137,7 @@ end %%EOF endstream endobj -62 0 obj +61 0 obj << /Type /Font /Subtype /Type1 @@ -1135,7 +1145,7 @@ endobj /FontDescriptor 100 0 R /FirstChar 32 /LastChar 32 -/Widths 95 0 R +/Widths 97 0 R /ToUnicode 107 0 R >> endobj @@ -1334,126 +1344,126 @@ endobj xref 0 116 0000000008 65535 f -0000016828 00000 n -0000016875 00000 n -0000016897 00000 n -0000016919 00000 n -0000024026 00000 n -0000017183 00000 n -0000018211 00000 n +0000016986 00000 n +0000017033 00000 n +0000017055 00000 n +0000017077 00000 n +0000024371 00000 n +0000017341 00000 n +0000018383 00000 n 0000000077 00000 f -0000002550 00000 n -0000019097 00000 n -0000019192 00000 n -0000019269 00000 n -0000019346 00000 n -0000019438 00000 n -0000019580 00000 n -0000019698 00000 n -0000019799 00000 n -0000019959 00000 n -0000020043 00000 n -0000020135 00000 n -0000020261 00000 n -0000020381 00000 n -0000020527 00000 n -0000020645 00000 n -0000020729 00000 n -0000020821 00000 n -0000020947 00000 n -0000021039 00000 n -0000021165 00000 n -0000021266 00000 n -0000021427 00000 n -0000021511 00000 n -0000021603 00000 n +0000002708 00000 n +0000019376 00000 n +0000019471 00000 n +0000019548 00000 n +0000019625 00000 n +0000019717 00000 n +0000019891 00000 n +0000020009 00000 n +0000020110 00000 n +0000020270 00000 n +0000020354 00000 n +0000020446 00000 n +0000020572 00000 n +0000020692 00000 n +0000020870 00000 n +0000020988 00000 n +0000021072 00000 n +0000021164 00000 n +0000021290 00000 n +0000021382 00000 n +0000021509 00000 n +0000021610 00000 n 0000021772 00000 n -0000002703 00000 n +0000021856 00000 n +0000021948 00000 n +0000022117 00000 n +0000002861 00000 n 0000000015 00000 n -0000021890 00000 n -0000021991 00000 n -0000022153 00000 n -0000022237 00000 n -0000022329 00000 n -0000022436 00000 n -0000022528 00000 n -0000022642 00000 n -0000022729 00000 n -0000022821 00000 n -0000022948 00000 n -0000023040 00000 n -0000023154 00000 n -0000023241 00000 n -0000023333 00000 n -0000003560 00000 n +0000022235 00000 n +0000022336 00000 n +0000022498 00000 n +0000022582 00000 n +0000022674 00000 n +0000022781 00000 n +0000022873 00000 n +0000022987 00000 n +0000023074 00000 n +0000023166 00000 n +0000023293 00000 n +0000023385 00000 n +0000023499 00000 n +0000023586 00000 n +0000023678 00000 n +0000003718 00000 n 0000000068 00000 n -0000002902 00000 n -0000002960 00000 n -0000003010 00000 n -0000003069 00000 n -0000003120 00000 n -0000003179 00000 n -0000057611 00000 n -0000059881 00000 n -0000060775 00000 n -0000003230 00000 n -0000003289 00000 n -0000003340 00000 n -0000003399 00000 n -0000062569 00000 n -0000003450 00000 n -0000003509 00000 n -0000062750 00000 n -0000023460 00000 n -0000023561 00000 n -0000016484 00000 n -0000023723 00000 n -0000023807 00000 n -0000023899 00000 n +0000003060 00000 n +0000003118 00000 n +0000003168 00000 n +0000003227 00000 n +0000003278 00000 n +0000003337 00000 n +0000057956 00000 n +0000061120 00000 n +0000060226 00000 n +0000003388 00000 n +0000003447 00000 n +0000003498 00000 n +0000003557 00000 n +0000062914 00000 n +0000003608 00000 n +0000003667 00000 n +0000063095 00000 n +0000023805 00000 n +0000023906 00000 n +0000016642 00000 n +0000024068 00000 n +0000024152 00000 n +0000024244 00000 n 0000000000 00000 f -0000003684 00000 n -0000016728 00000 n -0000015858 00000 n -0000016619 00000 n -0000016678 00000 n -0000016941 00000 n -0000016977 00000 n -0000062965 00000 n -0000017034 00000 n -0000017079 00000 n -0000062890 00000 n -0000017136 00000 n -0000017395 00000 n -0000018174 00000 n -0000018890 00000 n -0000055457 00000 n -0000024145 00000 n -0000024169 00000 n -0000055281 00000 n -0000024191 00000 n -0000025280 00000 n -0000026318 00000 n -0000028982 00000 n -0000029201 00000 n -0000039581 00000 n -0000039832 00000 n -0000054974 00000 n -0000055521 00000 n -0000057791 00000 n -0000060061 00000 n -0000060941 00000 n -0000062815 00000 n -0000063040 00000 n -0000063196 00000 n -0000063281 00000 n -0000063356 00000 n -0000063394 00000 n -0000063653 00000 n +0000003842 00000 n +0000016886 00000 n +0000016016 00000 n +0000016777 00000 n +0000016836 00000 n +0000017099 00000 n +0000017135 00000 n +0000063310 00000 n +0000017192 00000 n +0000017237 00000 n +0000063235 00000 n +0000017294 00000 n +0000017567 00000 n +0000018346 00000 n +0000019169 00000 n +0000055802 00000 n +0000024490 00000 n +0000055626 00000 n +0000024514 00000 n +0000025603 00000 n +0000025625 00000 n +0000026663 00000 n +0000029327 00000 n +0000029546 00000 n +0000039926 00000 n +0000040177 00000 n +0000055319 00000 n +0000055866 00000 n +0000058136 00000 n +0000060406 00000 n +0000061286 00000 n +0000063160 00000 n +0000063385 00000 n +0000063541 00000 n +0000063626 00000 n +0000063701 00000 n +0000063739 00000 n +0000063998 00000 n trailer << /Size 116 /Root 114 0 R /Info 115 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -63863 +64208 %%EOF diff --git a/required/latex-lab/testfiles-float/marginpar-03.luatex.tpf b/required/latex-lab/testfiles-float/marginpar-03.luatex.tpf index 513826bac..b92790582 100644 --- a/required/latex-lab/testfiles-float/marginpar-03.luatex.tpf +++ b/required/latex-lab/testfiles-float/marginpar-03.luatex.tpf @@ -88,7 +88,7 @@ endobj << /Kids [52 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 54 0 obj << /enumerate <> @@ -108,7 +108,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -589,64 +589,64 @@ xref 0000001030 00000 n 0000001052 00000 n 0000001074 00000 n -0000006762 00000 n +0000007021 00000 n 0000001132 00000 n 0000001690 00000 n -0000004036 00000 n -0000002556 00000 n +0000004295 00000 n +0000002663 00000 n 0000000012 00000 f -0000002624 00000 n +0000002731 00000 n 0000000014 00000 f -0000002694 00000 n +0000002801 00000 n 0000000020 00000 f -0000003574 00000 n -0000002775 00000 n -0000003847 00000 n -0000003676 00000 n -0000003949 00000 n +0000003833 00000 n +0000002882 00000 n +0000004106 00000 n +0000003935 00000 n +0000004208 00000 n 0000000000 00000 f -0000004097 00000 n -0000004204 00000 n -0000004293 00000 n -0000004382 00000 n -0000004471 00000 n -0000004575 00000 n -0000004689 00000 n -0000004793 00000 n -0000004921 00000 n -0000005029 00000 n -0000005125 00000 n -0000005229 00000 n -0000005370 00000 n -0000005474 00000 n -0000005615 00000 n -0000005719 00000 n -0000005833 00000 n -0000005937 00000 n -0000006065 00000 n -0000006164 00000 n -0000006277 00000 n -0000006421 00000 n -0000006517 00000 n -0000006621 00000 n -0000006899 00000 n +0000004356 00000 n +0000004463 00000 n +0000004552 00000 n +0000004641 00000 n +0000004730 00000 n +0000004834 00000 n +0000004948 00000 n +0000005052 00000 n +0000005180 00000 n +0000005288 00000 n +0000005384 00000 n +0000005488 00000 n +0000005629 00000 n +0000005733 00000 n +0000005874 00000 n +0000005978 00000 n +0000006092 00000 n +0000006196 00000 n +0000006324 00000 n +0000006423 00000 n +0000006536 00000 n +0000006680 00000 n +0000006776 00000 n +0000006880 00000 n +0000007158 00000 n 0000000920 00000 n 0000000785 00000 n 0000000020 00000 n -0000031653 00000 n -0000031811 00000 n +0000031912 00000 n +0000032070 00000 n 0000001096 00000 n 0000001210 00000 n 0000001653 00000 n -0000002349 00000 n -0000019062 00000 n -0000029664 00000 n -0000019251 00000 n -0000029869 00000 n -0000031873 00000 n -0000031988 00000 n +0000002456 00000 n +0000019321 00000 n +0000029923 00000 n +0000019510 00000 n +0000030128 00000 n +0000032132 00000 n +0000032247 00000 n trailer << /Size 61 /Root 59 0 R /Info 60 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32120 +32379 %%EOF diff --git a/required/latex-lab/testfiles-float/marginpar-03.tpf b/required/latex-lab/testfiles-float/marginpar-03.tpf index 4952efece..f6c801f51 100644 --- a/required/latex-lab/testfiles-float/marginpar-03.tpf +++ b/required/latex-lab/testfiles-float/marginpar-03.tpf @@ -332,7 +332,7 @@ endobj << /Kids [51 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 53 0 obj << /enumerate <> @@ -352,7 +352,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -659,67 +659,67 @@ xref 0000013113 00000 n 0000013135 00000 n 0000013157 00000 n -0000018767 00000 n +0000019026 00000 n 0000013215 00000 n 0000013764 00000 n -0000016110 00000 n -0000014630 00000 n +0000016369 00000 n +0000014737 00000 n 0000000012 00000 f -0000014698 00000 n +0000014805 00000 n 0000000014 00000 f -0000014768 00000 n +0000014875 00000 n 0000000020 00000 f -0000015648 00000 n -0000014849 00000 n -0000015921 00000 n -0000015750 00000 n -0000016023 00000 n +0000015907 00000 n +0000014956 00000 n +0000016180 00000 n +0000016009 00000 n +0000016282 00000 n 0000000000 00000 f -0000016171 00000 n -0000016278 00000 n -0000016367 00000 n -0000016456 00000 n -0000016560 00000 n -0000016674 00000 n -0000016778 00000 n +0000016430 00000 n +0000016537 00000 n +0000016626 00000 n +0000016715 00000 n +0000016819 00000 n +0000016933 00000 n +0000017037 00000 n 0000012867 00000 n -0000016904 00000 n -0000017012 00000 n -0000017108 00000 n -0000017212 00000 n -0000017351 00000 n -0000017455 00000 n -0000017594 00000 n -0000017698 00000 n -0000017812 00000 n -0000017916 00000 n -0000018042 00000 n -0000018141 00000 n -0000018254 00000 n -0000018428 00000 n -0000018524 00000 n -0000018628 00000 n +0000017163 00000 n +0000017271 00000 n +0000017367 00000 n +0000017471 00000 n +0000017610 00000 n +0000017714 00000 n +0000017853 00000 n +0000017957 00000 n +0000018071 00000 n +0000018175 00000 n +0000018301 00000 n +0000018400 00000 n +0000018513 00000 n +0000018687 00000 n +0000018783 00000 n +0000018887 00000 n 0000000015 00000 n 0000013002 00000 n 0000012175 00000 n -0000031034 00000 n -0000031212 00000 n +0000031293 00000 n +0000031471 00000 n 0000013179 00000 n 0000013300 00000 n 0000013727 00000 n -0000014423 00000 n -0000028860 00000 n -0000018904 00000 n -0000019361 00000 n -0000028622 00000 n -0000028945 00000 n -0000031271 00000 n -0000031386 00000 n +0000014530 00000 n +0000029119 00000 n +0000019163 00000 n +0000019620 00000 n +0000028881 00000 n +0000029204 00000 n +0000031530 00000 n +0000031645 00000 n trailer << /Size 61 /Root 59 0 R /Info 60 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -31518 +31777 %%EOF diff --git a/required/latex-lab/testfiles-float/marginpar-04-gh-444.luatex.tpf b/required/latex-lab/testfiles-float/marginpar-04-gh-444.luatex.tpf index 557739bbb..4c927de25 100644 --- a/required/latex-lab/testfiles-float/marginpar-04-gh-444.luatex.tpf +++ b/required/latex-lab/testfiles-float/marginpar-04-gh-444.luatex.tpf @@ -92,7 +92,7 @@ endobj << /Kids [45 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 47 0 obj << /justify <> @@ -111,7 +111,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -147,7 +147,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 25 0 R /K <> /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 25 0 R /K 28 0 R /ID (ID.008) >> +<< /Type /StructElem /S /text-parbox /NS 15 0 R /P 25 0 R /K 28 0 R /ID (ID.008) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 27 0 R /K 29 0 R /ID (ID.009) >> @@ -618,62 +618,62 @@ xref 0000001220 00000 n 0000001242 00000 n 0000001264 00000 n -0000005901 00000 n +0000006168 00000 n 0000001322 00000 n 0000001745 00000 n -0000004046 00000 n -0000002566 00000 n +0000004305 00000 n +0000002673 00000 n 0000000012 00000 f -0000002634 00000 n +0000002741 00000 n 0000000014 00000 f -0000002704 00000 n +0000002811 00000 n 0000000020 00000 f -0000003584 00000 n -0000002785 00000 n -0000003857 00000 n -0000003686 00000 n -0000003959 00000 n +0000003843 00000 n +0000002892 00000 n +0000004116 00000 n +0000003945 00000 n +0000004218 00000 n 0000000000 00000 f -0000004107 00000 n -0000004205 00000 n -0000004294 00000 n -0000004383 00000 n -0000004472 00000 n -0000004606 00000 n -0000004747 00000 n -0000004841 00000 n -0000004945 00000 n -0000005086 00000 n -0000005219 00000 n -0000005315 00000 n -0000005419 00000 n -0000005560 00000 n -0000005656 00000 n -0000005760 00000 n -0000006038 00000 n +0000004366 00000 n +0000004464 00000 n +0000004553 00000 n +0000004642 00000 n +0000004731 00000 n +0000004865 00000 n +0000005006 00000 n +0000005108 00000 n +0000005212 00000 n +0000005353 00000 n +0000005486 00000 n +0000005582 00000 n +0000005686 00000 n +0000005827 00000 n +0000005923 00000 n +0000006027 00000 n +0000006305 00000 n 0000001098 00000 n 0000000963 00000 n 0000000020 00000 n -0000033627 00000 n -0000019777 00000 n -0000033785 00000 n +0000033894 00000 n +0000020044 00000 n +0000034052 00000 n 0000001286 00000 n 0000001393 00000 n 0000001708 00000 n -0000002404 00000 n -0000018208 00000 n -0000018830 00000 n -0000018240 00000 n -0000019051 00000 n -0000019931 00000 n -0000020131 00000 n -0000031638 00000 n -0000020330 00000 n -0000031843 00000 n -0000033847 00000 n -0000033962 00000 n +0000002511 00000 n +0000018475 00000 n +0000019097 00000 n +0000018507 00000 n +0000019318 00000 n +0000020198 00000 n +0000020398 00000 n +0000031905 00000 n +0000020597 00000 n +0000032110 00000 n +0000034114 00000 n +0000034229 00000 n trailer << /Size 59 /Root 57 0 R /Info 58 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -34094 +34361 %%EOF diff --git a/required/latex-lab/testfiles-float/marginpar-04-gh-444.tpf b/required/latex-lab/testfiles-float/marginpar-04-gh-444.tpf index baefe8619..82199748d 100644 --- a/required/latex-lab/testfiles-float/marginpar-04-gh-444.tpf +++ b/required/latex-lab/testfiles-float/marginpar-04-gh-444.tpf @@ -329,7 +329,7 @@ endobj << /Kids [44 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 46 0 obj << /justify <> @@ -348,7 +348,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -381,7 +381,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 24 0 R /K <> /ID (ID.006) >> endobj 27 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 24 0 R /K 28 0 R /ID (ID.007) >> +<< /Type /StructElem /S /text-parbox /NS 15 0 R /P 24 0 R /K 28 0 R /ID (ID.007) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 27 0 R /K 29 0 R /ID (ID.008) >> @@ -709,64 +709,64 @@ xref 0000013192 00000 n 0000013214 00000 n 0000013236 00000 n -0000017836 00000 n +0000018103 00000 n 0000013294 00000 n 0000013715 00000 n -0000016016 00000 n -0000014536 00000 n +0000016275 00000 n +0000014643 00000 n 0000000012 00000 f -0000014604 00000 n +0000014711 00000 n 0000000014 00000 f -0000014674 00000 n +0000014781 00000 n 0000000020 00000 f -0000015554 00000 n -0000014755 00000 n -0000015827 00000 n -0000015656 00000 n -0000015929 00000 n +0000015813 00000 n +0000014862 00000 n +0000016086 00000 n +0000015915 00000 n +0000016188 00000 n 0000000000 00000 f -0000016077 00000 n -0000016175 00000 n -0000016264 00000 n -0000016353 00000 n -0000016487 00000 n +0000016336 00000 n +0000016434 00000 n +0000016523 00000 n +0000016612 00000 n +0000016746 00000 n 0000012934 00000 n -0000016626 00000 n -0000016720 00000 n -0000016824 00000 n -0000016963 00000 n -0000017158 00000 n -0000017254 00000 n -0000017358 00000 n -0000017497 00000 n -0000017593 00000 n -0000017697 00000 n +0000016885 00000 n +0000016987 00000 n +0000017091 00000 n +0000017230 00000 n +0000017425 00000 n +0000017521 00000 n +0000017625 00000 n +0000017764 00000 n +0000017860 00000 n +0000017964 00000 n 0000000015 00000 n 0000013069 00000 n 0000012182 00000 n -0000034863 00000 n -0000035754 00000 n -0000035918 00000 n +0000035130 00000 n +0000036021 00000 n +0000036185 00000 n 0000013258 00000 n 0000013379 00000 n 0000013678 00000 n -0000014374 00000 n -0000017973 00000 n -0000032669 00000 n -0000017995 00000 n -0000018434 00000 n -0000021098 00000 n -0000021316 00000 n -0000032428 00000 n -0000032774 00000 n -0000035041 00000 n -0000035977 00000 n -0000036092 00000 n +0000014481 00000 n +0000018240 00000 n +0000032936 00000 n +0000018262 00000 n +0000018701 00000 n +0000021365 00000 n +0000021583 00000 n +0000032695 00000 n +0000033041 00000 n +0000035308 00000 n +0000036244 00000 n +0000036359 00000 n trailer << /Size 58 /Root 56 0 R /Info 57 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -36224 +36491 %%EOF diff --git a/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats-flushbottom.tlg b/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats-flushbottom.tlg index 623f21e9b..94dd62342 100644 --- a/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats-flushbottom.tlg +++ b/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats-flushbottom.tlg @@ -11,6 +11,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ...\glue 0.0 ...\T1/cmr/bx/n/14.4 1 ...\glue 15.83623 +...\pdffakespace ..\T1/cmr/bx/n/14.4 a ..\T1/cmr/bx/n/14.4 b ..\kern0.43988 @@ -514,6 +515,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\T1/cmr/bx/n/14.4 1 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 diff --git a/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats.tlg b/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats.tlg index 64bfeef12..445993e3f 100644 --- a/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats.tlg +++ b/required/latex-lab/testfiles-footnote/footmisc-floats-abovefloats.tlg @@ -29,6 +29,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\T1/cmr/bx/n/14.4 1 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 b ....\kern0.43988 diff --git a/required/latex-lab/testfiles-footnote/footnote-heading.tlg b/required/latex-lab/testfiles-footnote/footnote-heading.tlg index 18499cd98..96d49dc76 100644 --- a/required/latex-lab/testfiles-footnote/footnote-heading.tlg +++ b/required/latex-lab/testfiles-footnote/footnote-heading.tlg @@ -3,8 +3,8 @@ Don't change this file in any respect. [1 ]<><> (footnote-heading.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~14 structure objects -(tagpdf) with ~16 'MC' leaf nodes. +(tagpdf) Writing out ~12 structure objects +(tagpdf) with ~14 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-graphic/graphic-rotating.luatex.tpf b/required/latex-lab/testfiles-graphic/graphic-rotating.luatex.tpf index 9d53bd0a4..3743845f7 100644 --- a/required/latex-lab/testfiles-graphic/graphic-rotating.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/graphic-rotating.luatex.tpf @@ -138,7 +138,7 @@ endobj << /Kids [44 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 46 0 obj << /justify <> @@ -157,7 +157,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -762,61 +762,61 @@ xref 0000002131 00000 n 0000002153 00000 n 0000002175 00000 n -0000006651 00000 n +0000006910 00000 n 0000002278 00000 n 0000002669 00000 n -0000004970 00000 n -0000003490 00000 n +0000005229 00000 n +0000003597 00000 n 0000000012 00000 f -0000003558 00000 n +0000003665 00000 n 0000000014 00000 f -0000003628 00000 n +0000003735 00000 n 0000000020 00000 f -0000004508 00000 n -0000003709 00000 n -0000004781 00000 n -0000004610 00000 n -0000004883 00000 n +0000004767 00000 n +0000003816 00000 n +0000005040 00000 n +0000004869 00000 n +0000005142 00000 n 0000000000 00000 f -0000005031 00000 n -0000005159 00000 n -0000005248 00000 n -0000005337 00000 n -0000005426 00000 n -0000005530 00000 n -0000005671 00000 n -0000005775 00000 n -0000005916 00000 n -0000006020 00000 n -0000006161 00000 n -0000006265 00000 n -0000006406 00000 n -0000006510 00000 n -0000006788 00000 n +0000005290 00000 n +0000005418 00000 n +0000005507 00000 n +0000005596 00000 n +0000005685 00000 n +0000005789 00000 n +0000005930 00000 n +0000006034 00000 n +0000006175 00000 n +0000006279 00000 n +0000006420 00000 n +0000006524 00000 n +0000006665 00000 n +0000006769 00000 n +0000007047 00000 n 0000002009 00000 n 0000001874 00000 n 0000000020 00000 n -0000041181 00000 n -0000025573 00000 n -0000041339 00000 n +0000041440 00000 n +0000025832 00000 n +0000041598 00000 n 0000002197 00000 n 0000002233 00000 n 0000002349 00000 n 0000002632 00000 n -0000003328 00000 n -0000024004 00000 n -0000024626 00000 n -0000024036 00000 n -0000024847 00000 n -0000025727 00000 n -0000025927 00000 n -0000039192 00000 n -0000026152 00000 n -0000039397 00000 n -0000041401 00000 n -0000041544 00000 n +0000003435 00000 n +0000024263 00000 n +0000024885 00000 n +0000024295 00000 n +0000025106 00000 n +0000025986 00000 n +0000026186 00000 n +0000039451 00000 n +0000026411 00000 n +0000039656 00000 n +0000041660 00000 n +0000041803 00000 n trailer << /Size 58 /Root 56 0 R /Info 57 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -41773 +42032 %%EOF diff --git a/required/latex-lab/testfiles-graphic/graphic-rotating.tpf b/required/latex-lab/testfiles-graphic/graphic-rotating.tpf index e4757a46b..d833e1755 100644 --- a/required/latex-lab/testfiles-graphic/graphic-rotating.tpf +++ b/required/latex-lab/testfiles-graphic/graphic-rotating.tpf @@ -465,7 +465,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 45 0 obj << /justify <> @@ -484,7 +484,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -839,63 +839,63 @@ xref 0000019006 00000 n 0000019028 00000 n 0000019050 00000 n -0000023411 00000 n +0000023670 00000 n 0000019153 00000 n 0000019528 00000 n -0000021829 00000 n -0000020349 00000 n +0000022088 00000 n +0000020456 00000 n 0000000012 00000 f -0000020417 00000 n +0000020524 00000 n 0000000014 00000 f -0000020487 00000 n +0000020594 00000 n 0000000020 00000 f -0000021367 00000 n -0000020568 00000 n -0000021640 00000 n -0000021469 00000 n -0000021742 00000 n +0000021626 00000 n +0000020675 00000 n +0000021899 00000 n +0000021728 00000 n +0000022001 00000 n 0000000000 00000 f -0000021890 00000 n -0000022018 00000 n -0000022107 00000 n -0000022196 00000 n -0000022300 00000 n +0000022149 00000 n +0000022277 00000 n +0000022366 00000 n +0000022455 00000 n +0000022559 00000 n 0000018748 00000 n -0000022439 00000 n -0000022543 00000 n -0000022682 00000 n -0000022786 00000 n -0000022925 00000 n -0000023029 00000 n -0000023168 00000 n -0000023272 00000 n +0000022698 00000 n +0000022802 00000 n +0000022941 00000 n +0000023045 00000 n +0000023184 00000 n +0000023288 00000 n +0000023427 00000 n +0000023531 00000 n 0000000015 00000 n 0000018883 00000 n 0000017228 00000 n -0000041929 00000 n -0000042820 00000 n -0000042984 00000 n +0000042188 00000 n +0000043079 00000 n +0000043243 00000 n 0000019072 00000 n 0000019108 00000 n 0000019224 00000 n 0000019491 00000 n -0000020187 00000 n -0000023548 00000 n -0000039722 00000 n -0000023570 00000 n -0000024015 00000 n -0000026679 00000 n -0000026897 00000 n -0000039467 00000 n -0000039840 00000 n -0000042107 00000 n -0000043043 00000 n -0000043186 00000 n +0000020294 00000 n +0000023807 00000 n +0000039981 00000 n +0000023829 00000 n +0000024274 00000 n +0000026938 00000 n +0000027156 00000 n +0000039726 00000 n +0000040099 00000 n +0000042366 00000 n +0000043302 00000 n +0000043445 00000 n trailer << /Size 57 /Root 55 0 R /Info 56 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -43415 +43674 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-001.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-001.luatex.tpf index e2b8d62ce..6604c476f 100644 --- a/required/latex-lab/testfiles-graphic/tikz-001.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-001.luatex.tpf @@ -246,7 +246,7 @@ endobj << /Kids [37 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 39 0 obj << /justify <> @@ -749,55 +749,55 @@ xref 0000003074 00000 n 0000003127 00000 n 0000003149 00000 n -0000006415 00000 n +0000006522 00000 n 0000003207 00000 n 0000003650 00000 n 0000000000 00000 f -0000004491 00000 n -0000004599 00000 n -0000004675 00000 n -0000004751 00000 n -0000004827 00000 n -0000004918 00000 n -0000005023 00000 n +0000004598 00000 n +0000004706 00000 n +0000004782 00000 n +0000004858 00000 n +0000004934 00000 n +0000005025 00000 n +0000005130 00000 n 0000000020 00000 n -0000005190 00000 n -0000005281 00000 n -0000005420 00000 n +0000005297 00000 n +0000005388 00000 n +0000005527 00000 n 0000000099 00000 n -0000005587 00000 n -0000005678 00000 n -0000005817 00000 n +0000005694 00000 n +0000005785 00000 n +0000005924 00000 n 0000000178 00000 n -0000005984 00000 n -0000006075 00000 n -0000006248 00000 n +0000006091 00000 n +0000006182 00000 n +0000006355 00000 n 0000000256 00000 n -0000006533 00000 n +0000006640 00000 n 0000002911 00000 n 0000002776 00000 n 0000000335 00000 n -0000032956 00000 n -0000020349 00000 n -0000033114 00000 n +0000033063 00000 n +0000020456 00000 n +0000033221 00000 n 0000003171 00000 n 0000003299 00000 n 0000003613 00000 n -0000004329 00000 n -0000018692 00000 n -0000019387 00000 n -0000018724 00000 n -0000018797 00000 n -0000019623 00000 n -0000020503 00000 n -0000020703 00000 n -0000030939 00000 n -0000020884 00000 n -0000031172 00000 n -0000033176 00000 n -0000033291 00000 n +0000004436 00000 n +0000018799 00000 n +0000019494 00000 n +0000018831 00000 n +0000018904 00000 n +0000019730 00000 n +0000020610 00000 n +0000020810 00000 n +0000031046 00000 n +0000020991 00000 n +0000031279 00000 n +0000033283 00000 n +0000033398 00000 n trailer << /Size 52 /Root 50 0 R /Info 51 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -33423 +33530 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-001.tpf b/required/latex-lab/testfiles-graphic/tikz-001.tpf index b0c715ce8..566e82103 100644 --- a/required/latex-lab/testfiles-graphic/tikz-001.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-001.tpf @@ -485,7 +485,7 @@ endobj << /Kids [35 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 37 0 obj << /justify <> @@ -760,51 +760,51 @@ xref 0000014995 00000 n 0000015048 00000 n 0000015070 00000 n -0000018386 00000 n +0000018493 00000 n 0000015128 00000 n 0000015583 00000 n 0000000000 00000 f -0000016424 00000 n -0000016532 00000 n -0000016608 00000 n -0000016684 00000 n -0000016775 00000 n +0000016531 00000 n +0000016639 00000 n +0000016715 00000 n +0000016791 00000 n +0000016882 00000 n 0000014707 00000 n -0000016944 00000 n +0000017051 00000 n 0000000015 00000 n -0000017109 00000 n -0000017200 00000 n -0000017369 00000 n +0000017216 00000 n +0000017307 00000 n +0000017476 00000 n 0000000094 00000 n -0000017534 00000 n -0000017625 00000 n -0000017794 00000 n +0000017641 00000 n +0000017732 00000 n +0000017901 00000 n 0000000173 00000 n -0000017959 00000 n -0000018050 00000 n -0000018220 00000 n +0000018066 00000 n +0000018157 00000 n +0000018327 00000 n 0000000250 00000 n 0000000328 00000 n 0000014842 00000 n 0000012484 00000 n -0000031590 00000 n -0000031768 00000 n +0000031697 00000 n +0000031875 00000 n 0000015092 00000 n 0000015248 00000 n 0000015546 00000 n -0000016262 00000 n -0000029418 00000 n -0000018504 00000 n -0000018943 00000 n -0000029187 00000 n -0000029501 00000 n -0000031827 00000 n -0000031942 00000 n +0000016369 00000 n +0000029525 00000 n +0000018611 00000 n +0000019050 00000 n +0000029294 00000 n +0000029608 00000 n +0000031934 00000 n +0000032049 00000 n trailer << /Size 45 /Root 43 0 R /Info 44 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -32074 +32181 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-002.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-002.luatex.tpf index 0a596bc74..b193178bb 100644 --- a/required/latex-lab/testfiles-graphic/tikz-002.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-002.luatex.tpf @@ -448,7 +448,7 @@ endobj << /Kids [45 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 47 0 obj << /justify <> @@ -467,7 +467,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1106,66 +1106,66 @@ xref 0000005284 00000 n 0000005337 00000 n 0000005359 00000 n -0000010473 00000 n +0000010732 00000 n 0000005417 00000 n 0000005915 00000 n -0000008218 00000 n -0000006736 00000 n +0000008477 00000 n +0000006843 00000 n 0000000012 00000 f -0000006804 00000 n +0000006911 00000 n 0000000014 00000 f -0000006874 00000 n +0000006981 00000 n 0000000020 00000 f -0000007754 00000 n -0000006955 00000 n -0000008027 00000 n -0000007856 00000 n -0000008129 00000 n +0000008013 00000 n +0000007062 00000 n +0000008286 00000 n +0000008115 00000 n +0000008388 00000 n 0000000000 00000 f -0000008279 00000 n -0000008407 00000 n -0000008496 00000 n -0000008585 00000 n -0000008674 00000 n -0000008778 00000 n -0000008958 00000 n -0000009062 00000 n -0000009276 00000 n -0000009380 00000 n -0000009594 00000 n -0000009698 00000 n -0000009948 00000 n -0000010052 00000 n -0000010351 00000 n +0000008538 00000 n +0000008666 00000 n +0000008755 00000 n +0000008844 00000 n +0000008933 00000 n +0000009037 00000 n +0000009217 00000 n +0000009321 00000 n +0000009535 00000 n +0000009639 00000 n +0000009853 00000 n +0000009957 00000 n +0000010207 00000 n +0000010311 00000 n 0000010610 00000 n +0000010869 00000 n 0000005133 00000 n 0000004998 00000 n 0000000020 00000 n -0000047812 00000 n -0000024463 00000 n -0000049783 00000 n -0000049942 00000 n +0000048071 00000 n +0000024722 00000 n +0000050042 00000 n +0000050201 00000 n 0000005381 00000 n 0000005579 00000 n 0000005878 00000 n -0000006574 00000 n -0000022769 00000 n -0000022894 00000 n -0000023516 00000 n -0000022926 00000 n -0000023737 00000 n -0000024617 00000 n -0000024817 00000 n -0000037410 00000 n -0000025067 00000 n -0000045820 00000 n -0000037615 00000 n -0000046028 00000 n -0000047970 00000 n -0000050004 00000 n -0000050119 00000 n +0000006681 00000 n +0000023028 00000 n +0000023153 00000 n +0000023775 00000 n +0000023185 00000 n +0000023996 00000 n +0000024876 00000 n +0000025076 00000 n +0000037669 00000 n +0000025326 00000 n +0000046079 00000 n +0000037874 00000 n +0000046287 00000 n +0000048229 00000 n +0000050263 00000 n +0000050378 00000 n trailer << /Size 63 /Root 61 0 R /Info 62 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -50251 +50510 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-002.tpf b/required/latex-lab/testfiles-graphic/tikz-002.tpf index f7a8b27e0..34d41a1c3 100644 --- a/required/latex-lab/testfiles-graphic/tikz-002.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-002.tpf @@ -647,7 +647,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 45 0 obj << /justify <> @@ -666,7 +666,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1131,63 +1131,63 @@ xref 0000016948 00000 n 0000017001 00000 n 0000017023 00000 n -0000022316 00000 n +0000022575 00000 n 0000017081 00000 n 0000017619 00000 n -0000019922 00000 n -0000018440 00000 n +0000020181 00000 n +0000018547 00000 n 0000000012 00000 f -0000018508 00000 n +0000018615 00000 n 0000000014 00000 f -0000018578 00000 n +0000018685 00000 n 0000000020 00000 f -0000019458 00000 n -0000018659 00000 n -0000019731 00000 n -0000019560 00000 n -0000019833 00000 n +0000019717 00000 n +0000018766 00000 n +0000019990 00000 n +0000019819 00000 n +0000020092 00000 n 0000000000 00000 f -0000019983 00000 n -0000020111 00000 n -0000020200 00000 n -0000020289 00000 n -0000020393 00000 n +0000020242 00000 n +0000020370 00000 n +0000020459 00000 n +0000020548 00000 n +0000020652 00000 n 0000016672 00000 n -0000020633 00000 n -0000020737 00000 n -0000020977 00000 n -0000021081 00000 n -0000021323 00000 n -0000021427 00000 n -0000021671 00000 n -0000021775 00000 n -0000022196 00000 n +0000020892 00000 n +0000020996 00000 n +0000021236 00000 n +0000021340 00000 n +0000021582 00000 n +0000021686 00000 n +0000021930 00000 n +0000022034 00000 n +0000022455 00000 n 0000000015 00000 n 0000016807 00000 n 0000012171 00000 n -0000042237 00000 n -0000044504 00000 n -0000044682 00000 n +0000042496 00000 n +0000044763 00000 n +0000044941 00000 n 0000017045 00000 n 0000017299 00000 n 0000017582 00000 n -0000018278 00000 n -0000040001 00000 n -0000022453 00000 n -0000023412 00000 n -0000023947 00000 n -0000036039 00000 n -0000036295 00000 n -0000039767 00000 n -0000040148 00000 n -0000042415 00000 n -0000044741 00000 n -0000044856 00000 n +0000018385 00000 n +0000040260 00000 n +0000022712 00000 n +0000023671 00000 n +0000024206 00000 n +0000036298 00000 n +0000036554 00000 n +0000040026 00000 n +0000040407 00000 n +0000042674 00000 n +0000045000 00000 n +0000045115 00000 n trailer << /Size 57 /Root 55 0 R /Info 56 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -44988 +45247 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-003.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-003.luatex.tpf index 9f379c3a3..0dd1352fe 100644 --- a/required/latex-lab/testfiles-graphic/tikz-003.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-003.luatex.tpf @@ -352,7 +352,7 @@ endobj << /Kids [61 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 63 0 obj << /justify <> @@ -371,7 +371,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -407,7 +407,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 25 0 R /K [ ] /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 25 0 R /K 28 0 R /ID (ID.008) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 25 0 R /K 28 0 R /ID (ID.008) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 27 0 R /K 29 0 R /ID (ID.009) >> @@ -425,7 +425,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K [ ] /ID (ID.013) >> endobj 33 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 31 0 R /K 34 0 R /ID (ID.014) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 31 0 R /K 34 0 R /ID (ID.014) >> endobj 34 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 35 0 R /ID (ID.015) >> @@ -443,7 +443,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 37 0 R /K [<> ] /ID (ID.019) >> endobj 39 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 37 0 R /K 40 0 R /ID (ID.020) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 37 0 R /K 40 0 R /ID (ID.020) >> endobj 40 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 39 0 R /K 41 0 R /ID (ID.021) >> @@ -464,7 +464,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 44 0 R /K [<> ] /ID (ID.026) >> endobj 46 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 44 0 R /K 47 0 R /ID (ID.027) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 44 0 R /K 47 0 R /ID (ID.027) >> endobj 47 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 46 0 R /K 48 0 R /ID (ID.028) >> @@ -1058,82 +1058,82 @@ xref 0000004228 00000 n 0000004281 00000 n 0000004303 00000 n -0000011173 00000 n +0000011472 00000 n 0000004361 00000 n 0000005087 00000 n -0000007390 00000 n -0000005908 00000 n +0000007649 00000 n +0000006015 00000 n 0000000012 00000 f -0000005976 00000 n +0000006083 00000 n 0000000014 00000 f -0000006046 00000 n +0000006153 00000 n 0000000020 00000 f -0000006926 00000 n -0000006127 00000 n -0000007199 00000 n -0000007028 00000 n -0000007301 00000 n +0000007185 00000 n +0000006234 00000 n +0000007458 00000 n +0000007287 00000 n +0000007560 00000 n 0000000000 00000 f -0000007451 00000 n -0000007579 00000 n -0000007668 00000 n -0000007757 00000 n -0000007846 00000 n -0000007966 00000 n -0000008076 00000 n -0000008170 00000 n -0000008274 00000 n -0000008415 00000 n -0000008548 00000 n -0000008668 00000 n -0000008778 00000 n -0000008872 00000 n -0000008976 00000 n -0000009117 00000 n -0000009284 00000 n -0000009404 00000 n -0000009548 00000 n -0000009642 00000 n -0000009746 00000 n -0000009863 00000 n -0000009984 00000 n -0000010117 00000 n -0000010237 00000 n -0000010381 00000 n -0000010475 00000 n -0000010579 00000 n -0000010721 00000 n -0000010889 00000 n -0000010993 00000 n -0000011310 00000 n +0000007710 00000 n +0000007838 00000 n +0000007927 00000 n +0000008016 00000 n +0000008105 00000 n +0000008225 00000 n +0000008335 00000 n +0000008439 00000 n +0000008543 00000 n +0000008684 00000 n +0000008817 00000 n +0000008937 00000 n +0000009047 00000 n +0000009151 00000 n +0000009255 00000 n +0000009396 00000 n +0000009563 00000 n +0000009683 00000 n +0000009827 00000 n +0000009931 00000 n +0000010035 00000 n +0000010152 00000 n +0000010273 00000 n +0000010406 00000 n +0000010526 00000 n +0000010670 00000 n +0000010774 00000 n +0000010878 00000 n +0000011020 00000 n +0000011188 00000 n +0000011292 00000 n +0000011609 00000 n 0000004077 00000 n 0000003942 00000 n 0000000020 00000 n -0000045754 00000 n -0000025107 00000 n -0000047725 00000 n -0000047884 00000 n +0000046053 00000 n +0000025406 00000 n +0000048024 00000 n +0000048183 00000 n 0000004325 00000 n 0000004495 00000 n 0000005050 00000 n -0000005746 00000 n -0000023469 00000 n -0000023538 00000 n -0000024160 00000 n -0000023570 00000 n -0000024381 00000 n -0000025261 00000 n -0000025461 00000 n -0000035697 00000 n -0000025642 00000 n -0000043762 00000 n -0000035902 00000 n -0000043970 00000 n -0000045912 00000 n -0000047946 00000 n -0000048061 00000 n +0000005853 00000 n +0000023768 00000 n +0000023837 00000 n +0000024459 00000 n +0000023869 00000 n +0000024680 00000 n +0000025560 00000 n +0000025760 00000 n +0000035996 00000 n +0000025941 00000 n +0000044061 00000 n +0000036201 00000 n +0000044269 00000 n +0000046211 00000 n +0000048245 00000 n +0000048360 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -48193 +48492 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-003.tpf b/required/latex-lab/testfiles-graphic/tikz-003.tpf index b33025fa3..a43384b2e 100644 --- a/required/latex-lab/testfiles-graphic/tikz-003.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-003.tpf @@ -579,7 +579,7 @@ endobj << /Kids [59 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 61 0 obj << /justify <> @@ -598,7 +598,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -631,7 +631,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 24 0 R /K [<> <>] /ID (ID.006) >> endobj 27 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 24 0 R /K 28 0 R /ID (ID.007) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 24 0 R /K 28 0 R /ID (ID.007) >> endobj 28 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 27 0 R /K 29 0 R /ID (ID.008) >> @@ -649,7 +649,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 31 0 R /K [<> <>] /ID (ID.012) >> endobj 33 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 31 0 R /K 34 0 R /ID (ID.013) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 31 0 R /K 34 0 R /ID (ID.013) >> endobj 34 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 35 0 R /ID (ID.014) >> @@ -667,7 +667,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 37 0 R /K [<> <>] /ID (ID.018) >> endobj 39 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 37 0 R /K 40 0 R /ID (ID.019) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 37 0 R /K 40 0 R /ID (ID.019) >> endobj 40 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 39 0 R /K 41 0 R /ID (ID.020) >> @@ -688,7 +688,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 44 0 R /K [<> <>] /ID (ID.025) >> endobj 46 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 44 0 R /K 47 0 R /ID (ID.026) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 44 0 R /K 47 0 R /ID (ID.026) >> endobj 47 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 46 0 R /K 48 0 R /ID (ID.027) >> @@ -1111,79 +1111,79 @@ xref 0000016148 00000 n 0000016201 00000 n 0000016223 00000 n -0000023520 00000 n +0000023819 00000 n 0000016281 00000 n 0000017089 00000 n -0000019392 00000 n -0000017910 00000 n +0000019651 00000 n +0000018017 00000 n 0000000012 00000 f -0000017978 00000 n +0000018085 00000 n 0000000014 00000 f -0000018048 00000 n +0000018155 00000 n 0000000020 00000 f -0000018928 00000 n -0000018129 00000 n -0000019201 00000 n -0000019030 00000 n -0000019303 00000 n +0000019187 00000 n +0000018236 00000 n +0000019460 00000 n +0000019289 00000 n +0000019562 00000 n 0000000000 00000 f -0000019453 00000 n -0000019581 00000 n -0000019670 00000 n -0000019759 00000 n -0000019879 00000 n +0000019712 00000 n +0000019840 00000 n +0000019929 00000 n +0000020018 00000 n +0000020138 00000 n 0000015872 00000 n -0000020053 00000 n -0000020147 00000 n -0000020251 00000 n -0000020390 00000 n -0000020585 00000 n -0000020705 00000 n -0000020879 00000 n -0000020973 00000 n -0000021077 00000 n -0000021216 00000 n -0000021413 00000 n -0000021533 00000 n -0000021709 00000 n -0000021803 00000 n -0000021907 00000 n -0000022090 00000 n -0000022210 00000 n -0000022408 00000 n -0000022528 00000 n -0000022704 00000 n -0000022798 00000 n -0000022902 00000 n -0000023042 00000 n -0000023240 00000 n -0000023344 00000 n +0000020312 00000 n +0000020416 00000 n +0000020520 00000 n +0000020659 00000 n +0000020854 00000 n +0000020974 00000 n +0000021148 00000 n +0000021252 00000 n +0000021356 00000 n +0000021495 00000 n +0000021692 00000 n +0000021812 00000 n +0000021988 00000 n +0000022092 00000 n +0000022196 00000 n +0000022379 00000 n +0000022499 00000 n +0000022697 00000 n +0000022817 00000 n +0000022993 00000 n +0000023097 00000 n +0000023201 00000 n +0000023341 00000 n +0000023539 00000 n +0000023643 00000 n 0000000015 00000 n 0000016007 00000 n 0000012171 00000 n -0000039410 00000 n -0000041677 00000 n -0000041855 00000 n +0000039709 00000 n +0000041976 00000 n +0000042154 00000 n 0000016245 00000 n 0000016513 00000 n 0000017052 00000 n -0000017748 00000 n -0000037238 00000 n -0000023657 00000 n -0000023787 00000 n -0000024226 00000 n -0000034470 00000 n -0000034701 00000 n -0000037012 00000 n -0000037321 00000 n -0000039588 00000 n -0000041914 00000 n -0000042029 00000 n +0000017855 00000 n +0000037537 00000 n +0000023956 00000 n +0000024086 00000 n +0000024525 00000 n +0000034769 00000 n +0000035000 00000 n +0000037311 00000 n +0000037620 00000 n +0000039887 00000 n +0000042213 00000 n +0000042328 00000 n trailer << /Size 73 /Root 71 0 R /Info 72 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -42161 +42460 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-004.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-004.luatex.tpf index 5751fb200..4ecc5bc07 100644 --- a/required/latex-lab/testfiles-graphic/tikz-004.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-004.luatex.tpf @@ -372,7 +372,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 68 0 obj << /justify <> @@ -391,7 +391,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -430,7 +430,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 26 0 R /K [ ] /ID (ID.008) >> endobj 28 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 26 0 R /K 29 0 R /ID (ID.009) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 26 0 R /K 29 0 R /ID (ID.009) >> endobj 29 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 28 0 R /K 30 0 R /ID (ID.010) >> @@ -451,7 +451,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K [ ] /ID (ID.015) >> endobj 35 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 33 0 R /K 36 0 R /ID (ID.016) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 33 0 R /K 36 0 R /ID (ID.016) >> endobj 36 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 35 0 R /K 37 0 R /ID (ID.017) >> @@ -472,7 +472,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 40 0 R /K [<> ] /ID (ID.022) >> endobj 42 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 40 0 R /K 43 0 R /ID (ID.023) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 40 0 R /K 43 0 R /ID (ID.023) >> endobj 43 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 42 0 R /K 44 0 R /ID (ID.024) >> @@ -496,7 +496,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 48 0 R /K [<> ] /ID (ID.030) >> endobj 50 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 48 0 R /K 51 0 R /ID (ID.031) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 48 0 R /K 51 0 R /ID (ID.031) >> endobj 51 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 50 0 R /K 52 0 R /ID (ID.032) >> @@ -1093,87 +1093,87 @@ xref 0000004448 00000 n 0000004501 00000 n 0000004523 00000 n -0000011953 00000 n +0000012252 00000 n 0000004581 00000 n 0000005387 00000 n -0000007690 00000 n -0000006208 00000 n +0000007949 00000 n +0000006315 00000 n 0000000012 00000 f -0000006276 00000 n +0000006383 00000 n 0000000014 00000 f -0000006346 00000 n +0000006453 00000 n 0000000020 00000 f -0000007226 00000 n -0000006427 00000 n -0000007499 00000 n -0000007328 00000 n -0000007601 00000 n +0000007485 00000 n +0000006534 00000 n +0000007758 00000 n +0000007587 00000 n +0000007860 00000 n 0000000000 00000 f -0000007751 00000 n -0000007879 00000 n -0000007968 00000 n -0000008057 00000 n -0000008146 00000 n -0000008242 00000 n -0000008362 00000 n -0000008472 00000 n -0000008566 00000 n -0000008670 00000 n -0000008811 00000 n -0000008944 00000 n -0000009040 00000 n -0000009160 00000 n -0000009270 00000 n -0000009364 00000 n -0000009468 00000 n -0000009609 00000 n -0000009776 00000 n -0000009872 00000 n -0000009992 00000 n -0000010136 00000 n -0000010230 00000 n -0000010334 00000 n -0000010451 00000 n -0000010572 00000 n -0000010705 00000 n -0000010801 00000 n -0000010921 00000 n -0000011065 00000 n -0000011159 00000 n -0000011263 00000 n -0000011405 00000 n -0000011573 00000 n -0000011669 00000 n -0000011773 00000 n -0000012090 00000 n +0000008010 00000 n +0000008138 00000 n +0000008227 00000 n +0000008316 00000 n +0000008405 00000 n +0000008501 00000 n +0000008621 00000 n +0000008731 00000 n +0000008835 00000 n +0000008939 00000 n +0000009080 00000 n +0000009213 00000 n +0000009309 00000 n +0000009429 00000 n +0000009539 00000 n +0000009643 00000 n +0000009747 00000 n +0000009888 00000 n +0000010055 00000 n +0000010151 00000 n +0000010271 00000 n +0000010415 00000 n +0000010519 00000 n +0000010623 00000 n +0000010740 00000 n +0000010861 00000 n +0000010994 00000 n +0000011090 00000 n +0000011210 00000 n +0000011354 00000 n +0000011458 00000 n +0000011562 00000 n +0000011704 00000 n +0000011872 00000 n +0000011968 00000 n +0000012072 00000 n +0000012389 00000 n 0000004297 00000 n 0000004162 00000 n 0000000020 00000 n -0000047947 00000 n -0000025887 00000 n -0000049918 00000 n -0000050077 00000 n +0000048246 00000 n +0000026186 00000 n +0000050217 00000 n +0000050376 00000 n 0000004545 00000 n 0000004715 00000 n 0000005350 00000 n -0000006046 00000 n -0000024249 00000 n -0000024318 00000 n -0000024940 00000 n -0000024350 00000 n -0000025161 00000 n -0000026041 00000 n -0000026241 00000 n -0000037890 00000 n -0000026456 00000 n -0000045955 00000 n -0000038095 00000 n -0000046163 00000 n -0000048105 00000 n -0000050139 00000 n -0000050254 00000 n +0000006153 00000 n +0000024548 00000 n +0000024617 00000 n +0000025239 00000 n +0000024649 00000 n +0000025460 00000 n +0000026340 00000 n +0000026540 00000 n +0000038189 00000 n +0000026755 00000 n +0000046254 00000 n +0000038394 00000 n +0000046462 00000 n +0000048404 00000 n +0000050438 00000 n +0000050553 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -50386 +50685 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-004.tpf b/required/latex-lab/testfiles-graphic/tikz-004.tpf index 958898121..054419d1b 100644 --- a/required/latex-lab/testfiles-graphic/tikz-004.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-004.tpf @@ -579,7 +579,7 @@ endobj << /Kids [64 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 66 0 obj << /justify <> @@ -598,7 +598,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -634,7 +634,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 25 0 R /K [<> <>] /ID (ID.007) >> endobj 28 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 25 0 R /K 29 0 R /ID (ID.008) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 25 0 R /K 29 0 R /ID (ID.008) >> endobj 29 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 28 0 R /K 30 0 R /ID (ID.009) >> @@ -655,7 +655,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 33 0 R /K [<> <>] /ID (ID.014) >> endobj 35 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 33 0 R /K 36 0 R /ID (ID.015) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 33 0 R /K 36 0 R /ID (ID.015) >> endobj 36 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 35 0 R /K 37 0 R /ID (ID.016) >> @@ -676,7 +676,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 40 0 R /K [<> <>] /ID (ID.021) >> endobj 42 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 40 0 R /K 43 0 R /ID (ID.022) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 40 0 R /K 43 0 R /ID (ID.022) >> endobj 43 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 42 0 R /K 44 0 R /ID (ID.023) >> @@ -700,7 +700,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 48 0 R /K [<> <>] /ID (ID.029) >> endobj 50 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 48 0 R /K 51 0 R /ID (ID.030) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 48 0 R /K 51 0 R /ID (ID.030) >> endobj 51 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 50 0 R /K 52 0 R /ID (ID.031) >> @@ -1126,84 +1126,84 @@ xref 0000016155 00000 n 0000016208 00000 n 0000016230 00000 n -0000024087 00000 n +0000024386 00000 n 0000016288 00000 n 0000017176 00000 n -0000019479 00000 n -0000017997 00000 n +0000019738 00000 n +0000018104 00000 n 0000000012 00000 f -0000018065 00000 n +0000018172 00000 n 0000000014 00000 f -0000018135 00000 n +0000018242 00000 n 0000000020 00000 f -0000019015 00000 n -0000018216 00000 n -0000019288 00000 n -0000019117 00000 n -0000019390 00000 n +0000019274 00000 n +0000018323 00000 n +0000019547 00000 n +0000019376 00000 n +0000019649 00000 n 0000000000 00000 f -0000019540 00000 n -0000019668 00000 n -0000019757 00000 n -0000019846 00000 n -0000019942 00000 n -0000020062 00000 n +0000019799 00000 n +0000019927 00000 n +0000020016 00000 n +0000020105 00000 n +0000020201 00000 n +0000020321 00000 n 0000015879 00000 n -0000020236 00000 n -0000020330 00000 n -0000020434 00000 n -0000020573 00000 n -0000020768 00000 n -0000020864 00000 n -0000020984 00000 n -0000021158 00000 n -0000021252 00000 n -0000021356 00000 n -0000021495 00000 n -0000021692 00000 n -0000021788 00000 n -0000021908 00000 n -0000022084 00000 n -0000022178 00000 n -0000022282 00000 n -0000022465 00000 n -0000022585 00000 n -0000022783 00000 n -0000022879 00000 n -0000022999 00000 n -0000023175 00000 n -0000023269 00000 n -0000023373 00000 n -0000023513 00000 n -0000023711 00000 n -0000023807 00000 n -0000023911 00000 n +0000020495 00000 n +0000020599 00000 n +0000020703 00000 n +0000020842 00000 n +0000021037 00000 n +0000021133 00000 n +0000021253 00000 n +0000021427 00000 n +0000021531 00000 n +0000021635 00000 n +0000021774 00000 n +0000021971 00000 n +0000022067 00000 n +0000022187 00000 n +0000022363 00000 n +0000022467 00000 n +0000022571 00000 n +0000022754 00000 n +0000022874 00000 n +0000023072 00000 n +0000023168 00000 n +0000023288 00000 n +0000023464 00000 n +0000023568 00000 n +0000023672 00000 n +0000023812 00000 n +0000024010 00000 n +0000024106 00000 n +0000024210 00000 n 0000000015 00000 n 0000016014 00000 n 0000012171 00000 n -0000040966 00000 n -0000043233 00000 n -0000043411 00000 n +0000041265 00000 n +0000043532 00000 n +0000043710 00000 n 0000016252 00000 n 0000016520 00000 n 0000017139 00000 n -0000017835 00000 n -0000038770 00000 n -0000024224 00000 n -0000024354 00000 n -0000024793 00000 n -0000035990 00000 n -0000036233 00000 n -0000038544 00000 n -0000038877 00000 n -0000041144 00000 n -0000043470 00000 n -0000043585 00000 n +0000017942 00000 n +0000039069 00000 n +0000024523 00000 n +0000024653 00000 n +0000025092 00000 n +0000036289 00000 n +0000036532 00000 n +0000038843 00000 n +0000039176 00000 n +0000041443 00000 n +0000043769 00000 n +0000043884 00000 n trailer << /Size 78 /Root 76 0 R /Info 77 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -43717 +44016 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-005.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-005.luatex.tpf index 06055a11e..a014ce0b4 100644 --- a/required/latex-lab/testfiles-graphic/tikz-005.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-005.luatex.tpf @@ -473,7 +473,7 @@ endobj << /Kids [53 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 55 0 obj << /justify <> @@ -492,7 +492,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1023,70 +1023,70 @@ xref 0000005851 00000 n 0000005904 00000 n 0000005926 00000 n -0000011962 00000 n +0000012221 00000 n 0000005984 00000 n 0000006584 00000 n -0000008887 00000 n -0000007405 00000 n +0000009146 00000 n +0000007512 00000 n 0000000012 00000 f -0000007473 00000 n +0000007580 00000 n 0000000014 00000 f -0000007543 00000 n +0000007650 00000 n 0000000020 00000 f -0000008423 00000 n -0000007624 00000 n -0000008696 00000 n -0000008525 00000 n -0000008798 00000 n +0000008682 00000 n +0000007731 00000 n +0000008955 00000 n +0000008784 00000 n +0000009057 00000 n 0000000000 00000 f -0000008948 00000 n -0000009097 00000 n -0000009186 00000 n -0000009275 00000 n -0000009364 00000 n -0000009468 00000 n -0000009578 00000 n -0000009682 00000 n -0000009826 00000 n -0000009930 00000 n -0000010074 00000 n -0000010178 00000 n -0000010356 00000 n -0000010460 00000 n -0000010577 00000 n -0000010723 00000 n -0000010827 00000 n -0000010978 00000 n -0000011124 00000 n -0000011228 00000 n -0000011379 00000 n -0000011525 00000 n -0000011629 00000 n -0000011815 00000 n -0000012099 00000 n +0000009207 00000 n +0000009356 00000 n +0000009445 00000 n +0000009534 00000 n +0000009623 00000 n +0000009727 00000 n +0000009837 00000 n +0000009941 00000 n +0000010085 00000 n +0000010189 00000 n +0000010333 00000 n +0000010437 00000 n +0000010615 00000 n +0000010719 00000 n +0000010836 00000 n +0000010982 00000 n +0000011086 00000 n +0000011237 00000 n +0000011383 00000 n +0000011487 00000 n +0000011638 00000 n +0000011784 00000 n +0000011888 00000 n +0000012074 00000 n +0000012358 00000 n 0000005712 00000 n 0000005577 00000 n 0000000020 00000 n -0000039607 00000 n -0000025827 00000 n -0000039765 00000 n +0000039866 00000 n +0000026086 00000 n +0000040024 00000 n 0000005948 00000 n 0000006104 00000 n 0000006547 00000 n -0000007243 00000 n -0000024258 00000 n -0000024880 00000 n -0000024290 00000 n -0000025101 00000 n -0000025981 00000 n -0000026181 00000 n -0000037618 00000 n -0000026392 00000 n -0000037823 00000 n -0000039827 00000 n -0000039942 00000 n +0000007350 00000 n +0000024517 00000 n +0000025139 00000 n +0000024549 00000 n +0000025360 00000 n +0000026240 00000 n +0000026440 00000 n +0000037877 00000 n +0000026651 00000 n +0000038082 00000 n +0000040086 00000 n +0000040201 00000 n trailer << /Size 67 /Root 65 0 R /Info 66 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -40074 +40333 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-005.tpf b/required/latex-lab/testfiles-graphic/tikz-005.tpf index 974914be7..039157976 100644 --- a/required/latex-lab/testfiles-graphic/tikz-005.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-005.tpf @@ -655,7 +655,7 @@ endobj << /Kids [51 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 53 0 obj << /justify <> @@ -674,7 +674,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -981,67 +981,67 @@ xref 0000017016 00000 n 0000017069 00000 n 0000017091 00000 n -0000023318 00000 n +0000023577 00000 n 0000017149 00000 n 0000017789 00000 n -0000020092 00000 n -0000018610 00000 n +0000020351 00000 n +0000018717 00000 n 0000000012 00000 f -0000018678 00000 n +0000018785 00000 n 0000000014 00000 f -0000018748 00000 n +0000018855 00000 n 0000000020 00000 f -0000019628 00000 n -0000018829 00000 n -0000019901 00000 n -0000019730 00000 n -0000020003 00000 n +0000019887 00000 n +0000018936 00000 n +0000020160 00000 n +0000019989 00000 n +0000020262 00000 n 0000000000 00000 f -0000020153 00000 n -0000020302 00000 n -0000020391 00000 n -0000020480 00000 n -0000020584 00000 n +0000020412 00000 n +0000020561 00000 n +0000020650 00000 n +0000020739 00000 n +0000020843 00000 n 0000016752 00000 n -0000020758 00000 n -0000020862 00000 n -0000021036 00000 n -0000021140 00000 n -0000021314 00000 n -0000021418 00000 n -0000021592 00000 n -0000021696 00000 n -0000021878 00000 n -0000022022 00000 n -0000022126 00000 n -0000022309 00000 n -0000022454 00000 n -0000022558 00000 n -0000022741 00000 n -0000022886 00000 n -0000022990 00000 n -0000023173 00000 n +0000021017 00000 n +0000021121 00000 n +0000021295 00000 n +0000021399 00000 n +0000021573 00000 n +0000021677 00000 n +0000021851 00000 n +0000021955 00000 n +0000022137 00000 n +0000022281 00000 n +0000022385 00000 n +0000022568 00000 n +0000022713 00000 n +0000022817 00000 n +0000023000 00000 n +0000023145 00000 n +0000023249 00000 n +0000023432 00000 n 0000000015 00000 n 0000016887 00000 n 0000012171 00000 n -0000037364 00000 n -0000037542 00000 n +0000037623 00000 n +0000037801 00000 n 0000017113 00000 n 0000017325 00000 n 0000017752 00000 n -0000018448 00000 n -0000035167 00000 n -0000023455 00000 n -0000023894 00000 n -0000034926 00000 n -0000035275 00000 n -0000037601 00000 n -0000037716 00000 n +0000018555 00000 n +0000035426 00000 n +0000023714 00000 n +0000024153 00000 n +0000035185 00000 n +0000035534 00000 n +0000037860 00000 n +0000037975 00000 n trailer << /Size 61 /Root 59 0 R /Info 60 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -37848 +38107 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-006.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-006.luatex.tpf index 1d1b901de..af005d5e8 100644 --- a/required/latex-lab/testfiles-graphic/tikz-006.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-006.luatex.tpf @@ -588,7 +588,7 @@ endobj << /Kids [110 0 R 111 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 113 0 obj << /justify <> @@ -609,7 +609,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -654,7 +654,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K [ <> ] /ID (ID.010) >> endobj 30 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 28 0 R /K 31 0 R /ID (ID.011) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 28 0 R /K 31 0 R /ID (ID.011) >> endobj 31 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.012) >> @@ -714,7 +714,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 48 0 R /K [ <> ] /ID (ID.030) >> endobj 50 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 48 0 R /K 51 0 R /ID (ID.031) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 48 0 R /K 51 0 R /ID (ID.031) >> endobj 51 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 50 0 R /K [52 0 R 53 0 R] /ID (ID.032) >> @@ -771,7 +771,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 67 0 R /K [ ] /ID (ID.049) >> endobj 69 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 67 0 R /K 70 0 R /ID (ID.050) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 67 0 R /K 70 0 R /ID (ID.050) >> endobj 70 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 69 0 R /K [71 0 R 72 0 R] /ID (ID.051) >> @@ -822,7 +822,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K [ ] /ID (ID.066) >> endobj 86 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 84 0 R /K 87 0 R /ID (ID.067) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 84 0 R /K 87 0 R /ID (ID.067) >> endobj 87 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 86 0 R /K [88 0 R 89 0 R] /ID (ID.068) >> @@ -1432,133 +1432,133 @@ xref 0000007607 00000 n 0000007660 00000 n 0000007682 00000 n -0000021275 00000 n +0000021574 00000 n 0000007741 00000 n 0000009422 00000 n -0000011814 00000 n -0000010332 00000 n +0000012073 00000 n +0000010439 00000 n 0000000012 00000 f -0000010400 00000 n +0000010507 00000 n 0000000014 00000 f -0000010470 00000 n +0000010577 00000 n 0000000020 00000 f -0000011350 00000 n -0000010551 00000 n -0000011623 00000 n -0000011452 00000 n -0000011725 00000 n +0000011609 00000 n +0000010658 00000 n +0000011882 00000 n +0000011711 00000 n +0000011984 00000 n 0000000000 00000 f -0000011875 00000 n -0000012003 00000 n -0000012092 00000 n -0000012181 00000 n -0000012270 00000 n -0000012383 00000 n -0000012531 00000 n -0000012627 00000 n -0000012747 00000 n -0000012894 00000 n -0000012988 00000 n -0000013101 00000 n -0000013243 00000 n -0000013362 00000 n -0000013466 00000 n -0000013595 00000 n -0000013694 00000 n -0000013798 00000 n -0000013944 00000 n -0000014048 00000 n -0000014177 00000 n -0000014276 00000 n -0000014380 00000 n -0000014526 00000 n -0000014661 00000 n -0000014774 00000 n -0000014887 00000 n -0000014983 00000 n -0000015103 00000 n -0000015250 00000 n -0000015344 00000 n -0000015457 00000 n -0000015600 00000 n -0000015719 00000 n -0000015823 00000 n -0000015953 00000 n -0000016052 00000 n -0000016156 00000 n -0000016303 00000 n -0000016407 00000 n -0000016537 00000 n -0000016636 00000 n -0000016740 00000 n -0000016887 00000 n -0000017022 00000 n -0000017126 00000 n -0000017269 00000 n -0000017389 00000 n -0000017499 00000 n -0000017593 00000 n -0000017706 00000 n -0000017849 00000 n -0000017968 00000 n -0000018072 00000 n -0000018202 00000 n -0000018301 00000 n -0000018405 00000 n -0000018552 00000 n -0000018656 00000 n -0000018786 00000 n -0000018885 00000 n -0000018989 00000 n -0000019136 00000 n -0000019271 00000 n -0000019392 00000 n -0000019502 00000 n -0000019596 00000 n -0000019709 00000 n -0000019852 00000 n -0000019971 00000 n -0000020075 00000 n -0000020205 00000 n -0000020304 00000 n -0000020408 00000 n -0000020555 00000 n -0000020659 00000 n -0000020789 00000 n -0000020888 00000 n -0000020992 00000 n -0000021139 00000 n -0000021414 00000 n +0000012134 00000 n +0000012262 00000 n +0000012351 00000 n +0000012440 00000 n +0000012529 00000 n +0000012642 00000 n +0000012790 00000 n +0000012886 00000 n +0000013006 00000 n +0000013153 00000 n +0000013257 00000 n +0000013370 00000 n +0000013512 00000 n +0000013631 00000 n +0000013735 00000 n +0000013864 00000 n +0000013963 00000 n +0000014067 00000 n +0000014213 00000 n +0000014317 00000 n +0000014446 00000 n +0000014545 00000 n +0000014649 00000 n +0000014795 00000 n +0000014930 00000 n +0000015043 00000 n +0000015156 00000 n +0000015252 00000 n +0000015372 00000 n +0000015519 00000 n +0000015623 00000 n +0000015736 00000 n +0000015879 00000 n +0000015998 00000 n +0000016102 00000 n +0000016232 00000 n +0000016331 00000 n +0000016435 00000 n +0000016582 00000 n +0000016686 00000 n +0000016816 00000 n +0000016915 00000 n +0000017019 00000 n +0000017166 00000 n +0000017301 00000 n +0000017405 00000 n +0000017548 00000 n +0000017668 00000 n +0000017778 00000 n +0000017882 00000 n +0000017995 00000 n +0000018138 00000 n +0000018257 00000 n +0000018361 00000 n +0000018491 00000 n +0000018590 00000 n +0000018694 00000 n +0000018841 00000 n +0000018945 00000 n +0000019075 00000 n +0000019174 00000 n +0000019278 00000 n +0000019425 00000 n +0000019560 00000 n +0000019681 00000 n +0000019791 00000 n +0000019895 00000 n +0000020008 00000 n +0000020151 00000 n +0000020270 00000 n +0000020374 00000 n +0000020504 00000 n +0000020603 00000 n +0000020707 00000 n +0000020854 00000 n +0000020958 00000 n +0000021088 00000 n +0000021187 00000 n +0000021291 00000 n +0000021438 00000 n +0000021713 00000 n 0000007452 00000 n 0000007313 00000 n 0000000020 00000 n -0000056374 00000 n -0000035174 00000 n -0000058120 00000 n -0000058304 00000 n +0000056673 00000 n +0000035473 00000 n +0000058419 00000 n +0000058603 00000 n 0000007704 00000 n 0000007974 00000 n 0000008834 00000 n 0000009375 00000 n -0000010081 00000 n -0000054521 00000 n -0000033574 00000 n -0000033600 00000 n -0000034224 00000 n -0000033633 00000 n -0000034447 00000 n -0000035331 00000 n -0000035534 00000 n -0000048618 00000 n -0000035792 00000 n -0000054317 00000 n -0000048825 00000 n -0000054589 00000 n -0000056536 00000 n -0000058368 00000 n -0000058487 00000 n +0000010188 00000 n +0000054820 00000 n +0000033873 00000 n +0000033899 00000 n +0000034523 00000 n +0000033932 00000 n +0000034746 00000 n +0000035630 00000 n +0000035833 00000 n +0000048917 00000 n +0000036091 00000 n +0000054616 00000 n +0000049124 00000 n +0000054888 00000 n +0000056835 00000 n +0000058667 00000 n +0000058786 00000 n trailer << /Size 130 /Root 128 0 R /Info 129 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -58620 +58919 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-006.tpf b/required/latex-lab/testfiles-graphic/tikz-006.tpf index 7c85d618f..6cb2727d5 100644 --- a/required/latex-lab/testfiles-graphic/tikz-006.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-006.tpf @@ -788,7 +788,7 @@ endobj << /Kids [109 0 R 110 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 112 0 obj << /justify <> @@ -809,7 +809,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -851,7 +851,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 28 0 R /K [<> <> <> <>] /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 28 0 R /K 31 0 R /ID (ID.010) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 28 0 R /K 31 0 R /ID (ID.010) >> endobj 31 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.011) >> @@ -911,7 +911,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 48 0 R /K [<> <> <> <>] /ID (ID.029) >> endobj 50 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 48 0 R /K 51 0 R /ID (ID.030) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 48 0 R /K 51 0 R /ID (ID.030) >> endobj 51 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 50 0 R /K [52 0 R 53 0 R] /ID (ID.031) >> @@ -968,7 +968,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 67 0 R /K [<> <>] /ID (ID.048) >> endobj 69 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 67 0 R /K 70 0 R /ID (ID.049) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 67 0 R /K 70 0 R /ID (ID.049) >> endobj 70 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 69 0 R /K [71 0 R 72 0 R] /ID (ID.050) >> @@ -1019,7 +1019,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 84 0 R /K [<> <>] /ID (ID.065) >> endobj 86 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 84 0 R /K 87 0 R /ID (ID.066) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 84 0 R /K 87 0 R /ID (ID.066) >> endobj 87 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 86 0 R /K [88 0 R 89 0 R] /ID (ID.067) >> @@ -1494,133 +1494,133 @@ xref 0000019686 00000 n 0000019739 00000 n 0000019761 00000 n -0000034295 00000 n +0000034594 00000 n 0000019820 00000 n 0000021662 00000 n -0000024054 00000 n -0000022572 00000 n +0000024313 00000 n +0000022679 00000 n 0000000012 00000 f -0000022640 00000 n +0000022747 00000 n 0000000014 00000 f -0000022710 00000 n +0000022817 00000 n 0000000020 00000 f -0000023590 00000 n -0000022791 00000 n -0000023863 00000 n -0000023692 00000 n -0000023965 00000 n +0000023849 00000 n +0000022898 00000 n +0000024122 00000 n +0000023951 00000 n +0000024224 00000 n 0000000000 00000 f -0000024115 00000 n -0000024243 00000 n -0000024332 00000 n -0000024421 00000 n -0000024534 00000 n +0000024374 00000 n +0000024502 00000 n +0000024591 00000 n +0000024680 00000 n +0000024793 00000 n 0000019391 00000 n -0000024807 00000 n -0000024903 00000 n -0000025023 00000 n -0000025263 00000 n -0000025357 00000 n -0000025470 00000 n -0000025609 00000 n -0000025728 00000 n -0000025832 00000 n -0000025958 00000 n -0000026057 00000 n -0000026161 00000 n -0000026305 00000 n -0000026409 00000 n -0000026536 00000 n -0000026635 00000 n -0000026739 00000 n -0000026883 00000 n -0000027114 00000 n -0000027227 00000 n -0000027503 00000 n -0000027599 00000 n -0000027719 00000 n -0000027963 00000 n -0000028057 00000 n -0000028170 00000 n -0000028310 00000 n -0000028429 00000 n -0000028533 00000 n -0000028660 00000 n -0000028759 00000 n -0000028863 00000 n -0000029007 00000 n -0000029111 00000 n -0000029238 00000 n -0000029337 00000 n -0000029441 00000 n -0000029585 00000 n -0000029817 00000 n -0000029921 00000 n -0000030061 00000 n -0000030181 00000 n -0000030357 00000 n -0000030451 00000 n -0000030564 00000 n -0000030704 00000 n -0000030823 00000 n -0000030927 00000 n -0000031054 00000 n -0000031153 00000 n -0000031257 00000 n -0000031401 00000 n -0000031505 00000 n -0000031632 00000 n -0000031731 00000 n -0000031835 00000 n -0000031979 00000 n -0000032177 00000 n -0000032298 00000 n -0000032474 00000 n -0000032568 00000 n -0000032681 00000 n -0000032821 00000 n -0000032940 00000 n -0000033044 00000 n -0000033171 00000 n -0000033270 00000 n -0000033374 00000 n -0000033518 00000 n -0000033622 00000 n -0000033749 00000 n -0000033848 00000 n -0000033952 00000 n -0000034096 00000 n +0000025066 00000 n +0000025162 00000 n +0000025282 00000 n +0000025522 00000 n +0000025626 00000 n +0000025739 00000 n +0000025878 00000 n +0000025997 00000 n +0000026101 00000 n +0000026227 00000 n +0000026326 00000 n +0000026430 00000 n +0000026574 00000 n +0000026678 00000 n +0000026805 00000 n +0000026904 00000 n +0000027008 00000 n +0000027152 00000 n +0000027383 00000 n +0000027496 00000 n +0000027772 00000 n +0000027868 00000 n +0000027988 00000 n +0000028232 00000 n +0000028336 00000 n +0000028449 00000 n +0000028589 00000 n +0000028708 00000 n +0000028812 00000 n +0000028939 00000 n +0000029038 00000 n +0000029142 00000 n +0000029286 00000 n +0000029390 00000 n +0000029517 00000 n +0000029616 00000 n +0000029720 00000 n +0000029864 00000 n +0000030096 00000 n +0000030200 00000 n +0000030340 00000 n +0000030460 00000 n +0000030636 00000 n +0000030740 00000 n +0000030853 00000 n +0000030993 00000 n +0000031112 00000 n +0000031216 00000 n +0000031343 00000 n +0000031442 00000 n +0000031546 00000 n +0000031690 00000 n +0000031794 00000 n +0000031921 00000 n +0000032020 00000 n +0000032124 00000 n +0000032268 00000 n +0000032466 00000 n +0000032587 00000 n +0000032763 00000 n +0000032867 00000 n +0000032980 00000 n +0000033120 00000 n +0000033239 00000 n +0000033343 00000 n +0000033470 00000 n +0000033569 00000 n +0000033673 00000 n +0000033817 00000 n +0000033921 00000 n +0000034048 00000 n +0000034147 00000 n +0000034251 00000 n +0000034395 00000 n 0000000015 00000 n 0000019529 00000 n 0000012172 00000 n -0000054176 00000 n -0000055073 00000 n -0000056869 00000 n -0000057053 00000 n +0000054475 00000 n +0000055372 00000 n +0000057168 00000 n +0000057352 00000 n 0000019783 00000 n 0000020230 00000 n 0000021090 00000 n 0000021615 00000 n -0000022321 00000 n -0000052021 00000 n -0000034434 00000 n -0000034459 00000 n -0000051867 00000 n -0000034482 00000 n -0000035638 00000 n -0000038303 00000 n -0000038523 00000 n -0000051595 00000 n -0000052086 00000 n -0000054359 00000 n -0000055241 00000 n -0000057113 00000 n -0000057232 00000 n +0000022428 00000 n +0000052320 00000 n +0000034733 00000 n +0000034758 00000 n +0000052166 00000 n +0000034781 00000 n +0000035937 00000 n +0000038602 00000 n +0000038822 00000 n +0000051894 00000 n +0000052385 00000 n +0000054658 00000 n +0000055540 00000 n +0000057412 00000 n +0000057531 00000 n trailer << /Size 127 /Root 125 0 R /Info 126 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -57365 +57664 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-007.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-007.luatex.tpf index a776c9570..de940e0b5 100644 --- a/required/latex-lab/testfiles-graphic/tikz-007.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-007.luatex.tpf @@ -202,7 +202,7 @@ endobj << /Kids [41 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 43 0 obj << /justify <> @@ -221,7 +221,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -651,36 +651,36 @@ xref 0000004073 00000 n 0000004126 00000 n 0000004148 00000 n -0000007675 00000 n +0000007934 00000 n 0000004240 00000 n 0000004496 00000 n -0000006801 00000 n -0000005317 00000 n +0000007060 00000 n +0000005424 00000 n 0000000012 00000 f -0000005385 00000 n +0000005492 00000 n 0000000014 00000 f -0000005455 00000 n +0000005562 00000 n 0000000020 00000 f -0000006335 00000 n -0000005536 00000 n -0000006608 00000 n -0000006437 00000 n -0000006710 00000 n +0000006594 00000 n +0000005643 00000 n +0000006867 00000 n +0000006696 00000 n +0000006969 00000 n 0000000000 00000 f -0000006862 00000 n -0000006959 00000 n -0000007047 00000 n -0000007135 00000 n -0000007223 00000 n -0000007326 00000 n -0000007513 00000 n +0000007121 00000 n +0000007218 00000 n +0000007306 00000 n +0000007394 00000 n +0000007482 00000 n +0000007585 00000 n +0000007772 00000 n 0000000020 00000 n -0000007812 00000 n +0000008071 00000 n 0000001295 00000 n 0000001160 00000 n 0000000098 00000 n -0000031832 00000 n -0000031990 00000 n +0000032091 00000 n +0000032249 00000 n 0000001375 00000 n 0000001841 00000 n 0000002046 00000 n @@ -689,15 +689,15 @@ xref 0000004204 00000 n 0000004297 00000 n 0000004459 00000 n -0000005155 00000 n -0000019971 00000 n -0000029843 00000 n -0000020142 00000 n -0000030048 00000 n -0000032052 00000 n -0000032177 00000 n +0000005262 00000 n +0000020230 00000 n +0000030102 00000 n +0000020401 00000 n +0000030307 00000 n +0000032311 00000 n +0000032436 00000 n trailer << /Size 50 /Root 48 0 R /Info 49 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32309 +32568 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-007.tpf b/required/latex-lab/testfiles-graphic/tikz-007.tpf index 5c4a3b6f8..22f6ef0a5 100644 --- a/required/latex-lab/testfiles-graphic/tikz-007.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-007.tpf @@ -452,7 +452,7 @@ endobj << /Kids [40 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 42 0 obj << /justify <> @@ -471,7 +471,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -727,35 +727,35 @@ xref 0000016175 00000 n 0000016228 00000 n 0000016250 00000 n -0000019785 00000 n +0000020044 00000 n 0000016342 00000 n 0000016604 00000 n -0000018909 00000 n -0000017425 00000 n +0000019168 00000 n +0000017532 00000 n 0000000012 00000 f -0000017493 00000 n +0000017600 00000 n 0000000014 00000 f -0000017563 00000 n +0000017670 00000 n 0000000020 00000 f -0000018443 00000 n -0000017644 00000 n -0000018716 00000 n -0000018545 00000 n -0000018818 00000 n +0000018702 00000 n +0000017751 00000 n +0000018975 00000 n +0000018804 00000 n +0000019077 00000 n 0000000000 00000 f -0000018970 00000 n -0000019067 00000 n -0000019155 00000 n -0000019243 00000 n -0000019346 00000 n +0000019229 00000 n +0000019326 00000 n +0000019414 00000 n +0000019502 00000 n +0000019605 00000 n 0000013262 00000 n -0000019625 00000 n +0000019884 00000 n 0000000015 00000 n 0000000093 00000 n 0000013397 00000 n 0000012249 00000 n -0000032737 00000 n -0000032915 00000 n +0000032996 00000 n +0000033174 00000 n 0000013479 00000 n 0000013944 00000 n 0000014149 00000 n @@ -764,19 +764,19 @@ xref 0000016306 00000 n 0000016420 00000 n 0000016567 00000 n -0000017263 00000 n -0000030571 00000 n -0000019922 00000 n -0000020345 00000 n -0000030342 00000 n -0000030648 00000 n -0000032974 00000 n -0000033099 00000 n +0000017370 00000 n +0000030830 00000 n +0000020181 00000 n +0000020604 00000 n +0000030601 00000 n +0000030907 00000 n +0000033233 00000 n +0000033358 00000 n trailer << /Size 50 /Root 48 0 R /Info 49 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -33231 +33490 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-009.luatex.tpf b/required/latex-lab/testfiles-graphic/tikz-009.luatex.tpf index 03f9f0e28..4a7ccdaf3 100644 --- a/required/latex-lab/testfiles-graphic/tikz-009.luatex.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-009.luatex.tpf @@ -236,7 +236,7 @@ endobj << /Kids [34 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 36 0 obj << /justify <> @@ -736,52 +736,52 @@ xref 0000002857 00000 n 0000002910 00000 n 0000002932 00000 n -0000005957 00000 n +0000006064 00000 n 0000002990 00000 n 0000003403 00000 n 0000000000 00000 f -0000004244 00000 n -0000004352 00000 n -0000004428 00000 n -0000004504 00000 n -0000004580 00000 n -0000004671 00000 n -0000004776 00000 n +0000004351 00000 n +0000004459 00000 n +0000004535 00000 n +0000004611 00000 n +0000004687 00000 n +0000004778 00000 n +0000004883 00000 n 0000000020 00000 n -0000004943 00000 n -0000005034 00000 n -0000005173 00000 n +0000005050 00000 n +0000005141 00000 n +0000005280 00000 n 0000000099 00000 n -0000005345 00000 n -0000005436 00000 n -0000005575 00000 n -0000005737 00000 n -0000005828 00000 n -0000006075 00000 n +0000005452 00000 n +0000005543 00000 n +0000005682 00000 n +0000005844 00000 n +0000005935 00000 n +0000006182 00000 n 0000002694 00000 n 0000002559 00000 n 0000000178 00000 n -0000032498 00000 n -0000019891 00000 n -0000032656 00000 n +0000032605 00000 n +0000019998 00000 n +0000032763 00000 n 0000002954 00000 n 0000003068 00000 n 0000003366 00000 n -0000004082 00000 n -0000018234 00000 n -0000018929 00000 n -0000018266 00000 n -0000018339 00000 n -0000019165 00000 n -0000020045 00000 n -0000020245 00000 n -0000030481 00000 n -0000020426 00000 n -0000030714 00000 n -0000032718 00000 n -0000032833 00000 n +0000004189 00000 n +0000018341 00000 n +0000019036 00000 n +0000018373 00000 n +0000018446 00000 n +0000019272 00000 n +0000020152 00000 n +0000020352 00000 n +0000030588 00000 n +0000020533 00000 n +0000030821 00000 n +0000032825 00000 n +0000032940 00000 n trailer << /Size 49 /Root 47 0 R /Info 48 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32965 +33072 %%EOF diff --git a/required/latex-lab/testfiles-graphic/tikz-009.tpf b/required/latex-lab/testfiles-graphic/tikz-009.tpf index 99cf0394c..bfc96aeab 100644 --- a/required/latex-lab/testfiles-graphic/tikz-009.tpf +++ b/required/latex-lab/testfiles-graphic/tikz-009.tpf @@ -475,7 +475,7 @@ endobj << /Kids [32 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 34 0 obj << /justify <> @@ -747,48 +747,48 @@ xref 0000014774 00000 n 0000014827 00000 n 0000014849 00000 n -0000017926 00000 n +0000018033 00000 n 0000014907 00000 n 0000015332 00000 n 0000000000 00000 f -0000016173 00000 n -0000016281 00000 n -0000016357 00000 n -0000016433 00000 n -0000016524 00000 n +0000016280 00000 n +0000016388 00000 n +0000016464 00000 n +0000016540 00000 n +0000016631 00000 n 0000014486 00000 n -0000016693 00000 n +0000016800 00000 n 0000000015 00000 n -0000016858 00000 n -0000016949 00000 n -0000017118 00000 n +0000016965 00000 n +0000017056 00000 n +0000017225 00000 n 0000000094 00000 n -0000017288 00000 n -0000017379 00000 n -0000017548 00000 n -0000017708 00000 n -0000017799 00000 n +0000017395 00000 n +0000017486 00000 n +0000017655 00000 n +0000017815 00000 n +0000017906 00000 n 0000000173 00000 n 0000014621 00000 n 0000012329 00000 n -0000031130 00000 n -0000031308 00000 n +0000031237 00000 n +0000031415 00000 n 0000014871 00000 n 0000015013 00000 n 0000015295 00000 n -0000016011 00000 n -0000028958 00000 n -0000018044 00000 n -0000018483 00000 n -0000028727 00000 n -0000029041 00000 n -0000031367 00000 n -0000031482 00000 n +0000016118 00000 n +0000029065 00000 n +0000018151 00000 n +0000018590 00000 n +0000028834 00000 n +0000029148 00000 n +0000031474 00000 n +0000031589 00000 n trailer << /Size 42 /Root 40 0 R /Info 41 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -31614 +31721 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/amsmath-mbox.tpf b/required/latex-lab/testfiles-math-luatex/amsmath-mbox.tpf index eca6f3755..f471b424c 100644 --- a/required/latex-lab/testfiles-math-luatex/amsmath-mbox.tpf +++ b/required/latex-lab/testfiles-math-luatex/amsmath-mbox.tpf @@ -184,7 +184,7 @@ endobj << /Kids [52 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 54 0 obj << /display <> @@ -203,7 +203,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -947,47 +947,47 @@ xref 0000004616 00000 n 0000004638 00000 n 0000004660 00000 n -0000008415 00000 n +0000008674 00000 n 0000004752 00000 n 0000005044 00000 n -0000007345 00000 n -0000005863 00000 n +0000007604 00000 n +0000005970 00000 n 0000000012 00000 f -0000005931 00000 n +0000006038 00000 n 0000000014 00000 f -0000006001 00000 n +0000006108 00000 n 0000000020 00000 f -0000006881 00000 n -0000006082 00000 n -0000007154 00000 n -0000006983 00000 n -0000007256 00000 n +0000007140 00000 n +0000006189 00000 n +0000007413 00000 n +0000007242 00000 n +0000007515 00000 n 0000000000 00000 f 0000001341 00000 n -0000007406 00000 n -0000007503 00000 n -0000007591 00000 n -0000007679 00000 n -0000007767 00000 n -0000007870 00000 n +0000007665 00000 n +0000007762 00000 n +0000007850 00000 n +0000007938 00000 n +0000008026 00000 n +0000008129 00000 n 0000000020 00000 n 0000000242 00000 n -0000008174 00000 n -0000008294 00000 n -0000008552 00000 n +0000008433 00000 n +0000008553 00000 n +0000008811 00000 n 0000001819 00000 n 0000000442 00000 n 0000001476 00000 n 0000001537 00000 n 0000001589 00000 n 0000001651 00000 n -0000051360 00000 n -0000053302 00000 n -0000055272 00000 n -0000022298 00000 n +0000051619 00000 n +0000053561 00000 n +0000055531 00000 n +0000022557 00000 n 0000001704 00000 n 0000001766 00000 n -0000055431 00000 n +0000055690 00000 n 0000001918 00000 n 0000002384 00000 n 0000002589 00000 n @@ -996,30 +996,30 @@ xref 0000004716 00000 n 0000004830 00000 n 0000005007 00000 n -0000005703 00000 n -0000020729 00000 n -0000021351 00000 n -0000020761 00000 n -0000021572 00000 n -0000022452 00000 n -0000022652 00000 n -0000022753 00000 n -0000022830 00000 n -0000030653 00000 n -0000022861 00000 n -0000038705 00000 n -0000030861 00000 n -0000049509 00000 n -0000038910 00000 n -0000049717 00000 n -0000051518 00000 n -0000053459 00000 n -0000055493 00000 n -0000055614 00000 n -0000055650 00000 n -0000055900 00000 n +0000005810 00000 n +0000020988 00000 n +0000021610 00000 n +0000021020 00000 n +0000021831 00000 n +0000022711 00000 n +0000022911 00000 n +0000023012 00000 n +0000023089 00000 n +0000030912 00000 n +0000023120 00000 n +0000038964 00000 n +0000031120 00000 n +0000049768 00000 n +0000039169 00000 n +0000049976 00000 n +0000051777 00000 n +0000053718 00000 n +0000055752 00000 n +0000055873 00000 n +0000055909 00000 n +0000056159 00000 n trailer << /Size 76 /Root 74 0 R /Info 75 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -56109 +56368 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/array.tpf b/required/latex-lab/testfiles-math-luatex/array.tpf index 516e213ca..84099249a 100644 --- a/required/latex-lab/testfiles-math-luatex/array.tpf +++ b/required/latex-lab/testfiles-math-luatex/array.tpf @@ -158,7 +158,7 @@ endobj << /Kids [74 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 76 0 obj << /justify <> @@ -178,7 +178,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -672,93 +672,93 @@ xref 0000003131 00000 n 0000003153 00000 n 0000003175 00000 n -0000010512 00000 n +0000010771 00000 n 0000003281 00000 n 0000004089 00000 n -0000006431 00000 n -0000004949 00000 n +0000006690 00000 n +0000005056 00000 n 0000000012 00000 f -0000005017 00000 n +0000005124 00000 n 0000000014 00000 f -0000005087 00000 n +0000005194 00000 n 0000000020 00000 f -0000005967 00000 n -0000005168 00000 n -0000006240 00000 n -0000006069 00000 n -0000006342 00000 n +0000006226 00000 n +0000005275 00000 n +0000006499 00000 n +0000006328 00000 n +0000006601 00000 n 0000000000 00000 f -0000006492 00000 n +0000006751 00000 n 0000000020 00000 n 0000000850 00000 n -0000006590 00000 n -0000006679 00000 n -0000006768 00000 n -0000006857 00000 n -0000006961 00000 n -0000007078 00000 n +0000006849 00000 n +0000006938 00000 n +0000007027 00000 n +0000007116 00000 n +0000007220 00000 n +0000007337 00000 n 0000001037 00000 n 0000001287 00000 n -0000007306 00000 n -0000007400 00000 n -0000007521 00000 n -0000007625 00000 n -0000007746 00000 n -0000007850 00000 n -0000007971 00000 n -0000008074 00000 n -0000008195 00000 n -0000008316 00000 n -0000008402 00000 n -0000008496 00000 n -0000008599 00000 n -0000008720 00000 n -0000008841 00000 n -0000008927 00000 n -0000009021 00000 n -0000009124 00000 n -0000009245 00000 n -0000009366 00000 n -0000009452 00000 n -0000009546 00000 n -0000009640 00000 n -0000009762 00000 n -0000009848 00000 n -0000009942 00000 n -0000010053 00000 n +0000007565 00000 n +0000007659 00000 n +0000007780 00000 n +0000007884 00000 n +0000008005 00000 n +0000008109 00000 n +0000008230 00000 n +0000008333 00000 n +0000008454 00000 n +0000008575 00000 n +0000008661 00000 n +0000008755 00000 n +0000008858 00000 n +0000008979 00000 n +0000009100 00000 n +0000009186 00000 n +0000009280 00000 n +0000009383 00000 n +0000009504 00000 n +0000009625 00000 n +0000009711 00000 n +0000009805 00000 n +0000009899 00000 n +0000010021 00000 n +0000010107 00000 n +0000010201 00000 n +0000010312 00000 n 0000001487 00000 n -0000010151 00000 n -0000010248 00000 n +0000010410 00000 n +0000010507 00000 n 0000001541 00000 n 0000001598 00000 n -0000010414 00000 n -0000010649 00000 n +0000010673 00000 n +0000010908 00000 n 0000003009 00000 n 0000002874 00000 n 0000001656 00000 n -0000027429 00000 n -0000024441 00000 n -0000027795 00000 n +0000027688 00000 n +0000024700 00000 n +0000028054 00000 n 0000003197 00000 n 0000003233 00000 n 0000003401 00000 n 0000004052 00000 n -0000004748 00000 n -0000022805 00000 n -0000023494 00000 n -0000022836 00000 n -0000023715 00000 n -0000024595 00000 n -0000024795 00000 n -0000026369 00000 n -0000024880 00000 n -0000026597 00000 n -0000027589 00000 n -0000027857 00000 n -0000027901 00000 n -0000028030 00000 n +0000004855 00000 n +0000023064 00000 n +0000023753 00000 n +0000023095 00000 n +0000023974 00000 n +0000024854 00000 n +0000025054 00000 n +0000026628 00000 n +0000025139 00000 n +0000026856 00000 n +0000027848 00000 n +0000028116 00000 n +0000028160 00000 n +0000028289 00000 n trailer << /Size 90 /Root 88 0 R /Info 89 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -28162 +28421 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/fakemath.tpf b/required/latex-lab/testfiles-math-luatex/fakemath.tpf index bcb0fa531..cb6e1e939 100644 --- a/required/latex-lab/testfiles-math-luatex/fakemath.tpf +++ b/required/latex-lab/testfiles-math-luatex/fakemath.tpf @@ -189,7 +189,7 @@ endobj << /Kids [77 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj 79 0 obj << /justify <> @@ -210,7 +210,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1177,102 +1177,102 @@ xref 0000004417 00000 n 0000004439 00000 n 0000004461 00000 n -0000011256 00000 n +0000011515 00000 n 0000004585 00000 n 0000005279 00000 n -0000007673 00000 n -0000006191 00000 n +0000007932 00000 n +0000006298 00000 n 0000000012 00000 f -0000006259 00000 n +0000006366 00000 n 0000000014 00000 f -0000006329 00000 n +0000006436 00000 n 0000000020 00000 f -0000007209 00000 n -0000006410 00000 n -0000007482 00000 n -0000007311 00000 n -0000007584 00000 n +0000007468 00000 n +0000006517 00000 n +0000007741 00000 n +0000007570 00000 n +0000007843 00000 n 0000000000 00000 f -0000007734 00000 n +0000007993 00000 n 0000000020 00000 n 0000000299 00000 n 0000000486 00000 n 0000001119 00000 n -0000007848 00000 n -0000007937 00000 n -0000008026 00000 n -0000008115 00000 n -0000008219 00000 n -0000008360 00000 n -0000008464 00000 n -0000008581 00000 n +0000008107 00000 n +0000008196 00000 n +0000008285 00000 n +0000008374 00000 n +0000008478 00000 n +0000008619 00000 n +0000008723 00000 n +0000008840 00000 n 0000001306 00000 n 0000001454 00000 n -0000008808 00000 n -0000008919 00000 n -0000009040 00000 n +0000009067 00000 n +0000009178 00000 n +0000009299 00000 n 0000001654 00000 n -0000009172 00000 n -0000009293 00000 n -0000009397 00000 n +0000009431 00000 n +0000009552 00000 n +0000009656 00000 n 0000001725 00000 n 0000001911 00000 n -0000009574 00000 n -0000009699 00000 n +0000009833 00000 n +0000009958 00000 n 0000002111 00000 n -0000009805 00000 n +0000010064 00000 n 0000002165 00000 n -0000009913 00000 n -0000010016 00000 n +0000010172 00000 n +0000010275 00000 n 0000002252 00000 n -0000010121 00000 n +0000010380 00000 n 0000002315 00000 n -0000010277 00000 n -0000010362 00000 n -0000010483 00000 n +0000010536 00000 n +0000010621 00000 n +0000010742 00000 n 0000002376 00000 n -0000010615 00000 n +0000010874 00000 n 0000002441 00000 n -0000010747 00000 n -0000010868 00000 n +0000011006 00000 n +0000011127 00000 n 0000002512 00000 n -0000011001 00000 n -0000011123 00000 n -0000011393 00000 n +0000011260 00000 n +0000011382 00000 n +0000011652 00000 n 0000004271 00000 n 0000004136 00000 n 0000002587 00000 n -0000067245 00000 n -0000069005 00000 n -0000065302 00000 n -0000063501 00000 n -0000069164 00000 n +0000067504 00000 n +0000069264 00000 n +0000065561 00000 n +0000063760 00000 n +0000069423 00000 n 0000004483 00000 n 0000004519 00000 n 0000004719 00000 n 0000005242 00000 n -0000005951 00000 n -0000023552 00000 n -0000023577 00000 n -0000023666 00000 n -0000023873 00000 n -0000031452 00000 n -0000023950 00000 n -0000040152 00000 n -0000031656 00000 n -0000048204 00000 n -0000040360 00000 n -0000059984 00000 n -0000048409 00000 n -0000060188 00000 n -0000063659 00000 n -0000065461 00000 n -0000067402 00000 n -0000069226 00000 n -0000069270 00000 n -0000069399 00000 n +0000006058 00000 n +0000023811 00000 n +0000023836 00000 n +0000023925 00000 n +0000024132 00000 n +0000031711 00000 n +0000024209 00000 n +0000040411 00000 n +0000031915 00000 n +0000048463 00000 n +0000040619 00000 n +0000060243 00000 n +0000048668 00000 n +0000060447 00000 n +0000063918 00000 n +0000065720 00000 n +0000067661 00000 n +0000069485 00000 n +0000069529 00000 n +0000069658 00000 n trailer << /Size 99 /Root 97 0 R /Info 98 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -69531 +69790 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-align-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-align-pdf.tpf index d4c3d734f..f79cfd26b 100644 --- a/required/latex-lab/testfiles-math-luatex/label-align-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-align-pdf.tpf @@ -97,28 +97,34 @@ endobj << /Type /Filespec /AFRelationship /Source /Desc (TeX source) /F (tag-AFfile5.tex) /UF /EF<> >> endobj 211 0 obj -<< /Length 6453 >> +<< /Length 6548 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F34 14.3462 Tf -1 0 0 1 133.768 657.235 Tm [<00520067>]TJ +1 0 0 1 133.768 657.235 Tm [<0052>]TJ ET EMC /section<> BDC BT /F34 14.3462 Tf +1 0 0 1 141.845 657.235 Tm [<0067>-625<0067>]TJ +ET +EMC +/section<> BDC +BT +/F34 14.3462 Tf 1 0 0 1 156.191 657.235 Tm [<001C0023>-31<002B>]TJ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.354 625.442 Tm [<0510>]TJ @@ -126,7 +132,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 625.442 Tm [<0510>]TJ @@ -134,7 +140,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 625.442 Tm [<005500520056>]TJ @@ -142,9 +148,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.21 610.498 Tm [<0511>]TJ @@ -152,7 +158,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 610.498 Tm [<0511>]TJ @@ -160,7 +166,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 610.498 Tm [<0055006B0056>]TJ @@ -168,9 +174,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.533 566.662 Tm [<0510>]TJ @@ -178,7 +184,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 566.662 Tm [<0510>]TJ @@ -186,7 +192,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 566.662 Tm [<0055006A0056>]TJ @@ -194,9 +200,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.39 551.718 Tm [<0511>]TJ @@ -204,7 +210,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 551.718 Tm [<0511>]TJ @@ -212,7 +218,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 551.718 Tm [<005500390056>]TJ @@ -220,9 +226,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.24 536.774 Tm [<0512>]TJ @@ -230,7 +236,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 536.774 Tm [<0512>]TJ @@ -238,7 +244,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.384 521.83 Tm [<0513>]TJ @@ -246,7 +252,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 521.83 Tm [<0513>]TJ @@ -254,7 +260,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 521.83 Tm [<005500380056>]TJ @@ -262,9 +268,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.161 506.886 Tm [<0514>]TJ @@ -272,7 +278,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 506.886 Tm [<0514>]TJ @@ -280,7 +286,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 449.245 506.886 Tm [<0055002F006D002B>28<00460056>]TJ @@ -288,9 +294,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.025 491.942 Tm [<0515>]TJ @@ -298,7 +304,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 453.788 491.942 Tm [<0055002200A000600056>]TJ @@ -306,9 +312,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.802 476.998 Tm [<0516>]TJ @@ -316,7 +322,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 476.998 Tm [<005500650056>]TJ @@ -324,9 +330,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.354 433.163 Tm [<0510>]TJ @@ -334,7 +340,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 433.163 Tm [<0510>]TJ @@ -342,7 +348,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.21 418.219 Tm [<0511>]TJ @@ -350,7 +356,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 418.219 Tm [<0511>]TJ @@ -358,9 +364,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.354 374.383 Tm [<0510>]TJ @@ -368,7 +374,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 374.383 Tm [<0510>]TJ @@ -376,7 +382,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.21 359.439 Tm [<0511>]TJ @@ -384,7 +390,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 359.439 Tm [<0511>]TJ @@ -392,7 +398,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 449.245 359.439 Tm [<0055002F006D002B>28<00460056>]TJ @@ -400,9 +406,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.061 344.495 Tm [<0512>]TJ @@ -410,7 +416,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.624 344.495 Tm [<0512>]TJ @@ -418,9 +424,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.533 300.66 Tm [<0510>]TJ @@ -428,7 +434,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 300.66 Tm [<0510>]TJ @@ -436,7 +442,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 300.66 Tm [<005500640056>]TJ @@ -444,9 +450,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.39 285.716 Tm [<0511>]TJ @@ -454,7 +460,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 285.716 Tm [<0511>]TJ @@ -462,7 +468,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 285.716 Tm [<005500330056>]TJ @@ -470,9 +476,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.24 270.772 Tm [<0512>]TJ @@ -480,7 +486,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 270.772 Tm [<0512>]TJ @@ -488,7 +494,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.384 255.828 Tm [<0513>]TJ @@ -496,7 +502,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 255.828 Tm [<0513>]TJ @@ -504,7 +510,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 255.828 Tm [<0055004E0056>]TJ @@ -512,9 +518,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.161 240.884 Tm [<0514>]TJ @@ -522,7 +528,7 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 305.803 240.884 Tm [<0514>]TJ @@ -530,7 +536,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 449.245 240.884 Tm [<0055002F006D002B>28<00460056>]TJ @@ -538,9 +544,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.025 225.94 Tm [<0515>]TJ @@ -548,7 +554,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 453.788 225.94 Tm [<0055002200A000600056>]TJ @@ -556,9 +562,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 300.802 210.996 Tm [<0516>]TJ @@ -566,7 +572,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 459.766 210.996 Tm [<0055005200790056>]TJ @@ -609,7 +615,7 @@ endobj << /Names[(l3ef0001) 23 0 R (l3ef0002) 25 0 R (l3ef0003) 27 0 R (l3ef0004) 29 0 R] >> endobj 6 0 obj -<< /Nums [0 [ 35 0 R 34 0 R 37 0 R 41 0 R 43 0 R 44 0 R 37 0 R 46 0 R 48 0 R 49 0 R 61 0 R 65 0 R 67 0 R 68 0 R 61 0 R 70 0 R 72 0 R 73 0 R 61 0 R 75 0 R 77 0 R 79 0 R 81 0 R 82 0 R 61 0 R 84 0 R 86 0 R 87 0 R 61 0 R 89 0 R 91 0 R 61 0 R 93 0 R 95 0 R 114 0 R 118 0 R 120 0 R 122 0 R 124 0 R 132 0 R 136 0 R 138 0 R 140 0 R 142 0 R 143 0 R 132 0 R 145 0 R 147 0 R 157 0 R 161 0 R 163 0 R 164 0 R 157 0 R 166 0 R 168 0 R 169 0 R 157 0 R 171 0 R 173 0 R 175 0 R 177 0 R 178 0 R 157 0 R 180 0 R 182 0 R 183 0 R 157 0 R 185 0 R 187 0 R 157 0 R 189 0 R 191 0 R] +<< /Nums [0 [ 35 0 R 34 0 R 34 0 R 37 0 R 41 0 R 43 0 R 44 0 R 37 0 R 46 0 R 48 0 R 49 0 R 61 0 R 65 0 R 67 0 R 68 0 R 61 0 R 70 0 R 72 0 R 73 0 R 61 0 R 75 0 R 77 0 R 79 0 R 81 0 R 82 0 R 61 0 R 84 0 R 86 0 R 87 0 R 61 0 R 89 0 R 91 0 R 61 0 R 93 0 R 95 0 R 114 0 R 118 0 R 120 0 R 122 0 R 124 0 R 132 0 R 136 0 R 138 0 R 140 0 R 142 0 R 143 0 R 132 0 R 145 0 R 147 0 R 157 0 R 161 0 R 163 0 R 164 0 R 157 0 R 166 0 R 168 0 R 169 0 R 157 0 R 171 0 R 173 0 R 175 0 R 177 0 R 178 0 R 157 0 R 180 0 R 182 0 R 183 0 R 157 0 R 185 0 R 187 0 R 157 0 R 189 0 R 191 0 R] ] >> endobj 218 0 obj @@ -628,7 +634,7 @@ endobj << /Kids [218 0 R 219 0 R 220 0 R 221 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 223 0 obj << /display <> @@ -647,7 +653,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -680,46 +686,46 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [34 0 R 36 0 R 60 0 R 113 0 R 131 0 R 156 0 R] /ID (ID.0006) >> endobj 34 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 33 0 R /K [35 0 R <> ] /ID (ID.0007) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 33 0 R /K [35 0 R <> <> ] /ID (ID.0007) >> endobj 35 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 34 0 R /K <> /ID (ID.0008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 34 0 R /K <> /ID (ID.0008) >> endobj 36 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 37 0 R /ID (ID.0009) >> endobj 37 0 obj -<< /Type /StructElem /C /display /AF [23 0 R 39 0 R] /T /S /Formula /NS 11 0 R /P 36 0 R /K [<> <> 50 0 R ] /ID (ID.0010) >> +<< /Type /StructElem /C /display /AF [23 0 R 39 0 R] /T /S /Formula /NS 11 0 R /P 36 0 R /K [<> <> 50 0 R ] /ID (ID.0010) >> endobj 40 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 54 0 R /K 41 0 R /ID (ID.0011) >> endobj 41 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 40 0 R /K <> /ID (ID.0012) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 40 0 R /K <> /ID (ID.0012) >> endobj 42 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 54 0 R /K 43 0 R /ID (ID.0013) >> endobj 43 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 42 0 R /K <> /ID (ID.0014) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 42 0 R /K <> /ID (ID.0014) >> endobj 44 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 55 0 R /K <> /ID (ID.0015) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 55 0 R /K <> /ID (ID.0015) >> endobj 45 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 58 0 R /K 46 0 R /ID (ID.0016) >> endobj 46 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 45 0 R /K <> /ID (ID.0017) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 45 0 R /K <> /ID (ID.0017) >> endobj 47 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 58 0 R /K 48 0 R /ID (ID.0018) >> endobj 48 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 47 0 R /K <> /ID (ID.0019) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 47 0 R /K <> /ID (ID.0019) >> endobj 49 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 59 0 R /K <> /ID (ID.0020) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 59 0 R /K <> /ID (ID.0020) >> endobj 50 0 obj << /Type /StructElem /A 51 0 R /S /math /NS 13 0 R /P 37 0 R /K 52 0 R /ID (ID.0021) >> @@ -743,103 +749,103 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 61 0 R /ID (ID.0027) >> endobj 61 0 obj -<< /Type /StructElem /C /display /AF [25 0 R 63 0 R] /T /S /Formula /NS 11 0 R /P 60 0 R /K [<> <> <> <> <> <> 96 0 R ] /ID (ID.0028) >> +<< /Type /StructElem /C /display /AF [25 0 R 63 0 R] /T /S /Formula /NS 11 0 R /P 60 0 R /K [<> <> <> <> <> <> 96 0 R ] /ID (ID.0028) >> endobj 64 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 98 0 R /K 65 0 R /ID (ID.0029) >> endobj 65 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 64 0 R /K <> /ID (ID.0030) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 64 0 R /K <> /ID (ID.0030) >> endobj 66 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 98 0 R /K 67 0 R /ID (ID.0031) >> endobj 67 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 66 0 R /K <> /ID (ID.0032) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 66 0 R /K <> /ID (ID.0032) >> endobj 68 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 99 0 R /K <> /ID (ID.0033) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 99 0 R /K <> /ID (ID.0033) >> endobj 69 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 100 0 R /K 70 0 R /ID (ID.0034) >> endobj 70 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 69 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 69 0 R /K <> /ID (ID.0035) >> endobj 71 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 100 0 R /K 72 0 R /ID (ID.0036) >> endobj 72 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 71 0 R /K <> /ID (ID.0037) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 71 0 R /K <> /ID (ID.0037) >> endobj 73 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 101 0 R /K <> /ID (ID.0038) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 101 0 R /K <> /ID (ID.0038) >> endobj 74 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 102 0 R /K 75 0 R /ID (ID.0039) >> endobj 75 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 74 0 R /K <> /ID (ID.0040) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 74 0 R /K <> /ID (ID.0040) >> endobj 76 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 102 0 R /K 77 0 R /ID (ID.0041) >> endobj 77 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 76 0 R /K <> /ID (ID.0042) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 76 0 R /K <> /ID (ID.0042) >> endobj 78 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 105 0 R /K 79 0 R /ID (ID.0043) >> endobj 79 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 78 0 R /K <> /ID (ID.0044) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 78 0 R /K <> /ID (ID.0044) >> endobj 80 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 105 0 R /K 81 0 R /ID (ID.0045) >> endobj 81 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 80 0 R /K <> /ID (ID.0046) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 80 0 R /K <> /ID (ID.0046) >> endobj 82 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 106 0 R /K <> /ID (ID.0047) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 106 0 R /K <> /ID (ID.0047) >> endobj 83 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 107 0 R /K 84 0 R /ID (ID.0048) >> endobj 84 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 83 0 R /K <> /ID (ID.0049) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 83 0 R /K <> /ID (ID.0049) >> endobj 85 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 107 0 R /K 86 0 R /ID (ID.0050) >> endobj 86 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 85 0 R /K <> /ID (ID.0051) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 85 0 R /K <> /ID (ID.0051) >> endobj 87 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 108 0 R /K <> /ID (ID.0052) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 108 0 R /K <> /ID (ID.0052) >> endobj 88 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 109 0 R /K 89 0 R /ID (ID.0053) >> endobj 89 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 88 0 R /K <> /ID (ID.0054) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 88 0 R /K <> /ID (ID.0054) >> endobj 90 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 109 0 R /ID (ID.0055) >> endobj 91 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 110 0 R /K <> /ID (ID.0056) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 110 0 R /K <> /ID (ID.0056) >> endobj 92 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 111 0 R /K 93 0 R /ID (ID.0057) >> endobj 93 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 92 0 R /K <> /ID (ID.0058) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 92 0 R /K <> /ID (ID.0058) >> endobj 94 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 111 0 R /ID (ID.0059) >> endobj 95 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 112 0 R /K <> /ID (ID.0060) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 112 0 R /K <> /ID (ID.0060) >> endobj 96 0 obj << /Type /StructElem /A 51 0 R /S /math /NS 13 0 R /P 61 0 R /K 97 0 R /ID (ID.0061) >> @@ -893,31 +899,31 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 114 0 R /ID (ID.0077) >> endobj 114 0 obj -<< /Type /StructElem /C /display /AF [27 0 R 116 0 R] /T /S /Formula /NS 11 0 R /P 113 0 R /K [<> 125 0 R ] /ID (ID.0078) >> +<< /Type /StructElem /C /display /AF [27 0 R 116 0 R] /T /S /Formula /NS 11 0 R /P 113 0 R /K [<> 125 0 R ] /ID (ID.0078) >> endobj 117 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 127 0 R /K 118 0 R /ID (ID.0079) >> endobj 118 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 117 0 R /K <> /ID (ID.0080) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 117 0 R /K <> /ID (ID.0080) >> endobj 119 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 127 0 R /K 120 0 R /ID (ID.0081) >> endobj 120 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 119 0 R /K <> /ID (ID.0082) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 119 0 R /K <> /ID (ID.0082) >> endobj 121 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 129 0 R /K 122 0 R /ID (ID.0083) >> endobj 122 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 121 0 R /K <> /ID (ID.0084) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 121 0 R /K <> /ID (ID.0084) >> endobj 123 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 129 0 R /K 124 0 R /ID (ID.0085) >> endobj 124 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 123 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 123 0 R /K <> /ID (ID.0086) >> endobj 125 0 obj << /Type /StructElem /A 51 0 R /S /math /NS 13 0 R /P 114 0 R /K 126 0 R /ID (ID.0087) >> @@ -941,46 +947,46 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 132 0 R /ID (ID.0093) >> endobj 132 0 obj -<< /Type /StructElem /C /display /AF [29 0 R 134 0 R] /T /S /Formula /NS 11 0 R /P 131 0 R /K [<> <> 148 0 R ] /ID (ID.0094) >> +<< /Type /StructElem /C /display /AF [29 0 R 134 0 R] /T /S /Formula /NS 11 0 R /P 131 0 R /K [<> <> 148 0 R ] /ID (ID.0094) >> endobj 135 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 150 0 R /K 136 0 R /ID (ID.0095) >> endobj 136 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 135 0 R /K <> /ID (ID.0096) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 135 0 R /K <> /ID (ID.0096) >> endobj 137 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 150 0 R /K 138 0 R /ID (ID.0097) >> endobj 138 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 137 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 137 0 R /K <> /ID (ID.0098) >> endobj 139 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 152 0 R /K 140 0 R /ID (ID.0099) >> endobj 140 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 139 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 139 0 R /K <> /ID (ID.0100) >> endobj 141 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 152 0 R /K 142 0 R /ID (ID.0101) >> endobj 142 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 141 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 141 0 R /K <> /ID (ID.0102) >> endobj 143 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 153 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 153 0 R /K <> /ID (ID.0103) >> endobj 144 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 154 0 R /K 145 0 R /ID (ID.0104) >> endobj 145 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 144 0 R /K <> /ID (ID.0105) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 144 0 R /K <> /ID (ID.0105) >> endobj 146 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 154 0 R /K 147 0 R /ID (ID.0106) >> endobj 147 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 146 0 R /K <> /ID (ID.0107) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 146 0 R /K <> /ID (ID.0107) >> endobj 148 0 obj << /Type /StructElem /A 51 0 R /S /math /NS 13 0 R /P 132 0 R /K 149 0 R /ID (ID.0108) >> @@ -1010,103 +1016,103 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 33 0 R /K 157 0 R /ID (ID.0116) >> endobj 157 0 obj -<< /Type /StructElem /C /display /AF [25 0 R 159 0 R] /T /S /Formula /NS 11 0 R /P 156 0 R /K [<> <> <> <> <> <> 192 0 R ] /ID (ID.0117) >> +<< /Type /StructElem /C /display /AF [25 0 R 159 0 R] /T /S /Formula /NS 11 0 R /P 156 0 R /K [<> <> <> <> <> <> 192 0 R ] /ID (ID.0117) >> endobj 160 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 194 0 R /K 161 0 R /ID (ID.0118) >> endobj 161 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 160 0 R /K <> /ID (ID.0119) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 160 0 R /K <> /ID (ID.0119) >> endobj 162 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 194 0 R /K 163 0 R /ID (ID.0120) >> endobj 163 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 162 0 R /K <> /ID (ID.0121) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 162 0 R /K <> /ID (ID.0121) >> endobj 164 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 195 0 R /K <> /ID (ID.0122) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 195 0 R /K <> /ID (ID.0122) >> endobj 165 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 196 0 R /K 166 0 R /ID (ID.0123) >> endobj 166 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 165 0 R /K <> /ID (ID.0124) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 165 0 R /K <> /ID (ID.0124) >> endobj 167 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 196 0 R /K 168 0 R /ID (ID.0125) >> endobj 168 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 167 0 R /K <> /ID (ID.0126) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 167 0 R /K <> /ID (ID.0126) >> endobj 169 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 197 0 R /K <> /ID (ID.0127) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 197 0 R /K <> /ID (ID.0127) >> endobj 170 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 198 0 R /K 171 0 R /ID (ID.0128) >> endobj 171 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 170 0 R /K <> /ID (ID.0129) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 170 0 R /K <> /ID (ID.0129) >> endobj 172 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 198 0 R /K 173 0 R /ID (ID.0130) >> endobj 173 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 172 0 R /K <> /ID (ID.0131) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 172 0 R /K <> /ID (ID.0131) >> endobj 174 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 200 0 R /K 175 0 R /ID (ID.0132) >> endobj 175 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 174 0 R /K <> /ID (ID.0133) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 174 0 R /K <> /ID (ID.0133) >> endobj 176 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 200 0 R /K 177 0 R /ID (ID.0134) >> endobj 177 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 176 0 R /K <> /ID (ID.0135) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 176 0 R /K <> /ID (ID.0135) >> endobj 178 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 201 0 R /K <> /ID (ID.0136) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 201 0 R /K <> /ID (ID.0136) >> endobj 179 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 202 0 R /K 180 0 R /ID (ID.0137) >> endobj 180 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 179 0 R /K <> /ID (ID.0138) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 179 0 R /K <> /ID (ID.0138) >> endobj 181 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 202 0 R /K 182 0 R /ID (ID.0139) >> endobj 182 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 181 0 R /K <> /ID (ID.0140) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 181 0 R /K <> /ID (ID.0140) >> endobj 183 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 203 0 R /K <> /ID (ID.0141) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 203 0 R /K <> /ID (ID.0141) >> endobj 184 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 204 0 R /K 185 0 R /ID (ID.0142) >> endobj 185 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 184 0 R /K <> /ID (ID.0143) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 184 0 R /K <> /ID (ID.0143) >> endobj 186 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 204 0 R /ID (ID.0144) >> endobj 187 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 205 0 R /K <> /ID (ID.0145) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 205 0 R /K <> /ID (ID.0145) >> endobj 188 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 57 0 R /P 206 0 R /K 189 0 R /ID (ID.0146) >> endobj 189 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 188 0 R /K <> /ID (ID.0147) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 188 0 R /K <> /ID (ID.0147) >> endobj 190 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 206 0 R /ID (ID.0148) >> endobj 191 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 207 0 R /K <> /ID (ID.0149) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 207 0 R /K <> /ID (ID.0149) >> endobj 192 0 obj << /Type /StructElem /A 51 0 R /S /math /NS 13 0 R /P 157 0 R /K 193 0 R /ID (ID.0150) >> @@ -1592,27 +1598,27 @@ endobj xref 0 242 0000000010 65535 f -0000013361 00000 n -0000013408 00000 n -0000013430 00000 n -0000013452 00000 n -0000039324 00000 n -0000013614 00000 n -0000017392 00000 n -0000019694 00000 n -0000018212 00000 n +0000013456 00000 n +0000013503 00000 n +0000013525 00000 n +0000013547 00000 n +0000039722 00000 n +0000013709 00000 n +0000017494 00000 n +0000020055 00000 n +0000018421 00000 n 0000000012 00000 f -0000018280 00000 n +0000018489 00000 n 0000000014 00000 f -0000018350 00000 n +0000018559 00000 n 0000000020 00000 f -0000019230 00000 n -0000018431 00000 n -0000019503 00000 n -0000019332 00000 n -0000019605 00000 n +0000019591 00000 n +0000018640 00000 n +0000019864 00000 n +0000019693 00000 n +0000019966 00000 n 0000000000 00000 f -0000019755 00000 n +0000020116 00000 n 0000000020 00000 n 0000000673 00000 n 0000000860 00000 n @@ -1621,220 +1627,220 @@ xref 0000003007 00000 n 0000003194 00000 n 0000003961 00000 n -0000019854 00000 n -0000019944 00000 n -0000020034 00000 n -0000020124 00000 n -0000020260 00000 n -0000020419 00000 n -0000020554 00000 n -0000020659 00000 n +0000020215 00000 n +0000020305 00000 n +0000020395 00000 n +0000020485 00000 n +0000020621 00000 n +0000020816 00000 n +0000020951 00000 n +0000021056 00000 n 0000004148 00000 n 0000004330 00000 n -0000020896 00000 n -0000021001 00000 n -0000021124 00000 n -0000021219 00000 n -0000021342 00000 n -0000021468 00000 n -0000021573 00000 n -0000021696 00000 n -0000021791 00000 n -0000021914 00000 n -0000022040 00000 n +0000021293 00000 n +0000021398 00000 n +0000021521 00000 n +0000021616 00000 n +0000021739 00000 n +0000021865 00000 n +0000021970 00000 n +0000022093 00000 n +0000022188 00000 n +0000022311 00000 n +0000022438 00000 n 0000004530 00000 n -0000022147 00000 n +0000022545 00000 n 0000004584 00000 n -0000022265 00000 n -0000022376 00000 n +0000022663 00000 n +0000022774 00000 n 0000004732 00000 n 0000004795 00000 n -0000022482 00000 n -0000022593 00000 n -0000022699 00000 n -0000022804 00000 n +0000022880 00000 n +0000022991 00000 n +0000023097 00000 n +0000023202 00000 n 0000004856 00000 n 0000005103 00000 n -0000023191 00000 n -0000023296 00000 n -0000023420 00000 n -0000023515 00000 n -0000023639 00000 n -0000023766 00000 n -0000023872 00000 n -0000023996 00000 n -0000024092 00000 n -0000024216 00000 n -0000024344 00000 n -0000024450 00000 n -0000024574 00000 n -0000024670 00000 n -0000024794 00000 n -0000024900 00000 n -0000025024 00000 n -0000025120 00000 n -0000025244 00000 n -0000025372 00000 n -0000025478 00000 n -0000025602 00000 n -0000025698 00000 n -0000025822 00000 n -0000025950 00000 n -0000026056 00000 n -0000026180 00000 n -0000026266 00000 n -0000026394 00000 n -0000026500 00000 n -0000026624 00000 n -0000026710 00000 n -0000026838 00000 n -0000026945 00000 n -0000027104 00000 n -0000027215 00000 n -0000027321 00000 n -0000027434 00000 n -0000027542 00000 n -0000027655 00000 n +0000023589 00000 n +0000023694 00000 n +0000023818 00000 n +0000023913 00000 n +0000024037 00000 n +0000024164 00000 n +0000024270 00000 n +0000024394 00000 n +0000024490 00000 n +0000024614 00000 n +0000024742 00000 n +0000024848 00000 n +0000024972 00000 n +0000025068 00000 n +0000025192 00000 n +0000025298 00000 n +0000025422 00000 n +0000025518 00000 n +0000025642 00000 n +0000025770 00000 n +0000025876 00000 n +0000026000 00000 n +0000026096 00000 n +0000026220 00000 n +0000026348 00000 n +0000026454 00000 n +0000026578 00000 n +0000026664 00000 n +0000026792 00000 n +0000026898 00000 n +0000027022 00000 n +0000027108 00000 n +0000027236 00000 n +0000027343 00000 n +0000027502 00000 n +0000027613 00000 n +0000027719 00000 n +0000027832 00000 n +0000027940 00000 n +0000028053 00000 n 0000005303 00000 n -0000027754 00000 n -0000027867 00000 n -0000027975 00000 n -0000028088 00000 n -0000028196 00000 n -0000028309 00000 n -0000028417 00000 n -0000028530 00000 n -0000028638 00000 n -0000028745 00000 n +0000028152 00000 n +0000028265 00000 n +0000028373 00000 n +0000028486 00000 n +0000028594 00000 n +0000028707 00000 n +0000028815 00000 n +0000028928 00000 n +0000029036 00000 n +0000029143 00000 n 0000005370 00000 n 0000005555 00000 n -0000028954 00000 n -0000029062 00000 n -0000029188 00000 n -0000029286 00000 n -0000029412 00000 n -0000029520 00000 n -0000029646 00000 n -0000029744 00000 n -0000029870 00000 n -0000029980 00000 n -0000030102 00000 n -0000030218 00000 n -0000030317 00000 n -0000030433 00000 n -0000030532 00000 n -0000030639 00000 n +0000029352 00000 n +0000029460 00000 n +0000029586 00000 n +0000029684 00000 n +0000029810 00000 n +0000029918 00000 n +0000030044 00000 n +0000030142 00000 n +0000030268 00000 n +0000030378 00000 n +0000030500 00000 n +0000030616 00000 n +0000030715 00000 n +0000030831 00000 n +0000030930 00000 n +0000031037 00000 n 0000005758 00000 n 0000005963 00000 n -0000030885 00000 n -0000030993 00000 n -0000031119 00000 n -0000031217 00000 n -0000031343 00000 n -0000031451 00000 n -0000031577 00000 n -0000031675 00000 n -0000031801 00000 n -0000031930 00000 n -0000032038 00000 n -0000032164 00000 n -0000032262 00000 n -0000032388 00000 n -0000032498 00000 n -0000032628 00000 n -0000032744 00000 n -0000032843 00000 n -0000032959 00000 n -0000033068 00000 n -0000033184 00000 n -0000033283 00000 n -0000033390 00000 n +0000031283 00000 n +0000031391 00000 n +0000031517 00000 n +0000031615 00000 n +0000031741 00000 n +0000031849 00000 n +0000031975 00000 n +0000032073 00000 n +0000032199 00000 n +0000032328 00000 n +0000032436 00000 n +0000032562 00000 n +0000032660 00000 n +0000032786 00000 n +0000032896 00000 n +0000033026 00000 n +0000033142 00000 n +0000033241 00000 n +0000033357 00000 n +0000033466 00000 n +0000033582 00000 n +0000033681 00000 n +0000033788 00000 n 0000006166 00000 n 0000006414 00000 n -0000033781 00000 n -0000033889 00000 n -0000034015 00000 n -0000034113 00000 n -0000034239 00000 n -0000034368 00000 n -0000034476 00000 n -0000034602 00000 n -0000034700 00000 n -0000034826 00000 n -0000034955 00000 n -0000035063 00000 n -0000035189 00000 n -0000035287 00000 n -0000035413 00000 n -0000035521 00000 n -0000035647 00000 n -0000035745 00000 n -0000035871 00000 n -0000036000 00000 n -0000036108 00000 n -0000036234 00000 n -0000036332 00000 n -0000036458 00000 n -0000036587 00000 n -0000036695 00000 n -0000036821 00000 n -0000036908 00000 n -0000037037 00000 n -0000037145 00000 n -0000037271 00000 n -0000037358 00000 n -0000037487 00000 n -0000037597 00000 n -0000037759 00000 n -0000037875 00000 n -0000037984 00000 n -0000038100 00000 n -0000038209 00000 n -0000038325 00000 n -0000038424 00000 n -0000038540 00000 n -0000038649 00000 n -0000038765 00000 n -0000038874 00000 n -0000038990 00000 n -0000039099 00000 n -0000039215 00000 n -0000039463 00000 n -0000013270 00000 n -0000013131 00000 n +0000034179 00000 n +0000034287 00000 n +0000034413 00000 n +0000034511 00000 n +0000034637 00000 n +0000034766 00000 n +0000034874 00000 n +0000035000 00000 n +0000035098 00000 n +0000035224 00000 n +0000035353 00000 n +0000035461 00000 n +0000035587 00000 n +0000035685 00000 n +0000035811 00000 n +0000035919 00000 n +0000036045 00000 n +0000036143 00000 n +0000036269 00000 n +0000036398 00000 n +0000036506 00000 n +0000036632 00000 n +0000036730 00000 n +0000036856 00000 n +0000036985 00000 n +0000037093 00000 n +0000037219 00000 n +0000037306 00000 n +0000037435 00000 n +0000037543 00000 n +0000037669 00000 n +0000037756 00000 n +0000037885 00000 n +0000037995 00000 n +0000038157 00000 n +0000038273 00000 n +0000038382 00000 n +0000038498 00000 n +0000038607 00000 n +0000038723 00000 n +0000038822 00000 n +0000038938 00000 n +0000039047 00000 n +0000039163 00000 n +0000039272 00000 n +0000039388 00000 n +0000039497 00000 n +0000039613 00000 n +0000039861 00000 n +0000013365 00000 n +0000013226 00000 n 0000006617 00000 n -0000061803 00000 n -0000059363 00000 n -0000056070 00000 n -0000062157 00000 n -0000013474 00000 n -0000013511 00000 n -0000014192 00000 n -0000015104 00000 n -0000016053 00000 n -0000017015 00000 n -0000017329 00000 n -0000018051 00000 n -0000051630 00000 n -0000054867 00000 n -0000051837 00000 n -0000055090 00000 n -0000056227 00000 n -0000056430 00000 n -0000058264 00000 n -0000056488 00000 n -0000058494 00000 n -0000059526 00000 n -0000059735 00000 n -0000060814 00000 n -0000059812 00000 n -0000061035 00000 n -0000061957 00000 n -0000062221 00000 n -0000062267 00000 n -0000062401 00000 n +0000062201 00000 n +0000059761 00000 n +0000056468 00000 n +0000062555 00000 n +0000013569 00000 n +0000013606 00000 n +0000014294 00000 n +0000015206 00000 n +0000016155 00000 n +0000017117 00000 n +0000017431 00000 n +0000018260 00000 n +0000052028 00000 n +0000055265 00000 n +0000052235 00000 n +0000055488 00000 n +0000056625 00000 n +0000056828 00000 n +0000058662 00000 n +0000056886 00000 n +0000058892 00000 n +0000059924 00000 n +0000060133 00000 n +0000061212 00000 n +0000060210 00000 n +0000061433 00000 n +0000062355 00000 n +0000062619 00000 n +0000062665 00000 n +0000062799 00000 n trailer << /Size 242 /Root 240 0 R /Info 241 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -62534 +62932 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-alignat-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-alignat-pdf.tpf index aac9f898a..72e1de153 100644 --- a/required/latex-lab/testfiles-math-luatex/label-alignat-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-alignat-pdf.tpf @@ -428,7 +428,7 @@ endobj << /Kids [160 0 R 161 0 R 162 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 164 0 obj << /display <> @@ -447,7 +447,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1171,23 +1171,23 @@ xref 0000010265 00000 n 0000010287 00000 n 0000010309 00000 n -0000028151 00000 n +0000028410 00000 n 0000010471 00000 n 0000012963 00000 n -0000015265 00000 n -0000013783 00000 n +0000015524 00000 n +0000013890 00000 n 0000000012 00000 f -0000013851 00000 n +0000013958 00000 n 0000000014 00000 f -0000013921 00000 n +0000014028 00000 n 0000000020 00000 f -0000014801 00000 n -0000014002 00000 n -0000015074 00000 n -0000014903 00000 n -0000015176 00000 n +0000015060 00000 n +0000014109 00000 n +0000015333 00000 n +0000015162 00000 n +0000015435 00000 n 0000000000 00000 f -0000015326 00000 n +0000015585 00000 n 0000000020 00000 n 0000000645 00000 n 0000000832 00000 n @@ -1196,156 +1196,156 @@ xref 0000002884 00000 n 0000003071 00000 n 0000003812 00000 n -0000015450 00000 n -0000015540 00000 n -0000015630 00000 n -0000015720 00000 n -0000015825 00000 n +0000015709 00000 n +0000015799 00000 n +0000015889 00000 n +0000015979 00000 n +0000016084 00000 n 0000003999 00000 n 0000004189 00000 n -0000016070 00000 n -0000016175 00000 n -0000016298 00000 n -0000016393 00000 n -0000016516 00000 n -0000016642 00000 n -0000016747 00000 n -0000016870 00000 n -0000016965 00000 n -0000017088 00000 n -0000017214 00000 n +0000016329 00000 n +0000016434 00000 n +0000016557 00000 n +0000016652 00000 n +0000016775 00000 n +0000016901 00000 n +0000017006 00000 n +0000017129 00000 n +0000017224 00000 n +0000017347 00000 n +0000017473 00000 n 0000004389 00000 n -0000017321 00000 n +0000017580 00000 n 0000004443 00000 n -0000017439 00000 n -0000017550 00000 n +0000017698 00000 n +0000017809 00000 n 0000004564 00000 n 0000004627 00000 n -0000017656 00000 n -0000017767 00000 n -0000017873 00000 n -0000017978 00000 n +0000017915 00000 n +0000018026 00000 n +0000018132 00000 n +0000018237 00000 n 0000004688 00000 n 0000004941 00000 n -0000018335 00000 n -0000018440 00000 n -0000018563 00000 n -0000018658 00000 n -0000018782 00000 n -0000018909 00000 n -0000019014 00000 n -0000019138 00000 n -0000019233 00000 n -0000019357 00000 n -0000019484 00000 n -0000019589 00000 n -0000019713 00000 n -0000019808 00000 n -0000019932 00000 n -0000020037 00000 n -0000020161 00000 n -0000020256 00000 n -0000020380 00000 n -0000020507 00000 n -0000020613 00000 n -0000020737 00000 n -0000020833 00000 n -0000020957 00000 n -0000021085 00000 n -0000021191 00000 n -0000021315 00000 n -0000021401 00000 n -0000021529 00000 n -0000021636 00000 n -0000021784 00000 n +0000018594 00000 n +0000018699 00000 n +0000018822 00000 n +0000018917 00000 n +0000019041 00000 n +0000019168 00000 n +0000019273 00000 n +0000019397 00000 n +0000019492 00000 n +0000019616 00000 n +0000019743 00000 n +0000019848 00000 n +0000019972 00000 n +0000020067 00000 n +0000020191 00000 n +0000020296 00000 n +0000020420 00000 n +0000020515 00000 n +0000020639 00000 n +0000020766 00000 n +0000020872 00000 n +0000020996 00000 n +0000021092 00000 n +0000021216 00000 n +0000021344 00000 n +0000021450 00000 n +0000021574 00000 n +0000021660 00000 n +0000021788 00000 n 0000021895 00000 n -0000022001 00000 n -0000022112 00000 n -0000022218 00000 n -0000022329 00000 n +0000022043 00000 n +0000022154 00000 n +0000022260 00000 n +0000022371 00000 n +0000022477 00000 n +0000022588 00000 n 0000005141 00000 n -0000022425 00000 n -0000022536 00000 n -0000022642 00000 n -0000022755 00000 n -0000022863 00000 n -0000022976 00000 n -0000023084 00000 n -0000023191 00000 n +0000022684 00000 n +0000022795 00000 n +0000022901 00000 n +0000023014 00000 n +0000023122 00000 n +0000023235 00000 n +0000023343 00000 n +0000023450 00000 n 0000005207 00000 n 0000005402 00000 n -0000023408 00000 n -0000023516 00000 n -0000023642 00000 n -0000023740 00000 n -0000023866 00000 n -0000023974 00000 n -0000024100 00000 n -0000024198 00000 n -0000024324 00000 n -0000024421 00000 n -0000024508 00000 n -0000024618 00000 n -0000024748 00000 n -0000024864 00000 n -0000024962 00000 n -0000025078 00000 n -0000025176 00000 n -0000025292 00000 n -0000025390 00000 n -0000025497 00000 n +0000023667 00000 n +0000023775 00000 n +0000023901 00000 n +0000023999 00000 n +0000024125 00000 n +0000024233 00000 n +0000024359 00000 n +0000024457 00000 n +0000024583 00000 n +0000024680 00000 n +0000024767 00000 n +0000024877 00000 n +0000025007 00000 n +0000025123 00000 n +0000025221 00000 n +0000025337 00000 n +0000025435 00000 n +0000025551 00000 n +0000025649 00000 n +0000025756 00000 n 0000005605 00000 n 0000005826 00000 n -0000025752 00000 n -0000025860 00000 n -0000025986 00000 n -0000026084 00000 n -0000026210 00000 n -0000026318 00000 n -0000026444 00000 n -0000026542 00000 n -0000026668 00000 n -0000026797 00000 n -0000026905 00000 n -0000027031 00000 n -0000027118 00000 n -0000027247 00000 n -0000027357 00000 n -0000027487 00000 n -0000027603 00000 n -0000027701 00000 n -0000027817 00000 n -0000027926 00000 n -0000028042 00000 n -0000028290 00000 n +0000026011 00000 n +0000026119 00000 n +0000026245 00000 n +0000026343 00000 n +0000026469 00000 n +0000026577 00000 n +0000026703 00000 n +0000026801 00000 n +0000026927 00000 n +0000027056 00000 n +0000027164 00000 n +0000027290 00000 n +0000027377 00000 n +0000027506 00000 n +0000027616 00000 n +0000027746 00000 n +0000027862 00000 n +0000027960 00000 n +0000028076 00000 n +0000028185 00000 n +0000028301 00000 n +0000028549 00000 n 0000010140 00000 n 0000010001 00000 n 0000006029 00000 n -0000047197 00000 n -0000044115 00000 n -0000047569 00000 n +0000047456 00000 n +0000044374 00000 n +0000047828 00000 n 0000010331 00000 n 0000010368 00000 n 0000010822 00000 n 0000011734 00000 n 0000012684 00000 n 0000012908 00000 n -0000013622 00000 n -0000040459 00000 n -0000042982 00000 n -0000040616 00000 n -0000043205 00000 n -0000044272 00000 n -0000044475 00000 n -0000046116 00000 n -0000044529 00000 n -0000046346 00000 n -0000047360 00000 n -0000047633 00000 n -0000047679 00000 n -0000047813 00000 n +0000013729 00000 n +0000040718 00000 n +0000043241 00000 n +0000040875 00000 n +0000043464 00000 n +0000044531 00000 n +0000044734 00000 n +0000046375 00000 n +0000044788 00000 n +0000046605 00000 n +0000047619 00000 n +0000047892 00000 n +0000047938 00000 n +0000048072 00000 n trailer << /Size 178 /Root 176 0 R /Info 177 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47946 +48205 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-flalign-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-flalign-pdf.tpf index d9c6ef900..d1a5e963f 100644 --- a/required/latex-lab/testfiles-math-luatex/label-flalign-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-flalign-pdf.tpf @@ -428,7 +428,7 @@ endobj << /Kids [156 0 R 157 0 R 158 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 160 0 obj << /display <> @@ -447,7 +447,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1159,23 +1159,23 @@ xref 0000010157 00000 n 0000010179 00000 n 0000010201 00000 n -0000027565 00000 n +0000027824 00000 n 0000010363 00000 n 0000012783 00000 n -0000015085 00000 n -0000013603 00000 n +0000015344 00000 n +0000013710 00000 n 0000000012 00000 f -0000013671 00000 n +0000013778 00000 n 0000000014 00000 f -0000013741 00000 n +0000013848 00000 n 0000000020 00000 f -0000014621 00000 n -0000013822 00000 n -0000014894 00000 n -0000014723 00000 n -0000014996 00000 n +0000014880 00000 n +0000013929 00000 n +0000015153 00000 n +0000014982 00000 n +0000015255 00000 n 0000000000 00000 f -0000015146 00000 n +0000015405 00000 n 0000000020 00000 n 0000000645 00000 n 0000000832 00000 n @@ -1184,152 +1184,152 @@ xref 0000002794 00000 n 0000002981 00000 n 0000003722 00000 n -0000015270 00000 n -0000015360 00000 n -0000015450 00000 n -0000015540 00000 n -0000015645 00000 n +0000015529 00000 n +0000015619 00000 n +0000015709 00000 n +0000015799 00000 n +0000015904 00000 n 0000003909 00000 n 0000004095 00000 n -0000015890 00000 n -0000015995 00000 n -0000016118 00000 n -0000016213 00000 n -0000016336 00000 n -0000016462 00000 n -0000016567 00000 n -0000016690 00000 n -0000016785 00000 n -0000016908 00000 n -0000017034 00000 n +0000016149 00000 n +0000016254 00000 n +0000016377 00000 n +0000016472 00000 n +0000016595 00000 n +0000016721 00000 n +0000016826 00000 n +0000016949 00000 n +0000017044 00000 n +0000017167 00000 n +0000017293 00000 n 0000004295 00000 n -0000017141 00000 n +0000017400 00000 n 0000004349 00000 n -0000017259 00000 n -0000017370 00000 n +0000017518 00000 n +0000017629 00000 n 0000004470 00000 n 0000004533 00000 n -0000017476 00000 n -0000017587 00000 n -0000017693 00000 n -0000017798 00000 n +0000017735 00000 n +0000017846 00000 n +0000017952 00000 n +0000018057 00000 n 0000004594 00000 n 0000004843 00000 n -0000018155 00000 n -0000018260 00000 n -0000018383 00000 n -0000018478 00000 n -0000018602 00000 n -0000018729 00000 n -0000018834 00000 n -0000018958 00000 n -0000019053 00000 n -0000019177 00000 n -0000019304 00000 n -0000019409 00000 n -0000019533 00000 n -0000019628 00000 n -0000019752 00000 n -0000019857 00000 n -0000019981 00000 n -0000020076 00000 n -0000020200 00000 n -0000020327 00000 n -0000020433 00000 n -0000020557 00000 n -0000020653 00000 n -0000020777 00000 n -0000020905 00000 n -0000021011 00000 n -0000021135 00000 n -0000021221 00000 n -0000021349 00000 n -0000021456 00000 n -0000021604 00000 n +0000018414 00000 n +0000018519 00000 n +0000018642 00000 n +0000018737 00000 n +0000018861 00000 n +0000018988 00000 n +0000019093 00000 n +0000019217 00000 n +0000019312 00000 n +0000019436 00000 n +0000019563 00000 n +0000019668 00000 n +0000019792 00000 n +0000019887 00000 n +0000020011 00000 n +0000020116 00000 n +0000020240 00000 n +0000020335 00000 n +0000020459 00000 n +0000020586 00000 n +0000020692 00000 n +0000020816 00000 n +0000020912 00000 n +0000021036 00000 n +0000021164 00000 n +0000021270 00000 n +0000021394 00000 n +0000021480 00000 n +0000021608 00000 n 0000021715 00000 n -0000021821 00000 n -0000021932 00000 n -0000022038 00000 n -0000022149 00000 n +0000021863 00000 n +0000021974 00000 n +0000022080 00000 n +0000022191 00000 n +0000022297 00000 n +0000022408 00000 n 0000005043 00000 n -0000022245 00000 n -0000022356 00000 n -0000022462 00000 n -0000022575 00000 n -0000022683 00000 n -0000022796 00000 n -0000022904 00000 n -0000023011 00000 n +0000022504 00000 n +0000022615 00000 n +0000022721 00000 n +0000022834 00000 n +0000022942 00000 n +0000023055 00000 n +0000023163 00000 n +0000023270 00000 n 0000005109 00000 n 0000005298 00000 n -0000023228 00000 n -0000023336 00000 n -0000023462 00000 n -0000023560 00000 n -0000023686 00000 n -0000023794 00000 n -0000023920 00000 n -0000024018 00000 n -0000024144 00000 n -0000024254 00000 n -0000024376 00000 n -0000024492 00000 n -0000024590 00000 n -0000024706 00000 n -0000024804 00000 n -0000024911 00000 n +0000023487 00000 n +0000023595 00000 n +0000023721 00000 n +0000023819 00000 n +0000023945 00000 n +0000024053 00000 n +0000024179 00000 n +0000024277 00000 n +0000024403 00000 n +0000024513 00000 n +0000024635 00000 n +0000024751 00000 n +0000024849 00000 n +0000024965 00000 n +0000025063 00000 n +0000025170 00000 n 0000005501 00000 n 0000005718 00000 n -0000025166 00000 n -0000025274 00000 n -0000025400 00000 n -0000025498 00000 n -0000025624 00000 n -0000025732 00000 n -0000025858 00000 n -0000025956 00000 n -0000026082 00000 n -0000026211 00000 n -0000026319 00000 n -0000026445 00000 n -0000026532 00000 n -0000026661 00000 n -0000026771 00000 n -0000026901 00000 n -0000027017 00000 n -0000027115 00000 n -0000027231 00000 n -0000027340 00000 n -0000027456 00000 n -0000027704 00000 n +0000025425 00000 n +0000025533 00000 n +0000025659 00000 n +0000025757 00000 n +0000025883 00000 n +0000025991 00000 n +0000026117 00000 n +0000026215 00000 n +0000026341 00000 n +0000026470 00000 n +0000026578 00000 n +0000026704 00000 n +0000026791 00000 n +0000026920 00000 n +0000027030 00000 n +0000027160 00000 n +0000027276 00000 n +0000027374 00000 n +0000027490 00000 n +0000027599 00000 n +0000027715 00000 n +0000027963 00000 n 0000010032 00000 n 0000009893 00000 n 0000005921 00000 n -0000046611 00000 n -0000043529 00000 n -0000046983 00000 n +0000046870 00000 n +0000043788 00000 n +0000047242 00000 n 0000010223 00000 n 0000010260 00000 n 0000010714 00000 n 0000011626 00000 n 0000012576 00000 n 0000012728 00000 n -0000013442 00000 n -0000039873 00000 n -0000042396 00000 n -0000040030 00000 n -0000042619 00000 n -0000043686 00000 n -0000043889 00000 n -0000045530 00000 n -0000043943 00000 n -0000045760 00000 n -0000046774 00000 n -0000047047 00000 n -0000047093 00000 n -0000047227 00000 n +0000013549 00000 n +0000040132 00000 n +0000042655 00000 n +0000040289 00000 n +0000042878 00000 n +0000043945 00000 n +0000044148 00000 n +0000045789 00000 n +0000044202 00000 n +0000046019 00000 n +0000047033 00000 n +0000047306 00000 n +0000047352 00000 n +0000047486 00000 n trailer << /Size 174 /Root 172 0 R /Info 173 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47360 +47619 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-gather-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-gather-pdf.tpf index 003a15f86..d7d710310 100644 --- a/required/latex-lab/testfiles-math-luatex/label-gather-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-gather-pdf.tpf @@ -329,7 +329,7 @@ endobj << /Kids [131 0 R 132 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 134 0 obj << /display <> @@ -348,7 +348,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -983,23 +983,23 @@ xref 0000008396 00000 n 0000008418 00000 n 0000008440 00000 n -0000022132 00000 n +0000022391 00000 n 0000008602 00000 n 0000010328 00000 n -0000012630 00000 n -0000011148 00000 n +0000012889 00000 n +0000011255 00000 n 0000000012 00000 f -0000011216 00000 n +0000011323 00000 n 0000000014 00000 f -0000011286 00000 n +0000011393 00000 n 0000000020 00000 f -0000012166 00000 n -0000011367 00000 n -0000012439 00000 n -0000012268 00000 n -0000012541 00000 n +0000012425 00000 n +0000011474 00000 n +0000012698 00000 n +0000012527 00000 n +0000012800 00000 n 0000000000 00000 f -0000012691 00000 n +0000012950 00000 n 0000000020 00000 n 0000000570 00000 n 0000000757 00000 n @@ -1008,126 +1008,126 @@ xref 0000002478 00000 n 0000002665 00000 n 0000003302 00000 n -0000012813 00000 n -0000012902 00000 n -0000012991 00000 n -0000013080 00000 n -0000013184 00000 n +0000013072 00000 n +0000013161 00000 n +0000013250 00000 n +0000013339 00000 n +0000013443 00000 n 0000003489 00000 n 0000003666 00000 n -0000013424 00000 n -0000013528 00000 n -0000013650 00000 n -0000013775 00000 n -0000013879 00000 n -0000014001 00000 n -0000014126 00000 n +0000013683 00000 n +0000013787 00000 n +0000013909 00000 n +0000014034 00000 n +0000014138 00000 n +0000014260 00000 n +0000014385 00000 n 0000003866 00000 n -0000014232 00000 n +0000014491 00000 n 0000003920 00000 n -0000014349 00000 n -0000014452 00000 n +0000014608 00000 n +0000014711 00000 n 0000004021 00000 n 0000004084 00000 n -0000014557 00000 n -0000014660 00000 n -0000014765 00000 n -0000014869 00000 n +0000014816 00000 n +0000014919 00000 n +0000015024 00000 n +0000015128 00000 n 0000004145 00000 n 0000004360 00000 n -0000015220 00000 n -0000015324 00000 n -0000015446 00000 n -0000015571 00000 n -0000015675 00000 n -0000015798 00000 n -0000015924 00000 n -0000016028 00000 n -0000016151 00000 n -0000016255 00000 n -0000016378 00000 n -0000016504 00000 n -0000016608 00000 n -0000016731 00000 n -0000016857 00000 n -0000016961 00000 n -0000017084 00000 n -0000017210 00000 n -0000017316 00000 n -0000017461 00000 n -0000017564 00000 n -0000017669 00000 n -0000017772 00000 n -0000017877 00000 n -0000017980 00000 n +0000015479 00000 n +0000015583 00000 n +0000015705 00000 n +0000015830 00000 n +0000015934 00000 n +0000016057 00000 n +0000016183 00000 n +0000016287 00000 n +0000016410 00000 n +0000016514 00000 n +0000016637 00000 n +0000016763 00000 n +0000016867 00000 n +0000016990 00000 n +0000017116 00000 n +0000017220 00000 n +0000017343 00000 n +0000017469 00000 n +0000017575 00000 n +0000017720 00000 n +0000017823 00000 n +0000017928 00000 n +0000018031 00000 n +0000018136 00000 n +0000018239 00000 n 0000004560 00000 n -0000018075 00000 n -0000018178 00000 n -0000018283 00000 n -0000018386 00000 n -0000018491 00000 n -0000018594 00000 n -0000018699 00000 n -0000018803 00000 n +0000018334 00000 n +0000018437 00000 n +0000018542 00000 n +0000018645 00000 n +0000018750 00000 n +0000018853 00000 n +0000018958 00000 n +0000019062 00000 n 0000004626 00000 n 0000004805 00000 n -0000019011 00000 n -0000019115 00000 n -0000019238 00000 n -0000019343 00000 n -0000019466 00000 n -0000019572 00000 n -0000019690 00000 n -0000019794 00000 n -0000019890 00000 n -0000019995 00000 n -0000020092 00000 n -0000020198 00000 n +0000019270 00000 n +0000019374 00000 n +0000019497 00000 n +0000019602 00000 n +0000019725 00000 n +0000019831 00000 n +0000019949 00000 n +0000020053 00000 n +0000020149 00000 n +0000020254 00000 n +0000020351 00000 n +0000020457 00000 n 0000005005 00000 n 0000005201 00000 n -0000020447 00000 n -0000020554 00000 n -0000020679 00000 n -0000020786 00000 n -0000020911 00000 n -0000021039 00000 n -0000021146 00000 n -0000021271 00000 n -0000021380 00000 n -0000021509 00000 n -0000021616 00000 n -0000021713 00000 n -0000021820 00000 n -0000021928 00000 n -0000022035 00000 n -0000022271 00000 n +0000020706 00000 n +0000020813 00000 n +0000020938 00000 n +0000021045 00000 n +0000021170 00000 n +0000021298 00000 n +0000021405 00000 n +0000021530 00000 n +0000021639 00000 n +0000021768 00000 n +0000021875 00000 n +0000021972 00000 n +0000022079 00000 n +0000022187 00000 n +0000022294 00000 n +0000022530 00000 n 0000008271 00000 n 0000008132 00000 n 0000005404 00000 n -0000040814 00000 n -0000037732 00000 n -0000041186 00000 n +0000041073 00000 n +0000037991 00000 n +0000041445 00000 n 0000008462 00000 n 0000008499 00000 n 0000008861 00000 n 0000009721 00000 n 0000010281 00000 n -0000010987 00000 n -0000034439 00000 n -0000036627 00000 n -0000034574 00000 n -0000036850 00000 n -0000037889 00000 n -0000038092 00000 n -0000039733 00000 n -0000038146 00000 n -0000039963 00000 n -0000040977 00000 n -0000041250 00000 n -0000041296 00000 n -0000041430 00000 n +0000011094 00000 n +0000034698 00000 n +0000036886 00000 n +0000034833 00000 n +0000037109 00000 n +0000038148 00000 n +0000038351 00000 n +0000039992 00000 n +0000038405 00000 n +0000040222 00000 n +0000041236 00000 n +0000041509 00000 n +0000041555 00000 n +0000041689 00000 n trailer << /Size 148 /Root 146 0 R /Info 147 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -41563 +41822 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-multline-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-multline-pdf.tpf index aad51bdf3..b6af5b8aa 100644 --- a/required/latex-lab/testfiles-math-luatex/label-multline-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-multline-pdf.tpf @@ -283,7 +283,7 @@ endobj << /Kids [120 0 R 121 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 123 0 obj << /display <> @@ -302,7 +302,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -893,23 +893,23 @@ xref 0000007413 00000 n 0000007435 00000 n 0000007457 00000 n -0000019142 00000 n +0000019401 00000 n 0000007619 00000 n 0000009048 00000 n -0000011350 00000 n -0000009868 00000 n +0000011609 00000 n +0000009975 00000 n 0000000012 00000 f -0000009936 00000 n +0000010043 00000 n 0000000014 00000 f -0000010006 00000 n +0000010113 00000 n 0000000020 00000 f -0000010886 00000 n -0000010087 00000 n -0000011159 00000 n -0000010988 00000 n -0000011261 00000 n +0000011145 00000 n +0000010194 00000 n +0000011418 00000 n +0000011247 00000 n +0000011520 00000 n 0000000000 00000 f -0000011411 00000 n +0000011670 00000 n 0000000020 00000 n 0000000568 00000 n 0000000755 00000 n @@ -918,115 +918,115 @@ xref 0000002145 00000 n 0000002332 00000 n 0000002923 00000 n -0000011532 00000 n -0000011621 00000 n -0000011710 00000 n -0000011799 00000 n -0000011903 00000 n +0000011791 00000 n +0000011880 00000 n +0000011969 00000 n +0000012058 00000 n +0000012162 00000 n 0000003110 00000 n 0000003291 00000 n -0000012151 00000 n -0000012254 00000 n +0000012410 00000 n +0000012513 00000 n 0000003491 00000 n -0000012352 00000 n -0000012474 00000 n -0000012578 00000 n -0000012700 00000 n +0000012611 00000 n +0000012733 00000 n +0000012837 00000 n +0000012959 00000 n 0000003545 00000 n -0000012806 00000 n +0000013065 00000 n 0000003599 00000 n -0000012923 00000 n +0000013182 00000 n 0000003714 00000 n -0000013028 00000 n +0000013287 00000 n 0000003771 00000 n -0000013142 00000 n +0000013401 00000 n 0000003829 00000 n 0000003892 00000 n -0000013237 00000 n -0000013341 00000 n +0000013496 00000 n +0000013600 00000 n 0000003953 00000 n 0000004172 00000 n -0000013590 00000 n -0000013693 00000 n -0000013791 00000 n -0000013913 00000 n -0000014007 00000 n -0000014129 00000 n -0000014223 00000 n -0000014345 00000 n -0000014439 00000 n -0000014561 00000 n -0000014655 00000 n -0000014777 00000 n -0000014881 00000 n -0000015004 00000 n -0000015110 00000 n -0000015255 00000 n -0000015360 00000 n -0000015454 00000 n -0000015548 00000 n -0000015642 00000 n -0000015736 00000 n -0000015850 00000 n -0000015945 00000 n -0000016049 00000 n +0000013849 00000 n +0000013952 00000 n +0000014050 00000 n +0000014172 00000 n +0000014266 00000 n +0000014388 00000 n +0000014482 00000 n +0000014604 00000 n +0000014698 00000 n +0000014820 00000 n +0000014914 00000 n +0000015036 00000 n +0000015140 00000 n +0000015263 00000 n +0000015369 00000 n +0000015514 00000 n +0000015619 00000 n +0000015713 00000 n +0000015807 00000 n +0000015901 00000 n +0000015995 00000 n +0000016109 00000 n +0000016204 00000 n +0000016308 00000 n 0000004372 00000 n 0000004555 00000 n -0000016265 00000 n -0000016368 00000 n -0000016466 00000 n -0000016589 00000 n -0000016692 00000 n -0000016815 00000 n -0000016913 00000 n -0000017019 00000 n -0000017136 00000 n -0000017241 00000 n -0000017346 00000 n -0000017450 00000 n +0000016524 00000 n +0000016627 00000 n +0000016725 00000 n +0000016848 00000 n +0000016951 00000 n +0000017074 00000 n +0000017172 00000 n +0000017278 00000 n +0000017395 00000 n +0000017500 00000 n +0000017605 00000 n +0000017709 00000 n 0000004755 00000 n 0000004954 00000 n -0000017705 00000 n -0000017810 00000 n -0000017908 00000 n -0000018032 00000 n -0000018129 00000 n -0000018254 00000 n -0000018361 00000 n -0000018486 00000 n -0000018594 00000 n -0000018723 00000 n -0000018830 00000 n -0000018927 00000 n -0000019045 00000 n -0000019281 00000 n +0000017964 00000 n +0000018069 00000 n +0000018167 00000 n +0000018291 00000 n +0000018388 00000 n +0000018513 00000 n +0000018620 00000 n +0000018745 00000 n +0000018853 00000 n +0000018982 00000 n +0000019089 00000 n +0000019186 00000 n +0000019304 00000 n +0000019540 00000 n 0000007288 00000 n 0000007149 00000 n 0000005154 00000 n -0000037004 00000 n -0000033922 00000 n -0000037376 00000 n +0000037263 00000 n +0000034181 00000 n +0000037635 00000 n 0000007479 00000 n 0000007516 00000 n 0000007798 00000 n 0000008658 00000 n 0000009001 00000 n -0000009707 00000 n -0000031451 00000 n -0000032888 00000 n -0000031543 00000 n -0000033111 00000 n -0000034079 00000 n -0000034282 00000 n -0000035923 00000 n -0000034336 00000 n -0000036153 00000 n -0000037167 00000 n -0000037440 00000 n -0000037486 00000 n -0000037620 00000 n +0000009814 00000 n +0000031710 00000 n +0000033147 00000 n +0000031802 00000 n +0000033370 00000 n +0000034338 00000 n +0000034541 00000 n +0000036182 00000 n +0000034595 00000 n +0000036412 00000 n +0000037426 00000 n +0000037699 00000 n +0000037745 00000 n +0000037879 00000 n trailer << /Size 137 /Root 135 0 R /Info 136 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -37753 +38012 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/label-xalignat-pdf.tpf b/required/latex-lab/testfiles-math-luatex/label-xalignat-pdf.tpf index 2cc726bef..7ebcd12d2 100644 --- a/required/latex-lab/testfiles-math-luatex/label-xalignat-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/label-xalignat-pdf.tpf @@ -428,7 +428,7 @@ endobj << /Kids [160 0 R 161 0 R 162 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 164 0 obj << /display <> @@ -447,7 +447,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1171,23 +1171,23 @@ xref 0000010278 00000 n 0000010300 00000 n 0000010322 00000 n -0000028180 00000 n +0000028439 00000 n 0000010484 00000 n 0000012976 00000 n -0000015278 00000 n -0000013796 00000 n +0000015537 00000 n +0000013903 00000 n 0000000012 00000 f -0000013864 00000 n +0000013971 00000 n 0000000014 00000 f -0000013934 00000 n +0000014041 00000 n 0000000020 00000 f -0000014814 00000 n -0000014015 00000 n -0000015087 00000 n -0000014916 00000 n -0000015189 00000 n +0000015073 00000 n +0000014122 00000 n +0000015346 00000 n +0000015175 00000 n +0000015448 00000 n 0000000000 00000 f -0000015339 00000 n +0000015598 00000 n 0000000020 00000 n 0000000646 00000 n 0000000833 00000 n @@ -1196,156 +1196,156 @@ xref 0000002887 00000 n 0000003074 00000 n 0000003816 00000 n -0000015463 00000 n -0000015553 00000 n -0000015643 00000 n -0000015733 00000 n -0000015838 00000 n +0000015722 00000 n +0000015812 00000 n +0000015902 00000 n +0000015992 00000 n +0000016097 00000 n 0000004003 00000 n 0000004195 00000 n -0000016087 00000 n -0000016192 00000 n -0000016315 00000 n -0000016410 00000 n -0000016533 00000 n -0000016659 00000 n -0000016764 00000 n -0000016887 00000 n -0000016982 00000 n -0000017105 00000 n -0000017231 00000 n +0000016346 00000 n +0000016451 00000 n +0000016574 00000 n +0000016669 00000 n +0000016792 00000 n +0000016918 00000 n +0000017023 00000 n +0000017146 00000 n +0000017241 00000 n +0000017364 00000 n +0000017490 00000 n 0000004395 00000 n -0000017338 00000 n +0000017597 00000 n 0000004449 00000 n -0000017456 00000 n -0000017567 00000 n +0000017715 00000 n +0000017826 00000 n 0000004571 00000 n 0000004634 00000 n -0000017673 00000 n -0000017784 00000 n -0000017890 00000 n -0000017995 00000 n +0000017932 00000 n +0000018043 00000 n +0000018149 00000 n +0000018254 00000 n 0000004695 00000 n 0000004950 00000 n -0000018356 00000 n -0000018461 00000 n -0000018584 00000 n -0000018679 00000 n -0000018803 00000 n -0000018930 00000 n -0000019035 00000 n -0000019159 00000 n -0000019254 00000 n -0000019378 00000 n -0000019505 00000 n -0000019610 00000 n -0000019734 00000 n -0000019829 00000 n -0000019953 00000 n -0000020058 00000 n -0000020182 00000 n -0000020277 00000 n -0000020401 00000 n -0000020528 00000 n -0000020634 00000 n -0000020758 00000 n -0000020854 00000 n -0000020978 00000 n -0000021106 00000 n -0000021212 00000 n -0000021336 00000 n -0000021422 00000 n -0000021550 00000 n -0000021657 00000 n -0000021805 00000 n +0000018615 00000 n +0000018720 00000 n +0000018843 00000 n +0000018938 00000 n +0000019062 00000 n +0000019189 00000 n +0000019294 00000 n +0000019418 00000 n +0000019513 00000 n +0000019637 00000 n +0000019764 00000 n +0000019869 00000 n +0000019993 00000 n +0000020088 00000 n +0000020212 00000 n +0000020317 00000 n +0000020441 00000 n +0000020536 00000 n +0000020660 00000 n +0000020787 00000 n +0000020893 00000 n +0000021017 00000 n +0000021113 00000 n +0000021237 00000 n +0000021365 00000 n +0000021471 00000 n +0000021595 00000 n +0000021681 00000 n +0000021809 00000 n 0000021916 00000 n -0000022022 00000 n -0000022133 00000 n -0000022239 00000 n -0000022350 00000 n +0000022064 00000 n +0000022175 00000 n +0000022281 00000 n +0000022392 00000 n +0000022498 00000 n +0000022609 00000 n 0000005150 00000 n -0000022446 00000 n -0000022557 00000 n -0000022663 00000 n -0000022776 00000 n -0000022884 00000 n -0000022997 00000 n -0000023105 00000 n -0000023212 00000 n +0000022705 00000 n +0000022816 00000 n +0000022922 00000 n +0000023035 00000 n +0000023143 00000 n +0000023256 00000 n +0000023364 00000 n +0000023471 00000 n 0000005216 00000 n 0000005413 00000 n -0000023433 00000 n -0000023541 00000 n -0000023667 00000 n -0000023765 00000 n -0000023891 00000 n -0000023999 00000 n -0000024125 00000 n -0000024223 00000 n -0000024349 00000 n -0000024446 00000 n -0000024533 00000 n -0000024643 00000 n -0000024773 00000 n -0000024889 00000 n -0000024987 00000 n -0000025103 00000 n -0000025201 00000 n -0000025317 00000 n -0000025415 00000 n -0000025522 00000 n +0000023692 00000 n +0000023800 00000 n +0000023926 00000 n +0000024024 00000 n +0000024150 00000 n +0000024258 00000 n +0000024384 00000 n +0000024482 00000 n +0000024608 00000 n +0000024705 00000 n +0000024792 00000 n +0000024902 00000 n +0000025032 00000 n +0000025148 00000 n +0000025246 00000 n +0000025362 00000 n +0000025460 00000 n +0000025576 00000 n +0000025674 00000 n +0000025781 00000 n 0000005616 00000 n 0000005839 00000 n -0000025781 00000 n -0000025889 00000 n -0000026015 00000 n -0000026113 00000 n -0000026239 00000 n -0000026347 00000 n -0000026473 00000 n -0000026571 00000 n -0000026697 00000 n -0000026826 00000 n -0000026934 00000 n -0000027060 00000 n -0000027147 00000 n -0000027276 00000 n -0000027386 00000 n -0000027516 00000 n -0000027632 00000 n -0000027730 00000 n -0000027846 00000 n -0000027955 00000 n -0000028071 00000 n -0000028319 00000 n +0000026040 00000 n +0000026148 00000 n +0000026274 00000 n +0000026372 00000 n +0000026498 00000 n +0000026606 00000 n +0000026732 00000 n +0000026830 00000 n +0000026956 00000 n +0000027085 00000 n +0000027193 00000 n +0000027319 00000 n +0000027406 00000 n +0000027535 00000 n +0000027645 00000 n +0000027775 00000 n +0000027891 00000 n +0000027989 00000 n +0000028105 00000 n +0000028214 00000 n +0000028330 00000 n +0000028578 00000 n 0000010153 00000 n 0000010014 00000 n 0000006042 00000 n -0000047227 00000 n -0000044145 00000 n -0000047599 00000 n +0000047486 00000 n +0000044404 00000 n +0000047858 00000 n 0000010344 00000 n 0000010381 00000 n 0000010835 00000 n 0000011747 00000 n 0000012697 00000 n 0000012921 00000 n -0000013635 00000 n -0000040489 00000 n -0000043012 00000 n -0000040646 00000 n -0000043235 00000 n -0000044302 00000 n -0000044505 00000 n -0000046146 00000 n -0000044559 00000 n -0000046376 00000 n -0000047390 00000 n -0000047663 00000 n -0000047709 00000 n -0000047843 00000 n +0000013742 00000 n +0000040748 00000 n +0000043271 00000 n +0000040905 00000 n +0000043494 00000 n +0000044561 00000 n +0000044764 00000 n +0000046405 00000 n +0000044818 00000 n +0000046635 00000 n +0000047649 00000 n +0000047922 00000 n +0000047968 00000 n +0000048102 00000 n trailer << /Size 178 /Root 176 0 R /Info 177 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47976 +48235 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/labelled-align-pdf-2.tlg b/required/latex-lab/testfiles-math-luatex/labelled-align-pdf-2.tlg index 9cae68190..4d9066232 100644 --- a/required/latex-lab/testfiles-math-luatex/labelled-align-pdf-2.tlg +++ b/required/latex-lab/testfiles-math-luatex/labelled-align-pdf-2.tlg @@ -50,8 +50,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\TU/lmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/bx/n/14.4 .....\glue 9.0 +.....\TU/lmr/bx/n/14.4 +.....\glue -5.4 ....\pdfliteral page ....\pdfliteral page ....\TU/lmr/bx/n/14.4 a @@ -1942,7 +1946,7 @@ MathML statistic ==> 6 MathML AF attached Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~300 structure objects -(tagpdf) with ~169 'MC' leaf nodes. +(tagpdf) with ~170 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-math-luatex/labelled-align-pdf.tpf b/required/latex-lab/testfiles-math-luatex/labelled-align-pdf.tpf index 91425adbf..44a8e5355 100644 --- a/required/latex-lab/testfiles-math-luatex/labelled-align-pdf.tpf +++ b/required/latex-lab/testfiles-math-luatex/labelled-align-pdf.tpf @@ -163,88 +163,94 @@ endobj << /O/NSO/NS 13 0 R/class(flalign)/columnspacing(0 0 .8em 0)/displaystyle(true)/intent(:system-of-equations) >> endobj 365 0 obj -<< /Length 13918 >> +<< /Length 14014 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F34 14.3462 Tf -1 0 0 1 133.768 657.235 Tm [<00520067>]TJ +1 0 0 1 133.768 657.235 Tm [<0052>]TJ ET EMC /section<> BDC BT /F34 14.3462 Tf +1 0 0 1 141.845 657.235 Tm [<0067>-625<0067>]TJ +ET +EMC +/section<> BDC +BT +/F34 14.3462 Tf 1 0 0 1 156.191 657.235 Tm [<001C0023>-31<002B>]TJ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 143.731 625.442 Tm [<0510>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 151.215 625.442 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 161.18 625.442 Tm [<0511>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 167.807 625.442 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 177.772 625.442 Tm [<0512>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 184.549 625.442 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 194.514 625.442 Tm [<0513>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 202.147 625.442 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 212.112 625.442 Tm [<0514>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 218.968 625.442 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 228.933 625.442 Tm [<0515>]TJ @@ -252,73 +258,73 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 353.222 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 363.186 610.498 Tm [<0518>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 368.837 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 378.802 610.498 Tm [<0519>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 385.25 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 395.215 610.498 Tm [<051A>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 402.769 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 412.734 610.498 Tm [<051B>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 417.916 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 427.881 610.498 Tm [<051C>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 438.842 610.498 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 448.807 610.498 Tm [<051D>]TJ @@ -326,25 +332,25 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 610.498 Tm [<005500520056>]TJ ET EMC -/Formula<> BDC +/Formula<> BDC EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 213.637 566.662 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 224.155 566.662 Tm [<0015>]TJ @@ -352,7 +358,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 284.096 566.662 Tm [<0076>28<00320062>]TJ @@ -360,19 +366,19 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 566.662 Tm [<0055006B0056>]TJ ET EMC -/Formula<> BDC +/Formula<> BDC EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 205.888 551.718 Tm [<0011>]TJ @@ -380,13 +386,13 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 213.637 551.718 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 224.155 551.718 Tm [<0011>]TJ @@ -394,7 +400,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 284.096 551.718 Tm [<004D0051>]TJ @@ -402,7 +408,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 551.718 Tm [<0055006A0056>]TJ @@ -410,21 +416,21 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 188.728 536.774 Tm [<0012>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 195.923 536.774 Tm [<000C>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 205.888 536.774 Tm [<0012>]TJ @@ -432,13 +438,13 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 213.637 536.774 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 224.155 536.774 Tm [<0013>]TJ @@ -446,7 +452,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 284.096 536.774 Tm [<004B001C>28<00760023>-28<0032>]TJ @@ -454,7 +460,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 536.774 Tm [<005500390056>]TJ @@ -462,51 +468,51 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 279.174 492.938 Tm [<0510>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 284.444 490.478 Tm [<03C6>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 291.737 492.938 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 302.256 492.938 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 306.53 490.478 Tm [<03C6>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 313.269 492.938 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 323.234 492.938 Tm [<0512>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 327.548 490.478 Tm [<03C6>]TJ @@ -514,7 +520,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 492.938 Tm [<005500380056>]TJ @@ -522,87 +528,87 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 257.557 477.995 Tm [<0510>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 262.828 475.534 Tm [<03F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 270.121 477.995 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 280.639 477.995 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 284.913 475.534 Tm [<03F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 291.653 477.995 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.618 477.995 Tm [<0512>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 305.932 475.534 Tm [<03F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 312.672 477.995 Tm [<0A37>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 322.636 477.995 Tm [<0513>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 327.817 475.534 Tm [<03F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 334.557 477.995 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 344.522 477.995 Tm [<0514>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 349.164 475.534 Tm [<03F5>]TJ @@ -610,7 +616,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 477.995 Tm [<005500650056>]TJ @@ -618,15 +624,15 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 158.677 434.159 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 169.195 434.159 Tm [<0015>]TJ @@ -634,7 +640,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 265.776 434.159 Tm [<0076>28<00320062>]TJ @@ -642,7 +648,7 @@ ET EMC /Artifact BMC EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 150.928 419.215 Tm [<0011>]TJ @@ -650,13 +656,13 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 158.677 419.215 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 169.195 419.215 Tm [<0011>]TJ @@ -664,7 +670,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 265.776 419.215 Tm [<004D0051>]TJ @@ -672,19 +678,19 @@ ET EMC /Artifact BMC EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 133.768 404.271 Tm [<0012>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 140.964 404.271 Tm [<000C>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 150.928 404.271 Tm [<0012>]TJ @@ -692,13 +698,13 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 158.677 404.271 Tm [<001E>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 169.195 404.271 Tm [<0013>]TJ @@ -706,7 +712,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 265.776 404.271 Tm [<004B001C>28<00760023>-28<0032>]TJ @@ -714,9 +720,9 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 206.171 360.435 Tm [<0527>]TJ @@ -724,103 +730,103 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 214.637 360.435 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 225.155 360.435 Tm [<0528>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 230.037 357.975 Tm [<03C6>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 236.777 360.435 Tm [<0A37>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 246.741 360.435 Tm [<0528>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 251.623 357.975 Tm [<03F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 258.363 360.435 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 268.328 360.435 Tm [<0528>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 273.209 357.975 Tm [<03EF>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 279.949 360.435 Tm [<0A37>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 289.914 360.435 Tm [<0528>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 294.796 357.975 Tm [<0398>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 301.536 360.435 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 311.501 360.435 Tm [<0528>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 316.382 357.975 Tm [<0385>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 323.122 360.435 Tm [<0A37>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 333.087 360.435 Tm [<0077>]TJ @@ -828,7 +834,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 351.388 360.435 Tm [<0023>28<007600670055006B0056>]TJ @@ -836,7 +842,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 360.435 Tm [<005500640056>]TJ @@ -844,39 +850,39 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 214.637 345.491 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 225.155 345.491 Tm [<0528>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 230.316 345.491 Tm [<0008>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 235.299 345.491 Tm [<0A4B>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 241.618 345.491 Tm [<0528>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F22 6.97385 Tf 1 0 0 1 246.778 349.108 Tm [<0A5F>]TJ @@ -884,7 +890,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 351.388 345.491 Tm [<0023>28<00760067005500520056>]TJ @@ -892,7 +898,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 345.491 Tm [<005500330056>]TJ @@ -900,45 +906,45 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 214.637 330.547 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 225.155 330.547 Tm [<0528>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 230.316 330.547 Tm [<0009>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F21 9.96264 Tf 1 0 0 1 234.191 330.547 Tm [<0011>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 239.172 330.547 Tm [<000A>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 243.048 330.547 Tm [<0528>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 248.209 330.547 Tm [<0008>]TJ @@ -946,7 +952,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 351.388 330.547 Tm [<0023>28<00760067001B007400420051004B006700520058>]TJ @@ -954,7 +960,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 464.747 330.547 Tm [<0055004E0056>]TJ @@ -962,33 +968,33 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 133.768 286.712 Tm [<0510>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 139.039 284.251 Tm [<03C603C6>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 149.747 286.712 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 159.711 286.712 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 163.985 284.251 Tm [<03C603C6>]TJ @@ -996,19 +1002,19 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 175.247 286.712 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 185.765 286.712 Tm [<0512>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 190.079 284.251 Tm [<03C603C6>]TJ @@ -1016,13 +1022,13 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 389.98 286.712 Tm [<0510>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 395.25 284.251 Tm [<03C603F5>]TJ @@ -1030,19 +1036,19 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 406.512 286.712 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 417.03 286.712 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 421.304 284.251 Tm [<03C603F5>]TJ @@ -1050,7 +1056,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 459.766 286.712 Tm [<0055005200790056>]TJ @@ -1058,15 +1064,15 @@ ET EMC /Artifact BMC EMC -/Formula<> BDC +/Formula<> BDC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 159.711 271.768 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 163.985 269.307 Tm [<03F503C6>]TJ @@ -1074,19 +1080,19 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 175.247 271.768 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 185.765 271.768 Tm [<0512>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 190.079 269.307 Tm [<03F503C6>]TJ @@ -1094,13 +1100,13 @@ ET EMC /Artifact BMC EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 389.98 271.768 Tm [<0510>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 395.25 269.307 Tm [<03F503F5>]TJ @@ -1108,37 +1114,37 @@ ET EMC /Artifact BMC EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 406.512 271.768 Tm [<001E>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 417.03 271.768 Tm [<0511>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 421.304 269.307 Tm [<03F503F5>]TJ ET EMC -/mo<> BDC +/mo<> BDC BT /F21 9.96264 Tf 1 0 0 1 432.012 271.768 Tm [<000C>]TJ ET EMC -/mi<> BDC +/mi<> BDC BT /F21 9.96264 Tf 1 0 0 1 441.977 271.768 Tm [<0512>]TJ ET EMC -/mn<> BDC +/mn<> BDC BT /F22 6.97385 Tf 1 0 0 1 446.29 269.307 Tm [<03F503F5>]TJ @@ -1146,7 +1152,7 @@ ET EMC /Artifact BMC EMC -/mtext<> BDC +/mtext<> BDC BT /F15 9.96264 Tf 1 0 0 1 459.766 271.768 Tm [<0055005200520056>]TJ @@ -1189,7 +1195,7 @@ endobj << /Names[(l3ef0001) 23 0 R (l3ef0002) 25 0 R (l3ef0003) 27 0 R (l3ef0004) 29 0 R (l3ef0005) 31 0 R (l3ef0006) 33 0 R] >> endobj 6 0 obj -<< /Nums [0 [ 39 0 R 38 0 R 41 0 R 47 0 R 48 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 41 0 R 41 0 R 84 0 R 89 0 R 91 0 R 93 0 R 99 0 R 84 0 R 84 0 R 101 0 R 103 0 R 104 0 R 106 0 R 112 0 R 84 0 R 114 0 R 115 0 R 116 0 R 118 0 R 119 0 R 121 0 R 127 0 R 138 0 R 143 0 R 144 0 R 145 0 R 147 0 R 148 0 R 149 0 R 151 0 R 152 0 R 153 0 R 138 0 R 156 0 R 157 0 R 158 0 R 160 0 R 161 0 R 162 0 R 164 0 R 165 0 R 166 0 R 168 0 R 169 0 R 170 0 R 172 0 R 173 0 R 174 0 R 183 0 R 188 0 R 189 0 R 191 0 R 198 0 R 200 0 R 201 0 R 203 0 R 210 0 R 211 0 R 212 0 R 214 0 R 215 0 R 217 0 R 234 0 R 238 0 R 240 0 R 242 0 R 243 0 R 244 0 R 246 0 R 247 0 R 248 0 R 250 0 R 251 0 R 252 0 R 254 0 R 255 0 R 256 0 R 258 0 R 259 0 R 260 0 R 262 0 R 265 0 R 267 0 R 234 0 R 270 0 R 271 0 R 272 0 R 274 0 R 276 0 R 277 0 R 279 0 R 281 0 R 234 0 R 284 0 R 285 0 R 286 0 R 288 0 R 289 0 R 290 0 R 291 0 R 293 0 R 295 0 R 306 0 R 311 0 R 312 0 R 313 0 R 315 0 R 316 0 R 318 0 R 320 0 R 321 0 R 324 0 R 325 0 R 327 0 R 329 0 R 330 0 R 331 0 R 306 0 R 334 0 R 335 0 R 337 0 R 339 0 R 340 0 R 343 0 R 344 0 R 346 0 R 348 0 R 349 0 R 350 0 R 352 0 R 353 0 R 354 0 R] +<< /Nums [0 [ 39 0 R 38 0 R 38 0 R 41 0 R 47 0 R 48 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 41 0 R 41 0 R 84 0 R 89 0 R 91 0 R 93 0 R 99 0 R 84 0 R 84 0 R 101 0 R 103 0 R 104 0 R 106 0 R 112 0 R 84 0 R 114 0 R 115 0 R 116 0 R 118 0 R 119 0 R 121 0 R 127 0 R 138 0 R 143 0 R 144 0 R 145 0 R 147 0 R 148 0 R 149 0 R 151 0 R 152 0 R 153 0 R 138 0 R 156 0 R 157 0 R 158 0 R 160 0 R 161 0 R 162 0 R 164 0 R 165 0 R 166 0 R 168 0 R 169 0 R 170 0 R 172 0 R 173 0 R 174 0 R 183 0 R 188 0 R 189 0 R 191 0 R 198 0 R 200 0 R 201 0 R 203 0 R 210 0 R 211 0 R 212 0 R 214 0 R 215 0 R 217 0 R 234 0 R 238 0 R 240 0 R 242 0 R 243 0 R 244 0 R 246 0 R 247 0 R 248 0 R 250 0 R 251 0 R 252 0 R 254 0 R 255 0 R 256 0 R 258 0 R 259 0 R 260 0 R 262 0 R 265 0 R 267 0 R 234 0 R 270 0 R 271 0 R 272 0 R 274 0 R 276 0 R 277 0 R 279 0 R 281 0 R 234 0 R 284 0 R 285 0 R 286 0 R 288 0 R 289 0 R 290 0 R 291 0 R 293 0 R 295 0 R 306 0 R 311 0 R 312 0 R 313 0 R 315 0 R 316 0 R 318 0 R 320 0 R 321 0 R 324 0 R 325 0 R 327 0 R 329 0 R 330 0 R 331 0 R 306 0 R 334 0 R 335 0 R 337 0 R 339 0 R 340 0 R 343 0 R 344 0 R 346 0 R 348 0 R 349 0 R 350 0 R 352 0 R 353 0 R 354 0 R] ] >> endobj 373 0 obj @@ -1214,7 +1220,7 @@ endobj << /Kids [373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 380 0 obj << /display <> @@ -1233,7 +1239,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1266,16 +1272,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [38 0 R 40 0 R 83 0 R 137 0 R 182 0 R 233 0 R 305 0 R] /ID (ID.0006) >> endobj 38 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 37 0 R /K [39 0 R <> ] /ID (ID.0007) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 37 0 R /K [39 0 R <> <> ] /ID (ID.0007) >> endobj 39 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 38 0 R /K <> /ID (ID.0008) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 38 0 R /K <> /ID (ID.0008) >> endobj 40 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 41 0 R /ID (ID.0009) >> endobj 41 0 obj -<< /Type /StructElem /C /display /AF [23 0 R 43 0 R] /T /S /Formula /NS 11 0 R /P 40 0 R /K [<> <> <> 72 0 R ] /ID (ID.0010) >> +<< /Type /StructElem /C /display /AF [23 0 R 43 0 R] /T /S /Formula /NS 11 0 R /P 40 0 R /K [<> <> <> 72 0 R ] /ID (ID.0010) >> endobj 44 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 76 0 R /K [45 0 R 47 0 R 48 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R] /ID (ID.0011) >> @@ -1284,76 +1290,76 @@ endobj << /Type /StructElem /A 46 0 R /S /mspace /NS 13 0 R /P 44 0 R /ID (ID.0012) >> endobj 47 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0013) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0013) >> endobj 48 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0014) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0014) >> endobj 50 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0015) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0015) >> endobj 51 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0016) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0016) >> endobj 52 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0017) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0017) >> endobj 53 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0018) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0018) >> endobj 54 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0019) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0019) >> endobj 55 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0020) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0020) >> endobj 56 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0021) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0021) >> endobj 57 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0022) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 44 0 R /K <> /ID (ID.0022) >> endobj 58 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0023) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 44 0 R /K <> /ID (ID.0023) >> endobj 59 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 78 0 R /K [60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R] /ID (ID.0024) >> endobj 60 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0025) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0025) >> endobj 61 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0026) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0026) >> endobj 62 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0027) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0027) >> endobj 63 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0028) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0028) >> endobj 64 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0029) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0029) >> endobj 65 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0030) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0030) >> endobj 66 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0031) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0031) >> endobj 67 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0032) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0032) >> endobj 68 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0033) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0033) >> endobj 69 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0034) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0034) >> endobj 70 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 59 0 R /K <> /ID (ID.0035) >> endobj 71 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0036) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 59 0 R /K <> /ID (ID.0036) >> endobj 72 0 obj << /Type /StructElem /A 73 0 R /S /math /NS 13 0 R /P 41 0 R /K 74 0 R /ID (ID.0037) >> @@ -1374,7 +1380,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 84 0 R /ID (ID.0042) >> endobj 84 0 obj -<< /Type /StructElem /C /display /AF [25 0 R 86 0 R] /T /S /Formula /NS 11 0 R /P 83 0 R /K [<> <> <> <> 128 0 R ] /ID (ID.0043) >> +<< /Type /StructElem /C /display /AF [25 0 R 86 0 R] /T /S /Formula /NS 11 0 R /P 83 0 R /K [<> <> <> <> 128 0 R ] /ID (ID.0043) >> endobj 87 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 131 0 R /ID (ID.0044) >> @@ -1383,16 +1389,16 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 131 0 R /K [89 0 R 91 0 R] /ID (ID.0045) >> endobj 89 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 88 0 R /K <> /ID (ID.0046) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 88 0 R /K <> /ID (ID.0046) >> endobj 91 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 88 0 R /K <> /ID (ID.0047) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 88 0 R /K <> /ID (ID.0047) >> endobj 92 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 131 0 R /ID (ID.0048) >> endobj 93 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 94 0 R /K <> /ID (ID.0049) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 94 0 R /K <> /ID (ID.0049) >> endobj 94 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 131 0 R /K 93 0 R /ID (ID.0050) >> @@ -1410,28 +1416,28 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 131 0 R /ID (ID.0054) >> endobj 99 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 132 0 R /K <> /ID (ID.0055) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 132 0 R /K <> /ID (ID.0055) >> endobj 100 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 133 0 R /K 101 0 R /ID (ID.0056) >> endobj 101 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 100 0 R /K <> /ID (ID.0057) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 100 0 R /K <> /ID (ID.0057) >> endobj 102 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 133 0 R /K [103 0 R 104 0 R] /ID (ID.0058) >> endobj 103 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 102 0 R /K <> /ID (ID.0059) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 102 0 R /K <> /ID (ID.0059) >> endobj 104 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 102 0 R /K <> /ID (ID.0060) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 102 0 R /K <> /ID (ID.0060) >> endobj 105 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 133 0 R /ID (ID.0061) >> endobj 106 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 107 0 R /K <> /ID (ID.0062) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 107 0 R /K <> /ID (ID.0062) >> endobj 107 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 133 0 R /K 106 0 R /ID (ID.0063) >> @@ -1449,34 +1455,34 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 133 0 R /ID (ID.0067) >> endobj 112 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 134 0 R /K <> /ID (ID.0068) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 134 0 R /K <> /ID (ID.0068) >> endobj 113 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 135 0 R /K [114 0 R 115 0 R 116 0 R] /ID (ID.0069) >> endobj 114 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 113 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 113 0 R /K <> /ID (ID.0070) >> endobj 115 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 113 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 113 0 R /K <> /ID (ID.0071) >> endobj 116 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 113 0 R /K <> /ID (ID.0072) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 113 0 R /K <> /ID (ID.0072) >> endobj 117 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 135 0 R /K [118 0 R 119 0 R] /ID (ID.0073) >> endobj 118 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 117 0 R /K <> /ID (ID.0074) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 117 0 R /K <> /ID (ID.0074) >> endobj 119 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 117 0 R /K <> /ID (ID.0075) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 117 0 R /K <> /ID (ID.0075) >> endobj 120 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 135 0 R /ID (ID.0076) >> endobj 121 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 122 0 R /K <> /ID (ID.0077) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 122 0 R /K <> /ID (ID.0077) >> endobj 122 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 135 0 R /K 121 0 R /ID (ID.0078) >> @@ -1494,7 +1500,7 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 135 0 R /ID (ID.0082) >> endobj 127 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 136 0 R /K <> /ID (ID.0083) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 136 0 R /K <> /ID (ID.0083) >> endobj 128 0 obj << /Type /StructElem /A 73 0 R /S /math /NS 13 0 R /P 84 0 R /K 129 0 R /ID (ID.0084) >> @@ -1524,7 +1530,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 138 0 R /ID (ID.0092) >> endobj 138 0 obj -<< /Type /StructElem /C /display /AF [27 0 R 140 0 R] /T /S /Formula /NS 11 0 R /P 137 0 R /K [<> <> 175 0 R ] /ID (ID.0093) >> +<< /Type /StructElem /C /display /AF [27 0 R 140 0 R] /T /S /Formula /NS 11 0 R /P 137 0 R /K [<> <> 175 0 R ] /ID (ID.0093) >> endobj 141 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 178 0 R /K [142 0 R 145 0 R 146 0 R 149 0 R 150 0 R] /ID (ID.0094) >> @@ -1533,37 +1539,37 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 141 0 R /K [143 0 R 144 0 R] /ID (ID.0095) >> endobj 143 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 142 0 R /K <> /ID (ID.0096) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 142 0 R /K <> /ID (ID.0096) >> endobj 144 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 142 0 R /K <> /ID (ID.0097) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 142 0 R /K <> /ID (ID.0097) >> endobj 145 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 141 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 141 0 R /K <> /ID (ID.0098) >> endobj 146 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 141 0 R /K [147 0 R 148 0 R] /ID (ID.0099) >> endobj 147 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 146 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 146 0 R /K <> /ID (ID.0100) >> endobj 148 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 146 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 146 0 R /K <> /ID (ID.0101) >> endobj 149 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 141 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 141 0 R /K <> /ID (ID.0102) >> endobj 150 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 141 0 R /K [151 0 R 152 0 R] /ID (ID.0103) >> endobj 151 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 150 0 R /K <> /ID (ID.0104) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 150 0 R /K <> /ID (ID.0104) >> endobj 152 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 150 0 R /K <> /ID (ID.0105) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 150 0 R /K <> /ID (ID.0105) >> endobj 153 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 179 0 R /K <> /ID (ID.0106) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 179 0 R /K <> /ID (ID.0106) >> endobj 154 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 180 0 R /K [155 0 R 158 0 R 159 0 R 162 0 R 163 0 R 166 0 R 167 0 R 170 0 R 171 0 R] /ID (ID.0107) >> @@ -1572,61 +1578,61 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 154 0 R /K [156 0 R 157 0 R] /ID (ID.0108) >> endobj 156 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 155 0 R /K <> /ID (ID.0109) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 155 0 R /K <> /ID (ID.0109) >> endobj 157 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 155 0 R /K <> /ID (ID.0110) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 155 0 R /K <> /ID (ID.0110) >> endobj 158 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0111) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0111) >> endobj 159 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 154 0 R /K [160 0 R 161 0 R] /ID (ID.0112) >> endobj 160 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 159 0 R /K <> /ID (ID.0113) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 159 0 R /K <> /ID (ID.0113) >> endobj 161 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 159 0 R /K <> /ID (ID.0114) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 159 0 R /K <> /ID (ID.0114) >> endobj 162 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0115) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0115) >> endobj 163 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 154 0 R /K [164 0 R 165 0 R] /ID (ID.0116) >> endobj 164 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 163 0 R /K <> /ID (ID.0117) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 163 0 R /K <> /ID (ID.0117) >> endobj 165 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 163 0 R /K <> /ID (ID.0118) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 163 0 R /K <> /ID (ID.0118) >> endobj 166 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0119) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0119) >> endobj 167 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 154 0 R /K [168 0 R 169 0 R] /ID (ID.0120) >> endobj 168 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 167 0 R /K <> /ID (ID.0121) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 167 0 R /K <> /ID (ID.0121) >> endobj 169 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 167 0 R /K <> /ID (ID.0122) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 167 0 R /K <> /ID (ID.0122) >> endobj 170 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0123) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 154 0 R /K <> /ID (ID.0123) >> endobj 171 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 154 0 R /K [172 0 R 173 0 R] /ID (ID.0124) >> endobj 172 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 171 0 R /K <> /ID (ID.0125) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 171 0 R /K <> /ID (ID.0125) >> endobj 173 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 171 0 R /K <> /ID (ID.0126) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 171 0 R /K <> /ID (ID.0126) >> endobj 174 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 181 0 R /K <> /ID (ID.0127) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 181 0 R /K <> /ID (ID.0127) >> endobj 175 0 obj << /Type /StructElem /A 73 0 R /S /math /NS 13 0 R /P 138 0 R /K 176 0 R /ID (ID.0128) >> @@ -1650,7 +1656,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 183 0 R /ID (ID.0134) >> endobj 183 0 obj -<< /Type /StructElem /C /display /AF [29 0 R 185 0 R] /T /S /Formula /NS 11 0 R /P 182 0 R /K [<> 223 0 R ] /ID (ID.0135) >> +<< /Type /StructElem /C /display /AF [29 0 R 185 0 R] /T /S /Formula /NS 11 0 R /P 182 0 R /K [<> 223 0 R ] /ID (ID.0135) >> endobj 186 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 226 0 R /ID (ID.0136) >> @@ -1659,16 +1665,16 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 226 0 R /K [188 0 R 189 0 R] /ID (ID.0137) >> endobj 188 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 187 0 R /K <> /ID (ID.0138) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 187 0 R /K <> /ID (ID.0138) >> endobj 189 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 187 0 R /K <> /ID (ID.0139) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 187 0 R /K <> /ID (ID.0139) >> endobj 190 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 226 0 R /ID (ID.0140) >> endobj 191 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 192 0 R /K <> /ID (ID.0141) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 192 0 R /K <> /ID (ID.0141) >> endobj 192 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 226 0 R /K 191 0 R /ID (ID.0142) >> @@ -1689,22 +1695,22 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 229 0 R /K 198 0 R /ID (ID.0147) >> endobj 198 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 197 0 R /K <> /ID (ID.0148) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 197 0 R /K <> /ID (ID.0148) >> endobj 199 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 229 0 R /K [200 0 R 201 0 R] /ID (ID.0149) >> endobj 200 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 199 0 R /K <> /ID (ID.0150) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 199 0 R /K <> /ID (ID.0150) >> endobj 201 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 199 0 R /K <> /ID (ID.0151) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 199 0 R /K <> /ID (ID.0151) >> endobj 202 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 229 0 R /ID (ID.0152) >> endobj 203 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 204 0 R /K <> /ID (ID.0153) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 204 0 R /K <> /ID (ID.0153) >> endobj 204 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 229 0 R /K 203 0 R /ID (ID.0154) >> @@ -1725,28 +1731,28 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 231 0 R /K [210 0 R 211 0 R 212 0 R] /ID (ID.0159) >> endobj 210 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 209 0 R /K <> /ID (ID.0160) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 209 0 R /K <> /ID (ID.0160) >> endobj 211 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 209 0 R /K <> /ID (ID.0161) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 209 0 R /K <> /ID (ID.0161) >> endobj 212 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 209 0 R /K <> /ID (ID.0162) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 209 0 R /K <> /ID (ID.0162) >> endobj 213 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 231 0 R /K [214 0 R 215 0 R] /ID (ID.0163) >> endobj 214 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 213 0 R /K <> /ID (ID.0164) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 213 0 R /K <> /ID (ID.0164) >> endobj 215 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 213 0 R /K <> /ID (ID.0165) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 213 0 R /K <> /ID (ID.0165) >> endobj 216 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 231 0 R /ID (ID.0166) >> endobj 217 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 218 0 R /K <> /ID (ID.0167) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 218 0 R /K <> /ID (ID.0167) >> endobj 218 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 231 0 R /K 217 0 R /ID (ID.0168) >> @@ -1791,82 +1797,82 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 234 0 R /ID (ID.0181) >> endobj 234 0 obj -<< /Type /StructElem /C /display /AF [31 0 R 236 0 R] /T /S /Formula /NS 11 0 R /P 233 0 R /K [<> <> <> 296 0 R ] /ID (ID.0182) >> +<< /Type /StructElem /C /display /AF [31 0 R 236 0 R] /T /S /Formula /NS 11 0 R /P 233 0 R /K [<> <> <> 296 0 R ] /ID (ID.0182) >> endobj 237 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 299 0 R /K 238 0 R /ID (ID.0183) >> endobj 238 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 237 0 R /K <> /ID (ID.0184) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 237 0 R /K <> /ID (ID.0184) >> endobj 239 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 299 0 R /K [240 0 R 241 0 R 244 0 R 245 0 R 248 0 R 249 0 R 252 0 R 253 0 R 256 0 R 257 0 R 260 0 R 262 0 R] /ID (ID.0185) >> endobj 240 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0186) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0186) >> endobj 241 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 239 0 R /K [242 0 R 243 0 R] /ID (ID.0187) >> endobj 242 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 241 0 R /K <> /ID (ID.0188) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 241 0 R /K <> /ID (ID.0188) >> endobj 243 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 241 0 R /K <> /ID (ID.0189) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 241 0 R /K <> /ID (ID.0189) >> endobj 244 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0190) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0190) >> endobj 245 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 239 0 R /K [246 0 R 247 0 R] /ID (ID.0191) >> endobj 246 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 245 0 R /K <> /ID (ID.0192) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 245 0 R /K <> /ID (ID.0192) >> endobj 247 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 245 0 R /K <> /ID (ID.0193) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 245 0 R /K <> /ID (ID.0193) >> endobj 248 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0194) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0194) >> endobj 249 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 239 0 R /K [250 0 R 251 0 R] /ID (ID.0195) >> endobj 250 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 249 0 R /K <> /ID (ID.0196) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 249 0 R /K <> /ID (ID.0196) >> endobj 251 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 249 0 R /K <> /ID (ID.0197) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 249 0 R /K <> /ID (ID.0197) >> endobj 252 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0198) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0198) >> endobj 253 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 239 0 R /K [254 0 R 255 0 R] /ID (ID.0199) >> endobj 254 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 253 0 R /K <> /ID (ID.0200) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 253 0 R /K <> /ID (ID.0200) >> endobj 255 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 253 0 R /K <> /ID (ID.0201) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 253 0 R /K <> /ID (ID.0201) >> endobj 256 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0202) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0202) >> endobj 257 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 239 0 R /K [258 0 R 259 0 R] /ID (ID.0203) >> endobj 258 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 257 0 R /K <> /ID (ID.0204) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 257 0 R /K <> /ID (ID.0204) >> endobj 259 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 257 0 R /K <> /ID (ID.0205) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 257 0 R /K <> /ID (ID.0205) >> endobj 260 0 obj -<< /Type /StructElem /A 261 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0206) >> +<< /Type /StructElem /A 261 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0206) >> endobj 262 0 obj -<< /Type /StructElem /A 261 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0207) >> +<< /Type /StructElem /A 261 0 R /S /mo /NS 13 0 R /P 239 0 R /K <> /ID (ID.0207) >> endobj 263 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 299 0 R /K 264 0 R /ID (ID.0208) >> @@ -1875,13 +1881,13 @@ endobj << /Type /StructElem /A 46 0 R /S /mspace /NS 13 0 R /P 263 0 R /ID (ID.0209) >> endobj 265 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 266 0 R /K <> /ID (ID.0210) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 266 0 R /K <> /ID (ID.0210) >> endobj 266 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 299 0 R /K 265 0 R /ID (ID.0211) >> endobj 267 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 300 0 R /K <> /ID (ID.0212) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 300 0 R /K <> /ID (ID.0212) >> endobj 268 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 301 0 R /ID (ID.0213) >> @@ -1890,37 +1896,37 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 301 0 R /K [270 0 R 271 0 R 272 0 R 274 0 R 275 0 R] /ID (ID.0214) >> endobj 270 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 269 0 R /K <> /ID (ID.0215) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 269 0 R /K <> /ID (ID.0215) >> endobj 271 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 269 0 R /K <> /ID (ID.0216) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 269 0 R /K <> /ID (ID.0216) >> endobj 272 0 obj -<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 269 0 R /K <> /ID (ID.0217) >> +<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 269 0 R /K <> /ID (ID.0217) >> endobj 274 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 269 0 R /K <> /ID (ID.0218) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 269 0 R /K <> /ID (ID.0218) >> endobj 275 0 obj << /Type /StructElem /S /msup /NS 13 0 R /P 269 0 R /K [276 0 R 277 0 R] /ID (ID.0219) >> endobj 276 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 275 0 R /K <> /ID (ID.0220) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 275 0 R /K <> /ID (ID.0220) >> endobj 277 0 obj -<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 275 0 R /K <> /ID (ID.0221) >> +<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 275 0 R /K <> /ID (ID.0221) >> endobj 278 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 301 0 R /ID (ID.0222) >> endobj 279 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 280 0 R /K <> /ID (ID.0223) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 280 0 R /K <> /ID (ID.0223) >> endobj 280 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 301 0 R /K 279 0 R /ID (ID.0224) >> endobj 281 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 302 0 R /K <> /ID (ID.0225) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 302 0 R /K <> /ID (ID.0225) >> endobj 282 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 303 0 R /ID (ID.0226) >> @@ -1929,37 +1935,37 @@ endobj << /Type /StructElem /S /mtd /NS 13 0 R /P 303 0 R /K [284 0 R 285 0 R 286 0 R 288 0 R 289 0 R 290 0 R 291 0 R] /ID (ID.0227) >> endobj 284 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0228) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0228) >> endobj 285 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0229) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0229) >> endobj 286 0 obj -<< /Type /StructElem /A 287 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0230) >> +<< /Type /StructElem /A 287 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0230) >> endobj 288 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 283 0 R /K <> /ID (ID.0231) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 283 0 R /K <> /ID (ID.0231) >> endobj 289 0 obj -<< /Type /StructElem /A 287 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0232) >> +<< /Type /StructElem /A 287 0 R /S /mo /NS 13 0 R /P 283 0 R /K <> /ID (ID.0232) >> endobj 290 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0233) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0233) >> endobj 291 0 obj -<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0234) >> +<< /Type /StructElem /A 273 0 R /S /mi /NS 13 0 R /P 283 0 R /K <> /ID (ID.0234) >> endobj 292 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 303 0 R /ID (ID.0235) >> endobj 293 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 294 0 R /K <> /ID (ID.0236) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 294 0 R /K <> /ID (ID.0236) >> endobj 294 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 303 0 R /K 293 0 R /ID (ID.0237) >> endobj 295 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 304 0 R /K <> /ID (ID.0238) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 304 0 R /K <> /ID (ID.0238) >> endobj 296 0 obj << /Type /StructElem /A 73 0 R /S /math /NS 13 0 R /P 234 0 R /K 297 0 R /ID (ID.0239) >> @@ -1989,7 +1995,7 @@ endobj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 37 0 R /K 306 0 R /ID (ID.0247) >> endobj 306 0 obj -<< /Type /StructElem /C /display /AF [33 0 R 308 0 R] /T /S /Formula /NS 11 0 R /P 305 0 R /K [<> <> 355 0 R ] /ID (ID.0248) >> +<< /Type /StructElem /C /display /AF [33 0 R 308 0 R] /T /S /Formula /NS 11 0 R /P 305 0 R /K [<> <> 355 0 R ] /ID (ID.0248) >> endobj 309 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 358 0 R /K [310 0 R 313 0 R 314 0 R] /ID (ID.0249) >> @@ -1998,37 +2004,37 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 309 0 R /K [311 0 R 312 0 R] /ID (ID.0250) >> endobj 311 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 310 0 R /K <> /ID (ID.0251) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 310 0 R /K <> /ID (ID.0251) >> endobj 312 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 310 0 R /K <> /ID (ID.0252) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 310 0 R /K <> /ID (ID.0252) >> endobj 313 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 309 0 R /K <> /ID (ID.0253) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 309 0 R /K <> /ID (ID.0253) >> endobj 314 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 309 0 R /K [315 0 R 316 0 R] /ID (ID.0254) >> endobj 315 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 314 0 R /K <> /ID (ID.0255) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 314 0 R /K <> /ID (ID.0255) >> endobj 316 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 314 0 R /K <> /ID (ID.0256) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 314 0 R /K <> /ID (ID.0256) >> endobj 317 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 358 0 R /K [318 0 R 319 0 R] /ID (ID.0257) >> endobj 318 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 317 0 R /K <> /ID (ID.0258) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 317 0 R /K <> /ID (ID.0258) >> endobj 319 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 317 0 R /K [320 0 R 321 0 R] /ID (ID.0259) >> endobj 320 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 319 0 R /K <> /ID (ID.0260) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 319 0 R /K <> /ID (ID.0260) >> endobj 321 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 319 0 R /K <> /ID (ID.0261) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 319 0 R /K <> /ID (ID.0261) >> endobj 322 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 358 0 R /K 323 0 R /ID (ID.0262) >> @@ -2037,28 +2043,28 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 322 0 R /K [324 0 R 325 0 R] /ID (ID.0263) >> endobj 324 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 323 0 R /K <> /ID (ID.0264) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 323 0 R /K <> /ID (ID.0264) >> endobj 325 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 323 0 R /K <> /ID (ID.0265) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 323 0 R /K <> /ID (ID.0265) >> endobj 326 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 358 0 R /K [327 0 R 328 0 R] /ID (ID.0266) >> endobj 327 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 326 0 R /K <> /ID (ID.0267) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 326 0 R /K <> /ID (ID.0267) >> endobj 328 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 326 0 R /K [329 0 R 330 0 R] /ID (ID.0268) >> endobj 329 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 328 0 R /K <> /ID (ID.0269) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 328 0 R /K <> /ID (ID.0269) >> endobj 330 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 328 0 R /K <> /ID (ID.0270) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 328 0 R /K <> /ID (ID.0270) >> endobj 331 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 359 0 R /K <> /ID (ID.0271) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 359 0 R /K <> /ID (ID.0271) >> endobj 332 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 360 0 R /K 333 0 R /ID (ID.0272) >> @@ -2067,25 +2073,25 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 332 0 R /K [334 0 R 335 0 R] /ID (ID.0273) >> endobj 334 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 333 0 R /K <> /ID (ID.0274) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 333 0 R /K <> /ID (ID.0274) >> endobj 335 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 333 0 R /K <> /ID (ID.0275) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 333 0 R /K <> /ID (ID.0275) >> endobj 336 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 360 0 R /K [337 0 R 338 0 R] /ID (ID.0276) >> endobj 337 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 336 0 R /K <> /ID (ID.0277) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 336 0 R /K <> /ID (ID.0277) >> endobj 338 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 336 0 R /K [339 0 R 340 0 R] /ID (ID.0278) >> endobj 339 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 338 0 R /K <> /ID (ID.0279) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 338 0 R /K <> /ID (ID.0279) >> endobj 340 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 338 0 R /K <> /ID (ID.0280) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 338 0 R /K <> /ID (ID.0280) >> endobj 341 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /A 82 0 R /P 360 0 R /K 342 0 R /ID (ID.0281) >> @@ -2094,40 +2100,40 @@ endobj << /Type /StructElem /S /msub /NS 13 0 R /P 341 0 R /K [343 0 R 344 0 R] /ID (ID.0282) >> endobj 343 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 342 0 R /K <> /ID (ID.0283) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 342 0 R /K <> /ID (ID.0283) >> endobj 344 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 342 0 R /K <> /ID (ID.0284) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 342 0 R /K <> /ID (ID.0284) >> endobj 345 0 obj << /Type /StructElem /S /mtd /NS 13 0 R /P 360 0 R /K [346 0 R 347 0 R 350 0 R 351 0 R] /ID (ID.0285) >> endobj 346 0 obj -<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 345 0 R /K <> /ID (ID.0286) >> +<< /Type /StructElem /A 90 0 R /S /mo /NS 13 0 R /P 345 0 R /K <> /ID (ID.0286) >> endobj 347 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 345 0 R /K [348 0 R 349 0 R] /ID (ID.0287) >> endobj 348 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 347 0 R /K <> /ID (ID.0288) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 347 0 R /K <> /ID (ID.0288) >> endobj 349 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 347 0 R /K <> /ID (ID.0289) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 347 0 R /K <> /ID (ID.0289) >> endobj 350 0 obj -<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 345 0 R /K <> /ID (ID.0290) >> +<< /Type /StructElem /A 49 0 R /S /mo /NS 13 0 R /P 345 0 R /K <> /ID (ID.0290) >> endobj 351 0 obj << /Type /StructElem /S /msub /NS 13 0 R /P 345 0 R /K [352 0 R 353 0 R] /ID (ID.0291) >> endobj 352 0 obj -<< /Type /StructElem /S /mi /NS 13 0 R /P 351 0 R /K <> /ID (ID.0292) >> +<< /Type /StructElem /S /mi /NS 13 0 R /P 351 0 R /K <> /ID (ID.0292) >> endobj 353 0 obj -<< /Type /StructElem /S /mn /NS 13 0 R /P 351 0 R /K <> /ID (ID.0293) >> +<< /Type /StructElem /S /mn /NS 13 0 R /P 351 0 R /K <> /ID (ID.0293) >> endobj 354 0 obj -<< /Type /StructElem /S /mtext /NS 13 0 R /P 361 0 R /K <> /ID (ID.0294) >> +<< /Type /StructElem /S /mtext /NS 13 0 R /P 361 0 R /K <> /ID (ID.0294) >> endobj 355 0 obj << /Type /StructElem /A 73 0 R /S /math /NS 13 0 R /P 306 0 R /K 356 0 R /ID (ID.0295) >> @@ -2663,27 +2669,27 @@ endobj xref 0 404 0000000010 65535 f -0000027836 00000 n -0000027883 00000 n -0000027905 00000 n -0000027927 00000 n -0000074327 00000 n -0000028125 00000 n -0000035168 00000 n -0000037470 00000 n -0000035988 00000 n +0000027932 00000 n +0000027979 00000 n +0000028001 00000 n +0000028023 00000 n +0000074727 00000 n +0000028221 00000 n +0000035271 00000 n +0000037832 00000 n +0000036198 00000 n 0000000012 00000 f -0000036056 00000 n +0000036266 00000 n 0000000014 00000 f -0000036126 00000 n +0000036336 00000 n 0000000020 00000 f -0000037006 00000 n -0000036207 00000 n -0000037279 00000 n -0000037108 00000 n -0000037381 00000 n +0000037368 00000 n +0000036417 00000 n +0000037641 00000 n +0000037470 00000 n +0000037743 00000 n 0000000000 00000 f -0000037531 00000 n +0000037893 00000 n 0000000020 00000 n 0000001203 00000 n 0000001390 00000 n @@ -2696,378 +2702,378 @@ xref 0000007615 00000 n 0000007802 00000 n 0000009178 00000 n -0000037630 00000 n -0000037720 00000 n -0000037810 00000 n -0000037900 00000 n -0000038044 00000 n -0000038203 00000 n -0000038338 00000 n -0000038443 00000 n +0000037992 00000 n +0000038082 00000 n +0000038172 00000 n +0000038262 00000 n +0000038406 00000 n +0000038601 00000 n +0000038736 00000 n +0000038841 00000 n 0000009365 00000 n 0000009580 00000 n -0000038729 00000 n -0000038903 00000 n +0000039127 00000 n +0000039301 00000 n 0000009780 00000 n -0000039002 00000 n -0000039125 00000 n +0000039400 00000 n +0000039523 00000 n 0000009834 00000 n -0000039259 00000 n -0000039382 00000 n -0000039516 00000 n -0000039639 00000 n -0000039773 00000 n -0000039896 00000 n -0000040031 00000 n -0000040155 00000 n -0000040290 00000 n -0000040414 00000 n -0000040598 00000 n -0000040733 00000 n -0000040857 00000 n -0000040992 00000 n -0000041116 00000 n -0000041251 00000 n -0000041375 00000 n -0000041510 00000 n -0000041634 00000 n -0000041769 00000 n -0000041893 00000 n -0000042028 00000 n -0000042152 00000 n +0000039657 00000 n +0000039780 00000 n +0000039914 00000 n +0000040037 00000 n +0000040171 00000 n +0000040295 00000 n +0000040430 00000 n +0000040554 00000 n +0000040689 00000 n +0000040813 00000 n +0000040997 00000 n +0000041132 00000 n +0000041256 00000 n +0000041391 00000 n +0000041515 00000 n +0000041650 00000 n +0000041774 00000 n +0000041909 00000 n +0000042033 00000 n +0000042168 00000 n +0000042292 00000 n +0000042427 00000 n +0000042551 00000 n 0000009905 00000 n -0000042259 00000 n +0000042658 00000 n 0000009959 00000 n -0000042377 00000 n +0000042776 00000 n 0000010074 00000 n -0000042483 00000 n +0000042882 00000 n 0000010131 00000 n -0000042598 00000 n +0000042997 00000 n 0000010189 00000 n 0000010252 00000 n -0000042694 00000 n -0000042799 00000 n +0000043093 00000 n +0000043198 00000 n 0000010313 00000 n 0000010573 00000 n -0000043124 00000 n -0000043220 00000 n -0000043325 00000 n +0000043523 00000 n +0000043619 00000 n +0000043724 00000 n 0000010773 00000 n -0000043460 00000 n -0000043584 00000 n -0000043680 00000 n -0000043807 00000 n -0000043903 00000 n -0000043999 00000 n -0000044085 00000 n -0000044181 00000 n -0000044267 00000 n -0000044395 00000 n -0000044503 00000 n -0000044629 00000 n -0000044737 00000 n -0000044874 00000 n -0000045000 00000 n -0000045097 00000 n -0000045226 00000 n -0000045324 00000 n -0000045421 00000 n -0000045508 00000 n -0000045605 00000 n -0000045692 00000 n -0000045821 00000 n -0000045947 00000 n -0000046073 00000 n -0000046210 00000 n -0000046336 00000 n -0000046444 00000 n -0000046581 00000 n -0000046707 00000 n -0000046804 00000 n -0000046933 00000 n -0000047031 00000 n -0000047128 00000 n -0000047215 00000 n -0000047312 00000 n -0000047399 00000 n -0000047528 00000 n -0000047637 00000 n +0000043859 00000 n +0000043983 00000 n +0000044079 00000 n +0000044206 00000 n +0000044302 00000 n +0000044398 00000 n +0000044484 00000 n +0000044580 00000 n +0000044666 00000 n +0000044794 00000 n +0000044902 00000 n +0000045028 00000 n +0000045136 00000 n +0000045273 00000 n +0000045399 00000 n +0000045496 00000 n +0000045625 00000 n +0000045723 00000 n +0000045820 00000 n +0000045907 00000 n +0000046004 00000 n +0000046091 00000 n +0000046220 00000 n +0000046346 00000 n +0000046472 00000 n +0000046609 00000 n +0000046735 00000 n +0000046843 00000 n +0000046980 00000 n +0000047106 00000 n +0000047203 00000 n +0000047332 00000 n +0000047430 00000 n +0000047527 00000 n +0000047614 00000 n +0000047711 00000 n +0000047798 00000 n +0000047927 00000 n +0000048036 00000 n 0000010844 00000 n -0000047768 00000 n -0000047924 00000 n -0000048032 00000 n -0000048196 00000 n -0000048305 00000 n -0000048469 00000 n -0000048578 00000 n -0000048685 00000 n +0000048167 00000 n +0000048323 00000 n +0000048431 00000 n +0000048595 00000 n +0000048704 00000 n +0000048868 00000 n +0000048977 00000 n +0000049084 00000 n 0000010988 00000 n 0000011193 00000 n -0000048932 00000 n -0000049074 00000 n -0000049183 00000 n -0000049309 00000 n -0000049435 00000 n -0000049572 00000 n -0000049681 00000 n -0000049807 00000 n -0000049933 00000 n -0000050070 00000 n -0000050179 00000 n -0000050305 00000 n -0000050431 00000 n -0000050560 00000 n -0000050734 00000 n -0000050843 00000 n -0000050969 00000 n -0000051095 00000 n -0000051232 00000 n -0000051341 00000 n -0000051467 00000 n -0000051593 00000 n -0000051730 00000 n -0000051839 00000 n -0000051965 00000 n -0000052091 00000 n -0000052228 00000 n -0000052337 00000 n -0000052463 00000 n -0000052589 00000 n -0000052726 00000 n -0000052835 00000 n -0000052961 00000 n -0000053087 00000 n -0000053216 00000 n -0000053326 00000 n +0000049331 00000 n +0000049473 00000 n +0000049582 00000 n +0000049708 00000 n +0000049834 00000 n +0000049971 00000 n +0000050080 00000 n +0000050206 00000 n +0000050332 00000 n +0000050469 00000 n +0000050578 00000 n +0000050704 00000 n +0000050830 00000 n +0000050959 00000 n +0000051133 00000 n +0000051242 00000 n +0000051368 00000 n +0000051494 00000 n +0000051631 00000 n +0000051740 00000 n +0000051866 00000 n +0000051992 00000 n +0000052129 00000 n +0000052238 00000 n +0000052364 00000 n +0000052490 00000 n +0000052627 00000 n +0000052736 00000 n +0000052862 00000 n +0000052988 00000 n +0000053125 00000 n +0000053234 00000 n +0000053360 00000 n +0000053486 00000 n +0000053615 00000 n +0000053725 00000 n 0000011396 00000 n -0000053449 00000 n -0000053557 00000 n -0000053666 00000 n -0000053774 00000 n -0000053883 00000 n -0000053990 00000 n +0000053848 00000 n +0000053956 00000 n +0000054065 00000 n +0000054173 00000 n +0000054282 00000 n +0000054389 00000 n 0000011498 00000 n 0000011748 00000 n -0000054211 00000 n -0000054308 00000 n -0000054416 00000 n -0000054553 00000 n -0000054679 00000 n -0000054776 00000 n -0000054905 00000 n -0000055003 00000 n -0000055100 00000 n -0000055187 00000 n -0000055284 00000 n -0000055371 00000 n -0000055479 00000 n -0000055605 00000 n -0000055713 00000 n -0000055850 00000 n -0000055976 00000 n -0000056073 00000 n -0000056202 00000 n -0000056300 00000 n -0000056397 00000 n -0000056484 00000 n -0000056581 00000 n -0000056668 00000 n -0000056794 00000 n -0000056920 00000 n -0000057057 00000 n -0000057183 00000 n -0000057291 00000 n -0000057428 00000 n -0000057554 00000 n -0000057651 00000 n -0000057780 00000 n -0000057878 00000 n -0000057975 00000 n -0000058062 00000 n -0000058159 00000 n -0000058246 00000 n -0000058356 00000 n +0000054610 00000 n +0000054707 00000 n +0000054815 00000 n +0000054952 00000 n +0000055078 00000 n +0000055175 00000 n +0000055304 00000 n +0000055402 00000 n +0000055499 00000 n +0000055586 00000 n +0000055683 00000 n +0000055770 00000 n +0000055878 00000 n +0000056004 00000 n +0000056112 00000 n +0000056249 00000 n +0000056375 00000 n +0000056472 00000 n +0000056601 00000 n +0000056699 00000 n +0000056796 00000 n +0000056883 00000 n +0000056980 00000 n +0000057067 00000 n +0000057193 00000 n +0000057319 00000 n +0000057456 00000 n +0000057582 00000 n +0000057690 00000 n +0000057827 00000 n +0000057953 00000 n +0000058050 00000 n +0000058179 00000 n +0000058277 00000 n +0000058374 00000 n +0000058461 00000 n +0000058558 00000 n +0000058645 00000 n +0000058755 00000 n 0000011951 00000 n -0000058487 00000 n -0000058651 00000 n +0000058886 00000 n +0000059050 00000 n 0000012096 00000 n -0000058750 00000 n -0000058914 00000 n -0000059013 00000 n -0000059177 00000 n -0000059276 00000 n -0000059383 00000 n +0000059149 00000 n +0000059313 00000 n +0000059412 00000 n +0000059576 00000 n +0000059675 00000 n +0000059782 00000 n 0000012163 00000 n 0000012492 00000 n -0000059673 00000 n -0000059781 00000 n -0000059907 00000 n -0000060095 00000 n -0000060232 00000 n -0000060341 00000 n -0000060467 00000 n -0000060593 00000 n -0000060730 00000 n -0000060839 00000 n -0000060965 00000 n -0000061091 00000 n -0000061228 00000 n -0000061337 00000 n -0000061463 00000 n -0000061589 00000 n -0000061726 00000 n -0000061835 00000 n -0000061962 00000 n -0000062089 00000 n -0000062227 00000 n -0000062336 00000 n -0000062463 00000 n -0000062590 00000 n +0000060072 00000 n +0000060180 00000 n +0000060306 00000 n +0000060494 00000 n +0000060631 00000 n +0000060740 00000 n +0000060866 00000 n +0000060992 00000 n +0000061129 00000 n +0000061238 00000 n +0000061364 00000 n +0000061490 00000 n +0000061627 00000 n +0000061736 00000 n +0000061862 00000 n +0000061988 00000 n +0000062126 00000 n +0000062235 00000 n +0000062362 00000 n +0000062489 00000 n +0000062627 00000 n +0000062736 00000 n +0000062863 00000 n +0000062990 00000 n 0000012695 00000 n -0000062729 00000 n -0000062868 00000 n -0000062976 00000 n -0000063077 00000 n -0000063207 00000 n -0000063305 00000 n -0000063435 00000 n -0000063532 00000 n -0000063664 00000 n -0000063802 00000 n -0000063929 00000 n +0000063129 00000 n +0000063268 00000 n +0000063376 00000 n +0000063477 00000 n +0000063607 00000 n +0000063705 00000 n +0000063835 00000 n +0000063932 00000 n +0000064064 00000 n +0000064202 00000 n +0000064329 00000 n 0000012761 00000 n -0000064068 00000 n -0000064206 00000 n -0000064315 00000 n -0000064442 00000 n -0000064581 00000 n -0000064678 00000 n -0000064808 00000 n -0000064906 00000 n -0000065036 00000 n -0000065133 00000 n -0000065281 00000 n -0000065419 00000 n -0000065546 00000 n +0000064468 00000 n +0000064606 00000 n +0000064715 00000 n +0000064842 00000 n +0000064981 00000 n +0000065078 00000 n +0000065208 00000 n +0000065306 00000 n +0000065436 00000 n +0000065533 00000 n +0000065681 00000 n +0000065819 00000 n +0000065946 00000 n 0000012821 00000 n -0000065685 00000 n -0000065812 00000 n -0000065951 00000 n -0000066078 00000 n -0000066217 00000 n -0000066314 00000 n -0000066444 00000 n -0000066542 00000 n -0000066672 00000 n -0000066782 00000 n +0000066085 00000 n +0000066212 00000 n +0000066351 00000 n +0000066478 00000 n +0000066617 00000 n +0000066714 00000 n +0000066844 00000 n +0000066942 00000 n +0000067072 00000 n +0000067182 00000 n 0000012897 00000 n -0000066913 00000 n -0000067045 00000 n -0000067154 00000 n -0000067286 00000 n -0000067395 00000 n -0000067527 00000 n -0000067636 00000 n -0000067743 00000 n +0000067313 00000 n +0000067445 00000 n +0000067554 00000 n +0000067686 00000 n +0000067795 00000 n +0000067927 00000 n +0000068036 00000 n +0000068143 00000 n 0000013023 00000 n 0000013282 00000 n -0000067996 00000 n -0000068122 00000 n -0000068231 00000 n -0000068358 00000 n -0000068485 00000 n -0000068623 00000 n -0000068732 00000 n -0000068859 00000 n -0000068986 00000 n -0000069094 00000 n -0000069232 00000 n -0000069341 00000 n -0000069468 00000 n -0000069595 00000 n -0000069703 00000 n -0000069812 00000 n -0000069939 00000 n -0000070066 00000 n -0000070174 00000 n -0000070312 00000 n -0000070421 00000 n -0000070548 00000 n -0000070675 00000 n -0000070805 00000 n -0000070913 00000 n -0000071022 00000 n -0000071149 00000 n -0000071276 00000 n -0000071384 00000 n -0000071522 00000 n -0000071631 00000 n -0000071758 00000 n -0000071885 00000 n -0000071993 00000 n -0000072102 00000 n -0000072229 00000 n -0000072356 00000 n -0000072480 00000 n -0000072618 00000 n -0000072727 00000 n -0000072854 00000 n -0000072981 00000 n -0000073119 00000 n -0000073228 00000 n -0000073355 00000 n -0000073482 00000 n -0000073612 00000 n -0000073722 00000 n +0000068396 00000 n +0000068522 00000 n +0000068631 00000 n +0000068758 00000 n +0000068885 00000 n +0000069023 00000 n +0000069132 00000 n +0000069259 00000 n +0000069386 00000 n +0000069494 00000 n +0000069632 00000 n +0000069741 00000 n +0000069868 00000 n +0000069995 00000 n +0000070103 00000 n +0000070212 00000 n +0000070339 00000 n +0000070466 00000 n +0000070574 00000 n +0000070712 00000 n +0000070821 00000 n +0000070948 00000 n +0000071075 00000 n +0000071205 00000 n +0000071313 00000 n +0000071422 00000 n +0000071549 00000 n +0000071676 00000 n +0000071784 00000 n +0000071922 00000 n +0000072031 00000 n +0000072158 00000 n +0000072285 00000 n +0000072393 00000 n +0000072502 00000 n +0000072629 00000 n +0000072756 00000 n +0000072880 00000 n +0000073018 00000 n +0000073127 00000 n +0000073254 00000 n +0000073381 00000 n +0000073519 00000 n +0000073628 00000 n +0000073755 00000 n +0000073882 00000 n +0000074012 00000 n +0000074122 00000 n 0000013485 00000 n -0000073845 00000 n -0000073977 00000 n -0000074086 00000 n -0000074218 00000 n -0000074466 00000 n -0000027732 00000 n -0000027593 00000 n +0000074245 00000 n +0000074377 00000 n +0000074486 00000 n +0000074618 00000 n +0000074866 00000 n +0000027828 00000 n +0000027689 00000 n 0000013614 00000 n -0000103404 00000 n -0000100964 00000 n -0000094831 00000 n -0000089293 00000 n -0000103758 00000 n -0000027949 00000 n -0000027986 00000 n -0000029389 00000 n -0000030301 00000 n -0000031259 00000 n -0000032221 00000 n -0000033183 00000 n -0000034145 00000 n -0000035089 00000 n -0000035827 00000 n -0000086636 00000 n -0000088235 00000 n -0000086732 00000 n -0000088466 00000 n -0000089456 00000 n -0000089665 00000 n -0000093544 00000 n -0000089911 00000 n -0000093767 00000 n -0000094988 00000 n -0000095191 00000 n -0000099570 00000 n -0000095403 00000 n -0000099800 00000 n -0000101127 00000 n -0000101336 00000 n -0000102415 00000 n -0000101413 00000 n -0000102636 00000 n -0000103558 00000 n -0000103822 00000 n -0000103868 00000 n -0000104002 00000 n +0000103804 00000 n +0000101364 00000 n +0000095231 00000 n +0000089693 00000 n +0000104158 00000 n +0000028045 00000 n +0000028082 00000 n +0000029492 00000 n +0000030404 00000 n +0000031362 00000 n +0000032324 00000 n +0000033286 00000 n +0000034248 00000 n +0000035192 00000 n +0000036037 00000 n +0000087036 00000 n +0000088635 00000 n +0000087132 00000 n +0000088866 00000 n +0000089856 00000 n +0000090065 00000 n +0000093944 00000 n +0000090311 00000 n +0000094167 00000 n +0000095388 00000 n +0000095591 00000 n +0000099970 00000 n +0000095803 00000 n +0000100200 00000 n +0000101527 00000 n +0000101736 00000 n +0000102815 00000 n +0000101813 00000 n +0000103036 00000 n +0000103958 00000 n +0000104222 00000 n +0000104268 00000 n +0000104402 00000 n trailer << /Size 404 /Root 402 0 R /Info 403 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -104135 +104535 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/lua-uni-structelem-sqrt-frac.tpf b/required/latex-lab/testfiles-math-luatex/lua-uni-structelem-sqrt-frac.tpf index d7e933f56..999e25c10 100644 --- a/required/latex-lab/testfiles-math-luatex/lua-uni-structelem-sqrt-frac.tpf +++ b/required/latex-lab/testfiles-math-luatex/lua-uni-structelem-sqrt-frac.tpf @@ -194,7 +194,7 @@ endobj << /Kids [76 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 78 0 obj << /justify <> @@ -214,7 +214,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -876,24 +876,24 @@ xref 0000003768 00000 n 0000003790 00000 n 0000003812 00000 n -0000010776 00000 n +0000011035 00000 n 0000003972 00000 n 0000004691 00000 n -0000007033 00000 n -0000005551 00000 n +0000007292 00000 n +0000005658 00000 n 0000000012 00000 f -0000005619 00000 n +0000005726 00000 n 0000000014 00000 f -0000005689 00000 n +0000005796 00000 n 0000000020 00000 f -0000006569 00000 n -0000005770 00000 n -0000006842 00000 n -0000006671 00000 n -0000006944 00000 n +0000006828 00000 n +0000005877 00000 n +0000007101 00000 n +0000006930 00000 n +0000007203 00000 n 0000000000 00000 f 0000003259 00000 n -0000007094 00000 n +0000007353 00000 n 0000000020 00000 n 0000000257 00000 n 0000000444 00000 n @@ -902,79 +902,79 @@ xref 0000001124 00000 n 0000001311 00000 n 0000001578 00000 n -0000007215 00000 n -0000007304 00000 n -0000007393 00000 n -0000007482 00000 n -0000007586 00000 n -0000007703 00000 n -0000007876 00000 n -0000007971 00000 n -0000008067 00000 n -0000008188 00000 n -0000008292 00000 n -0000008409 00000 n -0000008582 00000 n -0000008677 00000 n -0000008782 00000 n -0000008903 00000 n -0000009024 00000 n -0000009128 00000 n -0000009245 00000 n -0000009418 00000 n -0000009513 00000 n -0000009618 00000 n -0000009739 00000 n -0000009860 00000 n -0000009964 00000 n -0000010081 00000 n -0000010289 00000 n -0000010400 00000 n -0000010521 00000 n +0000007474 00000 n +0000007563 00000 n +0000007652 00000 n +0000007741 00000 n +0000007845 00000 n +0000007962 00000 n +0000008135 00000 n +0000008230 00000 n +0000008326 00000 n +0000008447 00000 n +0000008551 00000 n +0000008668 00000 n +0000008841 00000 n +0000008936 00000 n +0000009041 00000 n +0000009162 00000 n +0000009283 00000 n +0000009387 00000 n +0000009504 00000 n +0000009677 00000 n +0000009772 00000 n +0000009877 00000 n +0000009998 00000 n +0000010119 00000 n +0000010223 00000 n +0000010340 00000 n +0000010548 00000 n +0000010659 00000 n +0000010780 00000 n 0000001765 00000 n -0000010654 00000 n 0000010913 00000 n +0000011172 00000 n 0000003622 00000 n 0000001824 00000 n 0000003394 00000 n 0000003455 00000 n 0000003507 00000 n 0000003569 00000 n -0000029952 00000 n -0000027234 00000 n -0000025024 00000 n -0000039736 00000 n -0000039893 00000 n +0000030211 00000 n +0000027493 00000 n +0000025283 00000 n +0000039995 00000 n +0000040152 00000 n 0000003834 00000 n 0000003870 00000 n 0000004099 00000 n 0000004654 00000 n -0000005350 00000 n -0000023106 00000 n -0000023129 00000 n -0000024025 00000 n -0000023174 00000 n -0000024254 00000 n -0000025184 00000 n -0000025390 00000 n -0000026249 00000 n -0000025422 00000 n -0000026478 00000 n -0000027394 00000 n -0000027600 00000 n -0000028918 00000 n -0000027661 00000 n -0000029146 00000 n -0000030112 00000 n -0000037747 00000 n -0000030318 00000 n -0000037952 00000 n -0000039955 00000 n -0000040056 00000 n -0000040114 00000 n -0000040355 00000 n +0000005457 00000 n +0000023365 00000 n +0000023388 00000 n +0000024284 00000 n +0000023433 00000 n +0000024513 00000 n +0000025443 00000 n +0000025649 00000 n +0000026508 00000 n +0000025681 00000 n +0000026737 00000 n +0000027653 00000 n +0000027859 00000 n +0000029177 00000 n +0000027920 00000 n +0000029405 00000 n +0000030371 00000 n +0000038006 00000 n +0000030577 00000 n +0000038211 00000 n +0000040214 00000 n +0000040315 00000 n +0000040373 00000 n +0000040614 00000 n trailer << /Size 102 /Root 100 0 R /Info 101 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -40565 +40824 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/lua-uni-varlim-commands.tpf b/required/latex-lab/testfiles-math-luatex/lua-uni-varlim-commands.tpf index 0c86aacea..60f3ff12a 100644 --- a/required/latex-lab/testfiles-math-luatex/lua-uni-varlim-commands.tpf +++ b/required/latex-lab/testfiles-math-luatex/lua-uni-varlim-commands.tpf @@ -208,7 +208,7 @@ endobj << /Kids [99 0 R ] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 101 0 obj << /justify <> @@ -228,7 +228,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -840,23 +840,23 @@ xref 0000005583 00000 n 0000005605 00000 n 0000005627 00000 n -0000015056 00000 n +0000015315 00000 n 0000005787 00000 n 0000006840 00000 n -0000009183 00000 n -0000007701 00000 n +0000009442 00000 n +0000007808 00000 n 0000000012 00000 f -0000007769 00000 n +0000007876 00000 n 0000000014 00000 f -0000007839 00000 n +0000007946 00000 n 0000000020 00000 f -0000008719 00000 n -0000007920 00000 n -0000008992 00000 n -0000008821 00000 n -0000009094 00000 n +0000008978 00000 n +0000008027 00000 n +0000009251 00000 n +0000009080 00000 n +0000009353 00000 n 0000000000 00000 f -0000009244 00000 n +0000009503 00000 n 0000000020 00000 n 0000000450 00000 n 0000000637 00000 n @@ -865,92 +865,92 @@ xref 0000001660 00000 n 0000001847 00000 n 0000002152 00000 n -0000009358 00000 n -0000009447 00000 n -0000009536 00000 n -0000009625 00000 n -0000009729 00000 n -0000009854 00000 n +0000009617 00000 n +0000009706 00000 n +0000009795 00000 n +0000009884 00000 n +0000009988 00000 n +0000010113 00000 n 0000002339 00000 n 0000002497 00000 n -0000010081 00000 n -0000010176 00000 n -0000010282 00000 n -0000010388 00000 n -0000010492 00000 n +0000010340 00000 n +0000010435 00000 n +0000010541 00000 n +0000010647 00000 n +0000010751 00000 n 0000002697 00000 n -0000010601 00000 n -0000010700 00000 n +0000010860 00000 n +0000010959 00000 n 0000002745 00000 n -0000010794 00000 n -0000010926 00000 n +0000011053 00000 n +0000011185 00000 n 0000002804 00000 n -0000011020 00000 n -0000011141 00000 n +0000011279 00000 n +0000011400 00000 n 0000002863 00000 n 0000003022 00000 n -0000011368 00000 n -0000011463 00000 n -0000011569 00000 n -0000011675 00000 n -0000011779 00000 n -0000011888 00000 n -0000011987 00000 n -0000012081 00000 n -0000012213 00000 n -0000012307 00000 n -0000012428 00000 n -0000012532 00000 n -0000012649 00000 n +0000011627 00000 n +0000011722 00000 n +0000011828 00000 n +0000011934 00000 n +0000012038 00000 n +0000012147 00000 n +0000012246 00000 n +0000012340 00000 n +0000012472 00000 n +0000012566 00000 n +0000012687 00000 n +0000012791 00000 n +0000012908 00000 n 0000003222 00000 n 0000003380 00000 n -0000012877 00000 n -0000012972 00000 n -0000013078 00000 n -0000013183 00000 n -0000013287 00000 n -0000013396 00000 n -0000013495 00000 n -0000013589 00000 n -0000013721 00000 n -0000013804 00000 n -0000013926 00000 n -0000014030 00000 n -0000014147 00000 n +0000013136 00000 n +0000013231 00000 n +0000013337 00000 n +0000013442 00000 n +0000013546 00000 n +0000013655 00000 n +0000013754 00000 n +0000013848 00000 n +0000013980 00000 n +0000014063 00000 n +0000014185 00000 n +0000014289 00000 n +0000014406 00000 n 0000003580 00000 n 0000003738 00000 n -0000014411 00000 n -0000014506 00000 n -0000014612 00000 n -0000014718 00000 n -0000014851 00000 n -0000014934 00000 n -0000015195 00000 n +0000014670 00000 n +0000014765 00000 n +0000014871 00000 n +0000014977 00000 n +0000015110 00000 n +0000015193 00000 n +0000015454 00000 n 0000005461 00000 n 0000005326 00000 n 0000003938 00000 n -0000041890 00000 n -0000029242 00000 n -0000042051 00000 n +0000042149 00000 n +0000029501 00000 n +0000042310 00000 n 0000005649 00000 n 0000005685 00000 n 0000005942 00000 n 0000006801 00000 n -0000007499 00000 n -0000027369 00000 n -0000028250 00000 n -0000027403 00000 n -0000028481 00000 n -0000029404 00000 n -0000029613 00000 n -0000039898 00000 n -0000029769 00000 n -0000040105 00000 n -0000042113 00000 n -0000042158 00000 n -0000042289 00000 n +0000007606 00000 n +0000027628 00000 n +0000028509 00000 n +0000027662 00000 n +0000028740 00000 n +0000029663 00000 n +0000029872 00000 n +0000040157 00000 n +0000030028 00000 n +0000040364 00000 n +0000042372 00000 n +0000042417 00000 n +0000042548 00000 n trailer << /Size 114 /Root 112 0 R /Info 113 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -42422 +42681 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/math-20-alt-noluamml.tpf b/required/latex-lab/testfiles-math-luatex/math-20-alt-noluamml.tpf index 2daa20aec..cdd15a48a 100644 --- a/required/latex-lab/testfiles-math-luatex/math-20-alt-noluamml.tpf +++ b/required/latex-lab/testfiles-math-luatex/math-20-alt-noluamml.tpf @@ -89,7 +89,7 @@ endobj << /Kids [41 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 43 0 obj << /justify <> @@ -110,7 +110,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -686,64 +686,64 @@ xref 0000001268 00000 n 0000001290 00000 n 0000001312 00000 n -0000006073 00000 n +0000006332 00000 n 0000001415 00000 n 0000001735 00000 n -0000004114 00000 n -0000002634 00000 n +0000004373 00000 n +0000002741 00000 n 0000000012 00000 f -0000002702 00000 n +0000002809 00000 n 0000000014 00000 f -0000002772 00000 n +0000002879 00000 n 0000000020 00000 f -0000003652 00000 n -0000002853 00000 n -0000003925 00000 n -0000003754 00000 n -0000004027 00000 n +0000003911 00000 n +0000002960 00000 n +0000004184 00000 n +0000004013 00000 n +0000004286 00000 n 0000000000 00000 f -0000004175 00000 n -0000004282 00000 n -0000004371 00000 n -0000004460 00000 n -0000004549 00000 n -0000004653 00000 n -0000004804 00000 n -0000005271 00000 n -0000005384 00000 n -0000005525 00000 n -0000006210 00000 n +0000004434 00000 n +0000004541 00000 n +0000004630 00000 n +0000004719 00000 n +0000004808 00000 n +0000004912 00000 n +0000005063 00000 n +0000005530 00000 n +0000005643 00000 n +0000005784 00000 n +0000006469 00000 n 0000001134 00000 n 0000000999 00000 n 0000000020 00000 n -0000031971 00000 n -0000028580 00000 n -0000025262 00000 n -0000032325 00000 n +0000032230 00000 n +0000028839 00000 n +0000025521 00000 n +0000032584 00000 n 0000001334 00000 n 0000001370 00000 n 0000001479 00000 n 0000001698 00000 n -0000002394 00000 n -0000023458 00000 n -0000024277 00000 n -0000023491 00000 n -0000024506 00000 n -0000025422 00000 n -0000025628 00000 n -0000027492 00000 n -0000025717 00000 n -0000027720 00000 n -0000028740 00000 n -0000028946 00000 n -0000030883 00000 n -0000029089 00000 n -0000031104 00000 n -0000032125 00000 n -0000032387 00000 n -0000032527 00000 n +0000002501 00000 n +0000023717 00000 n +0000024536 00000 n +0000023750 00000 n +0000024765 00000 n +0000025681 00000 n +0000025887 00000 n +0000027751 00000 n +0000025976 00000 n +0000027979 00000 n +0000028999 00000 n +0000029205 00000 n +0000031142 00000 n +0000029348 00000 n +0000031363 00000 n +0000032384 00000 n +0000032646 00000 n +0000032786 00000 n trailer << /Size 61 /Root 59 0 R /Info 60 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32824 +33083 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/math-20-structelem.tpf b/required/latex-lab/testfiles-math-luatex/math-20-structelem.tpf index 245389d3c..097146216 100644 --- a/required/latex-lab/testfiles-math-luatex/math-20-structelem.tpf +++ b/required/latex-lab/testfiles-math-luatex/math-20-structelem.tpf @@ -156,7 +156,7 @@ endobj << /Kids [63 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 65 0 obj << /justify <> @@ -177,7 +177,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -810,86 +810,86 @@ xref 0000002062 00000 n 0000002084 00000 n 0000002106 00000 n -0000008897 00000 n +0000009156 00000 n 0000002209 00000 n 0000002924 00000 n -0000005303 00000 n -0000003823 00000 n +0000005562 00000 n +0000003930 00000 n 0000000012 00000 f -0000003891 00000 n +0000003998 00000 n 0000000014 00000 f -0000003961 00000 n +0000004068 00000 n 0000000020 00000 f -0000004841 00000 n -0000004042 00000 n -0000005114 00000 n -0000004943 00000 n -0000005216 00000 n +0000005100 00000 n +0000004149 00000 n +0000005373 00000 n +0000005202 00000 n +0000005475 00000 n 0000000000 00000 f -0000005364 00000 n -0000005471 00000 n -0000005560 00000 n -0000005649 00000 n -0000005738 00000 n -0000005842 00000 n -0000005993 00000 n -0000006200 00000 n -0000006318 00000 n -0000006439 00000 n +0000005623 00000 n +0000005730 00000 n +0000005819 00000 n +0000005908 00000 n +0000005997 00000 n +0000006101 00000 n +0000006252 00000 n +0000006459 00000 n +0000006577 00000 n +0000006698 00000 n 0000000020 00000 n -0000006571 00000 n -0000006692 00000 n -0000006796 00000 n -0000006917 00000 n -0000007038 00000 n -0000007151 00000 n -0000007292 00000 n -0000007452 00000 n +0000006830 00000 n +0000006951 00000 n +0000007055 00000 n +0000007176 00000 n +0000007297 00000 n +0000007410 00000 n +0000007551 00000 n +0000007711 00000 n 0000000091 00000 n -0000007588 00000 n -0000007692 00000 n -0000007813 00000 n -0000007935 00000 n +0000007847 00000 n +0000007951 00000 n +0000008072 00000 n +0000008194 00000 n 0000000145 00000 n -0000008068 00000 n -0000008172 00000 n -0000008294 00000 n -0000008416 00000 n -0000008549 00000 n -0000008653 00000 n -0000008775 00000 n +0000008327 00000 n +0000008431 00000 n +0000008553 00000 n +0000008675 00000 n +0000008808 00000 n +0000008912 00000 n 0000009034 00000 n +0000009293 00000 n 0000001928 00000 n 0000001793 00000 n 0000000216 00000 n -0000034789 00000 n -0000031398 00000 n -0000028080 00000 n -0000035143 00000 n +0000035048 00000 n +0000031657 00000 n +0000028339 00000 n +0000035402 00000 n 0000002128 00000 n 0000002164 00000 n 0000002364 00000 n 0000002887 00000 n -0000003583 00000 n -0000026276 00000 n -0000027095 00000 n -0000026309 00000 n -0000027324 00000 n -0000028240 00000 n -0000028446 00000 n -0000030310 00000 n -0000028535 00000 n -0000030538 00000 n -0000031558 00000 n -0000031764 00000 n -0000033701 00000 n -0000031907 00000 n -0000033922 00000 n -0000034943 00000 n -0000035205 00000 n -0000035345 00000 n +0000003690 00000 n +0000026535 00000 n +0000027354 00000 n +0000026568 00000 n +0000027583 00000 n +0000028499 00000 n +0000028705 00000 n +0000030569 00000 n +0000028794 00000 n +0000030797 00000 n +0000031817 00000 n +0000032023 00000 n +0000033960 00000 n +0000032166 00000 n +0000034181 00000 n +0000035202 00000 n +0000035464 00000 n +0000035604 00000 n trailer << /Size 83 /Root 81 0 R /Info 82 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -35634 +35893 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/mathml-luamml-2.tpf b/required/latex-lab/testfiles-math-luatex/mathml-luamml-2.tpf index f89b7287e..5b4b6ce98 100644 --- a/required/latex-lab/testfiles-math-luatex/mathml-luamml-2.tpf +++ b/required/latex-lab/testfiles-math-luatex/mathml-luamml-2.tpf @@ -186,7 +186,7 @@ endobj << /Kids [62 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 64 0 obj << /display <> @@ -207,7 +207,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -786,23 +786,23 @@ xref 0000005631 00000 n 0000005653 00000 n 0000005675 00000 n -0000010557 00000 n +0000010816 00000 n 0000005880 00000 n 0000006271 00000 n -0000008650 00000 n -0000007170 00000 n +0000008909 00000 n +0000007277 00000 n 0000000012 00000 f -0000007238 00000 n +0000007345 00000 n 0000000014 00000 f -0000007308 00000 n +0000007415 00000 n 0000000020 00000 f -0000008188 00000 n -0000007389 00000 n -0000008461 00000 n -0000008290 00000 n -0000008563 00000 n +0000008447 00000 n +0000007496 00000 n +0000008720 00000 n +0000008549 00000 n +0000008822 00000 n 0000000000 00000 f -0000008711 00000 n +0000008970 00000 n 0000000020 00000 n 0000000643 00000 n 0000000830 00000 n @@ -811,61 +811,61 @@ xref 0000001877 00000 n 0000002064 00000 n 0000002337 00000 n -0000008832 00000 n -0000008921 00000 n -0000009010 00000 n -0000009099 00000 n -0000009203 00000 n +0000009091 00000 n +0000009180 00000 n +0000009269 00000 n +0000009358 00000 n +0000009462 00000 n 0000002524 00000 n 0000002726 00000 n -0000009441 00000 n -0000009545 00000 n +0000009700 00000 n +0000009804 00000 n 0000002926 00000 n 0000003130 00000 n -0000009749 00000 n -0000009853 00000 n -0000009970 00000 n +0000010008 00000 n +0000010112 00000 n +0000010229 00000 n 0000003330 00000 n 0000003485 00000 n -0000010153 00000 n -0000010257 00000 n -0000010374 00000 n +0000010412 00000 n +0000010516 00000 n +0000010633 00000 n 0000003685 00000 n 0000003833 00000 n -0000010694 00000 n +0000010953 00000 n 0000005497 00000 n 0000005362 00000 n 0000004033 00000 n -0000034939 00000 n -0000031741 00000 n -0000029583 00000 n -0000035305 00000 n +0000035198 00000 n +0000032000 00000 n +0000029842 00000 n +0000035564 00000 n 0000005697 00000 n 0000005733 00000 n 0000005778 00000 n 0000005951 00000 n 0000006234 00000 n -0000006930 00000 n -0000027722 00000 n -0000028608 00000 n -0000027768 00000 n -0000028829 00000 n -0000029737 00000 n -0000029937 00000 n -0000030756 00000 n -0000029970 00000 n -0000030985 00000 n -0000031901 00000 n -0000032107 00000 n -0000033831 00000 n -0000032227 00000 n -0000034059 00000 n -0000035099 00000 n -0000035367 00000 n -0000035411 00000 n -0000035565 00000 n +0000007037 00000 n +0000027981 00000 n +0000028867 00000 n +0000028027 00000 n +0000029088 00000 n +0000029996 00000 n +0000030196 00000 n +0000031015 00000 n +0000030229 00000 n +0000031244 00000 n +0000032160 00000 n +0000032366 00000 n +0000034090 00000 n +0000032486 00000 n +0000034318 00000 n +0000035358 00000 n +0000035626 00000 n +0000035670 00000 n +0000035824 00000 n trailer << /Size 83 /Root 81 0 R /Info 82 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -35697 +35956 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/mathml-luamml-3.tpf b/required/latex-lab/testfiles-math-luatex/mathml-luamml-3.tpf index cd000caab..2c336e6ea 100644 --- a/required/latex-lab/testfiles-math-luatex/mathml-luamml-3.tpf +++ b/required/latex-lab/testfiles-math-luatex/mathml-luamml-3.tpf @@ -144,7 +144,7 @@ endobj << /Kids [56 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 58 0 obj << /display <> @@ -165,7 +165,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -736,80 +736,80 @@ xref 0000003767 00000 n 0000003789 00000 n 0000003811 00000 n -0000008280 00000 n +0000008539 00000 n 0000003998 00000 n 0000004343 00000 n -0000006722 00000 n -0000005242 00000 n +0000006981 00000 n +0000005349 00000 n 0000000012 00000 f -0000005310 00000 n +0000005417 00000 n 0000000014 00000 f -0000005380 00000 n +0000005487 00000 n 0000000020 00000 f -0000006260 00000 n -0000005461 00000 n -0000006533 00000 n -0000006362 00000 n -0000006635 00000 n +0000006519 00000 n +0000005568 00000 n +0000006792 00000 n +0000006621 00000 n +0000006894 00000 n 0000000000 00000 f -0000006783 00000 n +0000007042 00000 n 0000000020 00000 n 0000000240 00000 n 0000000427 00000 n 0000000849 00000 n 0000001036 00000 n 0000001309 00000 n -0000006897 00000 n -0000006986 00000 n -0000007075 00000 n -0000007164 00000 n -0000007268 00000 n +0000007156 00000 n +0000007245 00000 n +0000007334 00000 n +0000007423 00000 n +0000007527 00000 n 0000001496 00000 n 0000001700 00000 n -0000007472 00000 n -0000007576 00000 n -0000007693 00000 n +0000007731 00000 n +0000007835 00000 n +0000007952 00000 n 0000001900 00000 n 0000002055 00000 n -0000007876 00000 n -0000007980 00000 n -0000008097 00000 n +0000008135 00000 n +0000008239 00000 n +0000008356 00000 n 0000002255 00000 n 0000002403 00000 n -0000008417 00000 n +0000008676 00000 n 0000003633 00000 n 0000003498 00000 n 0000002603 00000 n -0000032437 00000 n -0000029239 00000 n -0000027081 00000 n -0000032803 00000 n +0000032696 00000 n +0000029498 00000 n +0000027340 00000 n +0000033062 00000 n 0000003833 00000 n 0000003869 00000 n 0000003914 00000 n 0000004055 00000 n 0000004306 00000 n -0000005002 00000 n -0000025445 00000 n -0000026134 00000 n -0000025476 00000 n -0000026355 00000 n -0000027235 00000 n -0000027435 00000 n -0000028254 00000 n -0000027468 00000 n -0000028483 00000 n -0000029399 00000 n -0000029605 00000 n -0000031329 00000 n -0000029725 00000 n -0000031557 00000 n -0000032597 00000 n -0000032865 00000 n -0000032909 00000 n -0000033063 00000 n +0000005109 00000 n +0000025704 00000 n +0000026393 00000 n +0000025735 00000 n +0000026614 00000 n +0000027494 00000 n +0000027694 00000 n +0000028513 00000 n +0000027727 00000 n +0000028742 00000 n +0000029658 00000 n +0000029864 00000 n +0000031588 00000 n +0000029984 00000 n +0000031816 00000 n +0000032856 00000 n +0000033124 00000 n +0000033168 00000 n +0000033322 00000 n trailer << /Size 77 /Root 75 0 R /Info 76 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -33195 +33454 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/mathml-luamml-4.tpf b/required/latex-lab/testfiles-math-luatex/mathml-luamml-4.tpf index aa50e4a3e..5b24ddf9f 100644 --- a/required/latex-lab/testfiles-math-luatex/mathml-luamml-4.tpf +++ b/required/latex-lab/testfiles-math-luatex/mathml-luamml-4.tpf @@ -114,7 +114,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /display <> @@ -135,7 +135,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -703,72 +703,72 @@ xref 0000002291 00000 n 0000002313 00000 n 0000002335 00000 n -0000006699 00000 n +0000006958 00000 n 0000002438 00000 n 0000002783 00000 n -0000005162 00000 n -0000003682 00000 n +0000005421 00000 n +0000003789 00000 n 0000000012 00000 f -0000003750 00000 n +0000003857 00000 n 0000000014 00000 f -0000003820 00000 n +0000003927 00000 n 0000000020 00000 f -0000004700 00000 n -0000003901 00000 n -0000004973 00000 n -0000004802 00000 n -0000005075 00000 n +0000004959 00000 n +0000004008 00000 n +0000005232 00000 n +0000005061 00000 n +0000005334 00000 n 0000000000 00000 f -0000005223 00000 n -0000005337 00000 n -0000005426 00000 n -0000005515 00000 n -0000005604 00000 n -0000005708 00000 n +0000005482 00000 n +0000005596 00000 n +0000005685 00000 n +0000005774 00000 n +0000005863 00000 n +0000005967 00000 n 0000000020 00000 n 0000000224 00000 n -0000005905 00000 n -0000006009 00000 n -0000006126 00000 n +0000006164 00000 n +0000006268 00000 n +0000006385 00000 n 0000000424 00000 n 0000000579 00000 n -0000006302 00000 n -0000006406 00000 n -0000006523 00000 n +0000006561 00000 n +0000006665 00000 n +0000006782 00000 n 0000000779 00000 n 0000000927 00000 n -0000006836 00000 n +0000007095 00000 n 0000002157 00000 n 0000002022 00000 n 0000001127 00000 n -0000030856 00000 n -0000027658 00000 n -0000025500 00000 n -0000031222 00000 n +0000031115 00000 n +0000027917 00000 n +0000025759 00000 n +0000031481 00000 n 0000002357 00000 n 0000002393 00000 n 0000002495 00000 n 0000002746 00000 n -0000003442 00000 n -0000023864 00000 n -0000024553 00000 n -0000023895 00000 n -0000024774 00000 n -0000025654 00000 n -0000025854 00000 n -0000026673 00000 n -0000025887 00000 n -0000026902 00000 n -0000027818 00000 n -0000028024 00000 n -0000029748 00000 n -0000028144 00000 n -0000029976 00000 n -0000031016 00000 n -0000031284 00000 n -0000031424 00000 n +0000003549 00000 n +0000024123 00000 n +0000024812 00000 n +0000024154 00000 n +0000025033 00000 n +0000025913 00000 n +0000026113 00000 n +0000026932 00000 n +0000026146 00000 n +0000027161 00000 n +0000028077 00000 n +0000028283 00000 n +0000030007 00000 n +0000028403 00000 n +0000030235 00000 n +0000031275 00000 n +0000031543 00000 n +0000031683 00000 n trailer << /Size 69 /Root 67 0 R /Info 68 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -31556 +31815 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/mathml-luamml-MSFT.tpf b/required/latex-lab/testfiles-math-luatex/mathml-luamml-MSFT.tpf index 1632b956c..536a74581 100644 --- a/required/latex-lab/testfiles-math-luatex/mathml-luamml-MSFT.tpf +++ b/required/latex-lab/testfiles-math-luatex/mathml-luamml-MSFT.tpf @@ -172,7 +172,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /justify <> @@ -192,7 +192,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -654,43 +654,43 @@ xref 0000005105 00000 n 0000005127 00000 n 0000005149 00000 n -0000009153 00000 n +0000009412 00000 n 0000005289 00000 n 0000005595 00000 n -0000007939 00000 n -0000006455 00000 n +0000008198 00000 n +0000006562 00000 n 0000000012 00000 f -0000006523 00000 n +0000006630 00000 n 0000000014 00000 f -0000006593 00000 n +0000006700 00000 n 0000000020 00000 f -0000007473 00000 n -0000006674 00000 n -0000007746 00000 n -0000007575 00000 n -0000007848 00000 n +0000007732 00000 n +0000006781 00000 n +0000008005 00000 n +0000007834 00000 n +0000008107 00000 n 0000000000 00000 f -0000008000 00000 n +0000008259 00000 n 0000000020 00000 n 0000000342 00000 n -0000008107 00000 n -0000008196 00000 n -0000008285 00000 n -0000008374 00000 n -0000008478 00000 n -0000008595 00000 n +0000008366 00000 n +0000008455 00000 n +0000008544 00000 n +0000008633 00000 n +0000008737 00000 n +0000008854 00000 n 0000000529 00000 n -0000008769 00000 n -0000008873 00000 n -0000008990 00000 n -0000009290 00000 n +0000009028 00000 n +0000009132 00000 n +0000009249 00000 n +0000009549 00000 n 0000002320 00000 n 0000002185 00000 n 0000001260 00000 n -0000027888 00000 n -0000025256 00000 n -0000023098 00000 n -0000028254 00000 n +0000028147 00000 n +0000025515 00000 n +0000023357 00000 n +0000028513 00000 n 0000002407 00000 n 0000002873 00000 n 0000003078 00000 n @@ -700,27 +700,27 @@ xref 0000005241 00000 n 0000005339 00000 n 0000005558 00000 n -0000006254 00000 n -0000021462 00000 n -0000022151 00000 n -0000021493 00000 n -0000022372 00000 n -0000023252 00000 n -0000023452 00000 n -0000024271 00000 n -0000023485 00000 n -0000024500 00000 n -0000025416 00000 n -0000025622 00000 n -0000026854 00000 n -0000025683 00000 n -0000027082 00000 n -0000028048 00000 n -0000028316 00000 n -0000028360 00000 n -0000028502 00000 n +0000006361 00000 n +0000021721 00000 n +0000022410 00000 n +0000021752 00000 n +0000022631 00000 n +0000023511 00000 n +0000023711 00000 n +0000024530 00000 n +0000023744 00000 n +0000024759 00000 n +0000025675 00000 n +0000025881 00000 n +0000027113 00000 n +0000025942 00000 n +0000027341 00000 n +0000028307 00000 n +0000028575 00000 n +0000028619 00000 n +0000028761 00000 n trailer << /Size 70 /Root 68 0 R /Info 69 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -28634 +28893 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/mtag-008-gh765.tpf b/required/latex-lab/testfiles-math-luatex/mtag-008-gh765.tpf index ae1c73186..7bd729137 100644 --- a/required/latex-lab/testfiles-math-luatex/mtag-008-gh765.tpf +++ b/required/latex-lab/testfiles-math-luatex/mtag-008-gh765.tpf @@ -213,7 +213,7 @@ endobj << /Kids [61 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 63 0 obj << /justify <> @@ -246,7 +246,7 @@ endobj << /Type /StructElem /C /inline /AF [17 0 R] /T /S /Formula /P 14 0 R /K [<> 18 0 R <> <> ] /ID (ID.008) >> endobj 18 0 obj -<< /Type /StructElem /S /Div /P 15 0 R /K 19 0 R /ID (ID.009) >> +<< /Type /StructElem /S /text-parbox /P 15 0 R /K 19 0 R /ID (ID.009) >> endobj 19 0 obj << /Type /StructElem /S /semantic-para /P 18 0 R /K 20 0 R /ID (ID.010) >> @@ -285,7 +285,7 @@ endobj << /Type /StructElem /S /TD /P 31 0 R /K <> /ID (ID.021) >> endobj 33 0 obj -<< /Type /StructElem /S /Div /P 23 0 R /K 34 0 R /ID (ID.022) >> +<< /Type /StructElem /S /text-parbox /P 23 0 R /K 34 0 R /ID (ID.022) >> endobj 34 0 obj << /Type /StructElem /S /semantic-para /P 33 0 R /K 35 0 R /ID (ID.023) >> @@ -321,7 +321,7 @@ endobj << /Type /StructElem /S /TD /P 45 0 R /K <> /ID (ID.033) >> endobj 47 0 obj -<< /Type /StructElem /S /Div /P 37 0 R /K 48 0 R /ID (ID.034) >> +<< /Type /StructElem /S /text-parbox /P 37 0 R /K 48 0 R /ID (ID.034) >> endobj 48 0 obj << /Type /StructElem /S /semantic-para /P 47 0 R /K 49 0 R /ID (ID.035) >> @@ -1031,87 +1031,87 @@ xref 0000004188 00000 n 0000004210 00000 n 0000004232 00000 n -0000010054 00000 n +0000010185 00000 n 0000004290 00000 n 0000005102 00000 n 0000000000 00000 f -0000006021 00000 n -0000006122 00000 n -0000006198 00000 n -0000006274 00000 n -0000006350 00000 n -0000006441 00000 n -0000006546 00000 n +0000006128 00000 n +0000006229 00000 n +0000006305 00000 n +0000006381 00000 n +0000006457 00000 n +0000006548 00000 n +0000006653 00000 n 0000000020 00000 n 0000000192 00000 n -0000006788 00000 n -0000006870 00000 n -0000006962 00000 n -0000007091 00000 n -0000007191 00000 n -0000007282 00000 n +0000006895 00000 n +0000006985 00000 n +0000007077 00000 n +0000007206 00000 n +0000007306 00000 n +0000007397 00000 n 0000000392 00000 n 0000000682 00000 n -0000007501 00000 n -0000007712 00000 n -0000007796 00000 n -0000007877 00000 n -0000007986 00000 n -0000008070 00000 n -0000008151 00000 n -0000008260 00000 n -0000008342 00000 n -0000008434 00000 n -0000008563 00000 n -0000008654 00000 n +0000007616 00000 n +0000007827 00000 n +0000007911 00000 n +0000007992 00000 n +0000008101 00000 n +0000008185 00000 n +0000008266 00000 n +0000008375 00000 n +0000008465 00000 n +0000008557 00000 n +0000008686 00000 n +0000008777 00000 n 0000000882 00000 n 0000001170 00000 n -0000008877 00000 n -0000009089 00000 n -0000009173 00000 n -0000009254 00000 n -0000009364 00000 n -0000009448 00000 n -0000009529 00000 n -0000009639 00000 n -0000009721 00000 n -0000009813 00000 n -0000009943 00000 n -0000010172 00000 n +0000009000 00000 n +0000009212 00000 n +0000009296 00000 n +0000009377 00000 n +0000009487 00000 n +0000009571 00000 n +0000009652 00000 n +0000009762 00000 n +0000009852 00000 n +0000009944 00000 n +0000010074 00000 n +0000010303 00000 n 0000004018 00000 n 0000003883 00000 n 0000001370 00000 n -0000054726 00000 n -0000056668 00000 n -0000024019 00000 n -0000058605 00000 n -0000058761 00000 n +0000054857 00000 n +0000056799 00000 n +0000024150 00000 n +0000058736 00000 n +0000058892 00000 n 0000004254 00000 n 0000004431 00000 n 0000005065 00000 n -0000005781 00000 n -0000022337 00000 n -0000022362 00000 n -0000023057 00000 n -0000022394 00000 n -0000022467 00000 n -0000023293 00000 n -0000024173 00000 n -0000024373 00000 n -0000024608 00000 n -0000032241 00000 n -0000024633 00000 n -0000045073 00000 n -0000032463 00000 n -0000052865 00000 n -0000045360 00000 n -0000053083 00000 n -0000054884 00000 n -0000056826 00000 n -0000058823 00000 n -0000058938 00000 n +0000005888 00000 n +0000022468 00000 n +0000022493 00000 n +0000023188 00000 n +0000022525 00000 n +0000022598 00000 n +0000023424 00000 n +0000024304 00000 n +0000024504 00000 n +0000024739 00000 n +0000032372 00000 n +0000024764 00000 n +0000045204 00000 n +0000032594 00000 n +0000052996 00000 n +0000045491 00000 n +0000053214 00000 n +0000055015 00000 n +0000056957 00000 n +0000058954 00000 n +0000059069 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -59070 +59201 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/structelem-array-partly-faulty.tpf b/required/latex-lab/testfiles-math-luatex/structelem-array-partly-faulty.tpf index 395abc852..815b9b13f 100644 --- a/required/latex-lab/testfiles-math-luatex/structelem-array-partly-faulty.tpf +++ b/required/latex-lab/testfiles-math-luatex/structelem-array-partly-faulty.tpf @@ -158,7 +158,7 @@ endobj << /Kids [62 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 64 0 obj << /justify <> @@ -178,7 +178,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -659,81 +659,81 @@ xref 0000003147 00000 n 0000003169 00000 n 0000003191 00000 n -0000009188 00000 n +0000009447 00000 n 0000003297 00000 n 0000003906 00000 n -0000006248 00000 n -0000004766 00000 n +0000006507 00000 n +0000004873 00000 n 0000000012 00000 f -0000004834 00000 n +0000004941 00000 n 0000000014 00000 f -0000004904 00000 n +0000005011 00000 n 0000000020 00000 f -0000005784 00000 n -0000004985 00000 n -0000006057 00000 n -0000005886 00000 n -0000006159 00000 n +0000006043 00000 n +0000005092 00000 n +0000006316 00000 n +0000006145 00000 n +0000006418 00000 n 0000000000 00000 f -0000006309 00000 n +0000006568 00000 n 0000000020 00000 n 0000000563 00000 n -0000006407 00000 n -0000006496 00000 n -0000006585 00000 n -0000006674 00000 n -0000006778 00000 n -0000006964 00000 n +0000006666 00000 n +0000006755 00000 n +0000006844 00000 n +0000006933 00000 n +0000007037 00000 n +0000007223 00000 n 0000000750 00000 n 0000000961 00000 n -0000007225 00000 n -0000007329 00000 n -0000007450 00000 n -0000007544 00000 n -0000007665 00000 n -0000007769 00000 n -0000007890 00000 n -0000007994 00000 n -0000008115 00000 n -0000008209 00000 n -0000008330 00000 n -0000008434 00000 n -0000008555 00000 n -0000008666 00000 n +0000007484 00000 n +0000007588 00000 n +0000007709 00000 n +0000007803 00000 n +0000007924 00000 n +0000008028 00000 n +0000008149 00000 n +0000008253 00000 n +0000008374 00000 n +0000008468 00000 n +0000008589 00000 n +0000008693 00000 n +0000008814 00000 n +0000008925 00000 n 0000001161 00000 n -0000008764 00000 n -0000008870 00000 n +0000009023 00000 n +0000009129 00000 n 0000001215 00000 n 0000001272 00000 n -0000008980 00000 n -0000009090 00000 n -0000009325 00000 n +0000009239 00000 n +0000009349 00000 n +0000009584 00000 n 0000003025 00000 n 0000002890 00000 n 0000001330 00000 n -0000029156 00000 n -0000023680 00000 n -0000029510 00000 n +0000029415 00000 n +0000023939 00000 n +0000029769 00000 n 0000003213 00000 n 0000003249 00000 n 0000003410 00000 n 0000003869 00000 n -0000004565 00000 n -0000021506 00000 n -0000022656 00000 n -0000021547 00000 n -0000022884 00000 n -0000023840 00000 n -0000024046 00000 n -0000027858 00000 n -0000024343 00000 n -0000028079 00000 n -0000029310 00000 n -0000029572 00000 n -0000029616 00000 n -0000029745 00000 n +0000004672 00000 n +0000021765 00000 n +0000022915 00000 n +0000021806 00000 n +0000023143 00000 n +0000024099 00000 n +0000024305 00000 n +0000028117 00000 n +0000024602 00000 n +0000028338 00000 n +0000029569 00000 n +0000029831 00000 n +0000029875 00000 n +0000030004 00000 n trailer << /Size 78 /Root 76 0 R /Info 77 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -29877 +30136 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/structelem-mbox.tpf b/required/latex-lab/testfiles-math-luatex/structelem-mbox.tpf index 97dfbd781..79ec45c07 100644 --- a/required/latex-lab/testfiles-math-luatex/structelem-mbox.tpf +++ b/required/latex-lab/testfiles-math-luatex/structelem-mbox.tpf @@ -191,7 +191,7 @@ endobj << /Kids [69 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 71 0 obj << /display <> @@ -210,7 +210,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -737,52 +737,52 @@ xref 0000003089 00000 n 0000003111 00000 n 0000003133 00000 n -0000009067 00000 n +0000009326 00000 n 0000003191 00000 n 0000003823 00000 n -0000006124 00000 n -0000004642 00000 n +0000006383 00000 n +0000004749 00000 n 0000000012 00000 f -0000004710 00000 n +0000004817 00000 n 0000000014 00000 f -0000004780 00000 n +0000004887 00000 n 0000000020 00000 f -0000005660 00000 n -0000004861 00000 n -0000005933 00000 n -0000005762 00000 n -0000006035 00000 n +0000005919 00000 n +0000004968 00000 n +0000006192 00000 n +0000006021 00000 n +0000006294 00000 n 0000000000 00000 f 0000001880 00000 n -0000006185 00000 n -0000006283 00000 n -0000006372 00000 n -0000006461 00000 n -0000006550 00000 n -0000006654 00000 n -0000006814 00000 n -0000006956 00000 n -0000007081 00000 n +0000006444 00000 n +0000006542 00000 n +0000006631 00000 n +0000006720 00000 n +0000006809 00000 n +0000006913 00000 n +0000007073 00000 n +0000007215 00000 n +0000007340 00000 n 0000002064 00000 n -0000007255 00000 n -0000007350 00000 n -0000007471 00000 n -0000007614 00000 n -0000007735 00000 n +0000007514 00000 n +0000007609 00000 n +0000007730 00000 n +0000007873 00000 n +0000007994 00000 n 0000002281 00000 n -0000007911 00000 n -0000008006 00000 n -0000008128 00000 n +0000008170 00000 n +0000008265 00000 n +0000008387 00000 n 0000000020 00000 n -0000008234 00000 n -0000008339 00000 n -0000008450 00000 n -0000008571 00000 n +0000008493 00000 n +0000008598 00000 n +0000008709 00000 n +0000008830 00000 n 0000000074 00000 n -0000008703 00000 n -0000008814 00000 n -0000008935 00000 n -0000009204 00000 n +0000008962 00000 n +0000009073 00000 n +0000009194 00000 n +0000009463 00000 n 0000000145 00000 n 0000000199 00000 n 0000002955 00000 n @@ -793,38 +793,38 @@ xref 0000002672 00000 n 0000002725 00000 n 0000002787 00000 n -0000029702 00000 n -0000027116 00000 n +0000029961 00000 n +0000027375 00000 n 0000002840 00000 n 0000002902 00000 n -0000023894 00000 n -0000030068 00000 n +0000024153 00000 n +0000030327 00000 n 0000002030 00000 n 0000003155 00000 n 0000003343 00000 n 0000003786 00000 n -0000004482 00000 n -0000021555 00000 n -0000022880 00000 n -0000021643 00000 n -0000023103 00000 n -0000024047 00000 n -0000024246 00000 n -0000026028 00000 n -0000024382 00000 n -0000026249 00000 n -0000027270 00000 n -0000027470 00000 n -0000028682 00000 n -0000027518 00000 n -0000028910 00000 n -0000029862 00000 n -0000030130 00000 n -0000030253 00000 n -0000030289 00000 n -0000030529 00000 n +0000004589 00000 n +0000021814 00000 n +0000023139 00000 n +0000021902 00000 n +0000023362 00000 n +0000024306 00000 n +0000024505 00000 n +0000026287 00000 n +0000024641 00000 n +0000026508 00000 n +0000027529 00000 n +0000027729 00000 n +0000028941 00000 n +0000027777 00000 n +0000029169 00000 n +0000030121 00000 n +0000030389 00000 n +0000030512 00000 n +0000030548 00000 n +0000030788 00000 n trailer << /Size 91 /Root 89 0 R /Info 90 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -30815 +31074 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/structelem-sqrt-frac.tpf b/required/latex-lab/testfiles-math-luatex/structelem-sqrt-frac.tpf index 0a55a4029..d40f2c76d 100644 --- a/required/latex-lab/testfiles-math-luatex/structelem-sqrt-frac.tpf +++ b/required/latex-lab/testfiles-math-luatex/structelem-sqrt-frac.tpf @@ -194,7 +194,7 @@ endobj << /Kids [76 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 78 0 obj << /justify <> @@ -214,7 +214,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -793,24 +793,24 @@ xref 0000003771 00000 n 0000003793 00000 n 0000003815 00000 n -0000010779 00000 n +0000011038 00000 n 0000003975 00000 n 0000004694 00000 n -0000007036 00000 n -0000005554 00000 n +0000007295 00000 n +0000005661 00000 n 0000000012 00000 f -0000005622 00000 n +0000005729 00000 n 0000000014 00000 f -0000005692 00000 n +0000005799 00000 n 0000000020 00000 f -0000006572 00000 n -0000005773 00000 n -0000006845 00000 n -0000006674 00000 n -0000006947 00000 n +0000006831 00000 n +0000005880 00000 n +0000007104 00000 n +0000006933 00000 n +0000007206 00000 n 0000000000 00000 f 0000003262 00000 n -0000007097 00000 n +0000007356 00000 n 0000000020 00000 n 0000000257 00000 n 0000000444 00000 n @@ -819,80 +819,80 @@ xref 0000001124 00000 n 0000001311 00000 n 0000001578 00000 n -0000007218 00000 n -0000007307 00000 n -0000007396 00000 n -0000007485 00000 n -0000007589 00000 n -0000007706 00000 n -0000007879 00000 n -0000007974 00000 n -0000008070 00000 n -0000008191 00000 n -0000008295 00000 n -0000008412 00000 n -0000008585 00000 n -0000008680 00000 n -0000008785 00000 n -0000008906 00000 n -0000009027 00000 n -0000009131 00000 n -0000009248 00000 n -0000009421 00000 n -0000009516 00000 n -0000009621 00000 n -0000009742 00000 n -0000009863 00000 n -0000009967 00000 n -0000010084 00000 n -0000010292 00000 n -0000010403 00000 n -0000010524 00000 n +0000007477 00000 n +0000007566 00000 n +0000007655 00000 n +0000007744 00000 n +0000007848 00000 n +0000007965 00000 n +0000008138 00000 n +0000008233 00000 n +0000008329 00000 n +0000008450 00000 n +0000008554 00000 n +0000008671 00000 n +0000008844 00000 n +0000008939 00000 n +0000009044 00000 n +0000009165 00000 n +0000009286 00000 n +0000009390 00000 n +0000009507 00000 n +0000009680 00000 n +0000009775 00000 n +0000009880 00000 n +0000010001 00000 n +0000010122 00000 n +0000010226 00000 n +0000010343 00000 n +0000010551 00000 n +0000010662 00000 n +0000010783 00000 n 0000001765 00000 n -0000010657 00000 n 0000010916 00000 n +0000011175 00000 n 0000003625 00000 n 0000001824 00000 n 0000003397 00000 n 0000003458 00000 n 0000003510 00000 n 0000003572 00000 n -0000031914 00000 n -0000029196 00000 n -0000026986 00000 n -0000024737 00000 n -0000032280 00000 n +0000032173 00000 n +0000029455 00000 n +0000027245 00000 n +0000024996 00000 n +0000032539 00000 n 0000003837 00000 n 0000003873 00000 n 0000004102 00000 n 0000004657 00000 n -0000005353 00000 n -0000023101 00000 n -0000023790 00000 n -0000023132 00000 n -0000024011 00000 n -0000024891 00000 n -0000025091 00000 n -0000025987 00000 n -0000025136 00000 n -0000026216 00000 n -0000027146 00000 n -0000027352 00000 n -0000028211 00000 n -0000027384 00000 n -0000028440 00000 n -0000029356 00000 n -0000029562 00000 n -0000030880 00000 n -0000029623 00000 n -0000031108 00000 n -0000032074 00000 n -0000032342 00000 n -0000032443 00000 n -0000032502 00000 n -0000032744 00000 n +0000005460 00000 n +0000023360 00000 n +0000024049 00000 n +0000023391 00000 n +0000024270 00000 n +0000025150 00000 n +0000025350 00000 n +0000026246 00000 n +0000025395 00000 n +0000026475 00000 n +0000027405 00000 n +0000027611 00000 n +0000028470 00000 n +0000027643 00000 n +0000028699 00000 n +0000029615 00000 n +0000029821 00000 n +0000031139 00000 n +0000029882 00000 n +0000031367 00000 n +0000032333 00000 n +0000032601 00000 n +0000032702 00000 n +0000032761 00000 n +0000033003 00000 n trailer << /Size 103 /Root 101 0 R /Info 102 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32954 +33213 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/structelem-text.tpf b/required/latex-lab/testfiles-math-luatex/structelem-text.tpf index 35193d9f3..7a4c83eeb 100644 --- a/required/latex-lab/testfiles-math-luatex/structelem-text.tpf +++ b/required/latex-lab/testfiles-math-luatex/structelem-text.tpf @@ -221,7 +221,7 @@ endobj << /Kids [80 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 82 0 obj << /justify <> @@ -242,7 +242,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -869,110 +869,110 @@ xref 0000003053 00000 n 0000003075 00000 n 0000003097 00000 n -0000011858 00000 n +0000012117 00000 n 0000003155 00000 n 0000004155 00000 n -0000006536 00000 n -0000005054 00000 n +0000006795 00000 n +0000005161 00000 n 0000000012 00000 f -0000005122 00000 n +0000005229 00000 n 0000000014 00000 f -0000005192 00000 n +0000005299 00000 n 0000000020 00000 f -0000006072 00000 n -0000005273 00000 n -0000006345 00000 n -0000006174 00000 n -0000006447 00000 n +0000006331 00000 n +0000005380 00000 n +0000006604 00000 n +0000006433 00000 n +0000006706 00000 n 0000000000 00000 f 0000002544 00000 n -0000006597 00000 n -0000006711 00000 n -0000006800 00000 n -0000006889 00000 n -0000006978 00000 n -0000007082 00000 n -0000007199 00000 n -0000007372 00000 n -0000007540 00000 n -0000007651 00000 n -0000007772 00000 n +0000006856 00000 n +0000006970 00000 n +0000007059 00000 n +0000007148 00000 n +0000007237 00000 n +0000007341 00000 n +0000007458 00000 n +0000007631 00000 n +0000007799 00000 n +0000007910 00000 n +0000008031 00000 n 0000000020 00000 n -0000007904 00000 n -0000008025 00000 n -0000008143 00000 n -0000008264 00000 n -0000008396 00000 n -0000008517 00000 n -0000008621 00000 n -0000008781 00000 n -0000008951 00000 n -0000009062 00000 n -0000009184 00000 n -0000009317 00000 n -0000009439 00000 n +0000008163 00000 n +0000008284 00000 n +0000008402 00000 n +0000008523 00000 n +0000008655 00000 n +0000008776 00000 n +0000008880 00000 n +0000009040 00000 n +0000009210 00000 n +0000009321 00000 n +0000009443 00000 n +0000009576 00000 n +0000009698 00000 n 0000000091 00000 n -0000009568 00000 n -0000009689 00000 n -0000009822 00000 n -0000009944 00000 n -0000010048 00000 n -0000010165 00000 n -0000010339 00000 n -0000010509 00000 n -0000010620 00000 n -0000010742 00000 n -0000010875 00000 n -0000010997 00000 n -0000011122 00000 n -0000011244 00000 n -0000011377 00000 n -0000011499 00000 n +0000009827 00000 n +0000009948 00000 n +0000010081 00000 n +0000010203 00000 n +0000010307 00000 n +0000010424 00000 n +0000010598 00000 n +0000010768 00000 n +0000010879 00000 n +0000011001 00000 n +0000011134 00000 n +0000011256 00000 n +0000011381 00000 n +0000011503 00000 n +0000011636 00000 n +0000011758 00000 n 0000000145 00000 n -0000011632 00000 n -0000011736 00000 n +0000011891 00000 n 0000011995 00000 n +0000012254 00000 n 0000002907 00000 n 0000000216 00000 n 0000002679 00000 n 0000002740 00000 n 0000002792 00000 n 0000002854 00000 n -0000034068 00000 n -0000030961 00000 n -0000028688 00000 n -0000026510 00000 n -0000034437 00000 n +0000034327 00000 n +0000031220 00000 n +0000028947 00000 n +0000026769 00000 n +0000034696 00000 n 0000003119 00000 n 0000003387 00000 n 0000004118 00000 n -0000004814 00000 n -0000024346 00000 n -0000025493 00000 n -0000024404 00000 n -0000025722 00000 n -0000026670 00000 n -0000026876 00000 n -0000027718 00000 n -0000026930 00000 n -0000027939 00000 n -0000028841 00000 n -0000029040 00000 n -0000029972 00000 n -0000029105 00000 n -0000030193 00000 n -0000031115 00000 n -0000031315 00000 n -0000032990 00000 n -0000031402 00000 n -0000033219 00000 n -0000034230 00000 n -0000034499 00000 n -0000034601 00000 n -0000034639 00000 n -0000034881 00000 n +0000004921 00000 n +0000024605 00000 n +0000025752 00000 n +0000024663 00000 n +0000025981 00000 n +0000026929 00000 n +0000027135 00000 n +0000027977 00000 n +0000027189 00000 n +0000028198 00000 n +0000029100 00000 n +0000029299 00000 n +0000030231 00000 n +0000029364 00000 n +0000030452 00000 n +0000031374 00000 n +0000031574 00000 n +0000033249 00000 n +0000031661 00000 n +0000033478 00000 n +0000034489 00000 n +0000034758 00000 n +0000034860 00000 n +0000034898 00000 n +0000035140 00000 n trailer << /Size 107 /Root 105 0 R /Info 106 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -35168 +35427 %%EOF diff --git a/required/latex-lab/testfiles-math-luatex/varlim-commands.tpf b/required/latex-lab/testfiles-math-luatex/varlim-commands.tpf index dd53ff129..340f65694 100644 --- a/required/latex-lab/testfiles-math-luatex/varlim-commands.tpf +++ b/required/latex-lab/testfiles-math-luatex/varlim-commands.tpf @@ -220,7 +220,7 @@ endobj << /Kids [99 0 R ] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 101 0 obj << /justify <> @@ -240,7 +240,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -778,23 +778,23 @@ xref 0000005783 00000 n 0000005805 00000 n 0000005827 00000 n -0000015348 00000 n +0000015607 00000 n 0000005987 00000 n 0000007054 00000 n -0000009397 00000 n -0000007915 00000 n +0000009656 00000 n +0000008022 00000 n 0000000012 00000 f -0000007983 00000 n +0000008090 00000 n 0000000014 00000 f -0000008053 00000 n +0000008160 00000 n 0000000020 00000 f -0000008933 00000 n -0000008134 00000 n -0000009206 00000 n -0000009035 00000 n -0000009308 00000 n +0000009192 00000 n +0000008241 00000 n +0000009465 00000 n +0000009294 00000 n +0000009567 00000 n 0000000000 00000 f -0000009458 00000 n +0000009717 00000 n 0000000020 00000 n 0000000450 00000 n 0000000637 00000 n @@ -803,93 +803,93 @@ xref 0000001660 00000 n 0000001847 00000 n 0000002152 00000 n -0000009572 00000 n -0000009661 00000 n -0000009750 00000 n -0000009839 00000 n -0000009943 00000 n -0000010068 00000 n +0000009831 00000 n +0000009920 00000 n +0000010009 00000 n +0000010098 00000 n +0000010202 00000 n +0000010327 00000 n 0000002339 00000 n 0000002497 00000 n -0000010295 00000 n -0000010390 00000 n -0000010496 00000 n -0000010602 00000 n -0000010706 00000 n +0000010554 00000 n +0000010649 00000 n +0000010755 00000 n +0000010861 00000 n +0000010965 00000 n 0000002697 00000 n -0000010815 00000 n -0000010914 00000 n +0000011074 00000 n +0000011173 00000 n 0000002745 00000 n -0000011008 00000 n -0000011140 00000 n +0000011267 00000 n +0000011399 00000 n 0000002804 00000 n -0000011272 00000 n -0000011393 00000 n +0000011531 00000 n +0000011652 00000 n 0000002863 00000 n 0000003022 00000 n -0000011620 00000 n -0000011715 00000 n -0000011821 00000 n -0000011927 00000 n -0000012031 00000 n -0000012140 00000 n -0000012239 00000 n -0000012333 00000 n -0000012465 00000 n -0000012597 00000 n -0000012718 00000 n -0000012822 00000 n -0000012939 00000 n +0000011879 00000 n +0000011974 00000 n +0000012080 00000 n +0000012186 00000 n +0000012290 00000 n +0000012399 00000 n +0000012498 00000 n +0000012592 00000 n +0000012724 00000 n +0000012856 00000 n +0000012977 00000 n +0000013081 00000 n +0000013198 00000 n 0000003222 00000 n 0000003380 00000 n -0000013168 00000 n -0000013263 00000 n -0000013369 00000 n -0000013474 00000 n -0000013578 00000 n -0000013687 00000 n -0000013786 00000 n -0000013880 00000 n -0000014013 00000 n -0000014096 00000 n -0000014218 00000 n -0000014322 00000 n -0000014439 00000 n +0000013427 00000 n +0000013522 00000 n +0000013628 00000 n +0000013733 00000 n +0000013837 00000 n +0000013946 00000 n +0000014045 00000 n +0000014139 00000 n +0000014272 00000 n +0000014355 00000 n +0000014477 00000 n +0000014581 00000 n +0000014698 00000 n 0000003580 00000 n 0000003738 00000 n -0000014703 00000 n -0000014798 00000 n -0000014904 00000 n -0000015010 00000 n -0000015143 00000 n -0000015226 00000 n -0000015487 00000 n +0000014962 00000 n +0000015057 00000 n +0000015163 00000 n +0000015269 00000 n +0000015402 00000 n +0000015485 00000 n +0000015746 00000 n 0000005661 00000 n 0000005526 00000 n 0000003938 00000 n -0000032408 00000 n -0000029990 00000 n -0000032767 00000 n +0000032667 00000 n +0000030249 00000 n +0000033026 00000 n 0000005849 00000 n 0000005885 00000 n 0000006156 00000 n 0000007015 00000 n -0000007713 00000 n -0000027653 00000 n -0000028914 00000 n -0000027720 00000 n -0000029145 00000 n -0000030152 00000 n -0000030361 00000 n -0000031416 00000 n -0000030426 00000 n -0000031639 00000 n -0000032564 00000 n -0000032829 00000 n -0000032874 00000 n -0000033005 00000 n +0000007820 00000 n +0000027912 00000 n +0000029173 00000 n +0000027979 00000 n +0000029404 00000 n +0000030411 00000 n +0000030620 00000 n +0000031675 00000 n +0000030685 00000 n +0000031898 00000 n +0000032823 00000 n +0000033088 00000 n +0000033133 00000 n +0000033264 00000 n trailer << /Size 115 /Root 113 0 R /Info 114 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -33138 +33397 %%EOF diff --git a/required/latex-lab/testfiles-math/mathcapture-tag-001.tpf b/required/latex-lab/testfiles-math/mathcapture-tag-001.tpf index d766c09db..3538db245 100644 --- a/required/latex-lab/testfiles-math/mathcapture-tag-001.tpf +++ b/required/latex-lab/testfiles-math/mathcapture-tag-001.tpf @@ -361,7 +361,7 @@ endobj << /Kids [36 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 38 0 obj << /justify <> @@ -1551,76 +1551,76 @@ xref 0000015264 00000 n 0000015286 00000 n 0000015308 00000 n -0000019955 00000 n +0000020062 00000 n 0000015366 00000 n 0000015773 00000 n 0000000000 00000 f -0000016653 00000 n -0000016738 00000 n -0000016814 00000 n -0000016890 00000 n -0000016981 00000 n +0000016760 00000 n +0000016845 00000 n +0000016921 00000 n +0000016997 00000 n +0000017088 00000 n 0000014922 00000 n -0000017198 00000 n -0000018078 00000 n +0000017305 00000 n +0000018185 00000 n 0000000015 00000 n 0000000372 00000 n -0000019411 00000 n -0000019519 00000 n -0000019627 00000 n -0000019719 00000 n -0000019846 00000 n +0000019518 00000 n +0000019626 00000 n +0000019734 00000 n +0000019826 00000 n +0000019953 00000 n 0000000572 00000 n 0000015057 00000 n 0000012739 00000 n -0000092284 00000 n -0000093175 00000 n -0000081612 00000 n -0000085488 00000 n -0000083553 00000 n -0000090038 00000 n -0000087765 00000 n -0000093339 00000 n +0000092391 00000 n +0000093282 00000 n +0000081719 00000 n +0000085595 00000 n +0000083660 00000 n +0000090145 00000 n +0000087872 00000 n +0000093446 00000 n 0000015330 00000 n 0000015486 00000 n 0000015736 00000 n -0000016452 00000 n -0000020073 00000 n -0000020526 00000 n -0000020550 00000 n -0000020837 00000 n -0000020879 00000 n -0000021203 00000 n -0000079829 00000 n -0000021225 00000 n -0000021796 00000 n -0000030241 00000 n -0000030480 00000 n -0000040478 00000 n -0000040736 00000 n -0000048669 00000 n -0000048902 00000 n -0000056516 00000 n -0000056742 00000 n -0000064138 00000 n -0000064361 00000 n -0000067025 00000 n -0000067243 00000 n -0000079550 00000 n -0000079970 00000 n -0000081770 00000 n -0000083710 00000 n -0000085644 00000 n -0000087922 00000 n -0000090195 00000 n -0000092462 00000 n -0000093398 00000 n -0000093513 00000 n +0000016559 00000 n +0000020180 00000 n +0000020633 00000 n +0000020657 00000 n +0000020944 00000 n +0000020986 00000 n +0000021310 00000 n +0000079936 00000 n +0000021332 00000 n +0000021903 00000 n +0000030348 00000 n +0000030587 00000 n +0000040585 00000 n +0000040843 00000 n +0000048776 00000 n +0000049009 00000 n +0000056623 00000 n +0000056849 00000 n +0000064245 00000 n +0000064468 00000 n +0000067132 00000 n +0000067350 00000 n +0000079657 00000 n +0000080077 00000 n +0000081877 00000 n +0000083817 00000 n +0000085751 00000 n +0000088029 00000 n +0000090302 00000 n +0000092569 00000 n +0000093505 00000 n +0000093620 00000 n trailer << /Size 70 /Root 68 0 R /Info 69 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -93645 +93752 %%EOF diff --git a/required/latex-lab/testfiles-math/mathml-AF-ex1-keys.tpf b/required/latex-lab/testfiles-math/mathml-AF-ex1-keys.tpf index c5440cae5..89b0abd18 100644 --- a/required/latex-lab/testfiles-math/mathml-AF-ex1-keys.tpf +++ b/required/latex-lab/testfiles-math/mathml-AF-ex1-keys.tpf @@ -438,7 +438,7 @@ endstream endobj 57 0 obj << -/Length 2223 +/Length 2301 >> stream /opacity1 gs @@ -459,57 +459,62 @@ BT /F47 11.9552 Tf 271.329 563.135 Td [(Ma)27(y)]TJ/F52 9.9626 Tf( )Tj/F47 11.9552 Tf 26.328 0 Td [(20,)]TJ/F52 9.9626 Tf( )Tj/F47 11.9552 Tf 18.855 0 Td [(2016)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F49 14.3462 Tf 133.768 520.23 Td [(1)]TJ ET EMC /section <> BDC BT +/F52 9.9626 Tf 157.434 520.23 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F49 14.3462 Tf 157.434 520.23 Td [(Math)]TJ/F52 9.9626 Tf( )Tj/F49 14.3462 Tf 43.012 0 Td [(T)92(ests)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 498.411 Td [(Some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(inline)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 27.114 0 Td [(math,)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 28.774 0 Td [(let)]TJ ET EMC -/Formula <> BDC +/Formula <> BDC BT /F35 9.9626 Tf 230.604 498.411 Td [(x)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 239.618 498.411 Td [(and)]TJ ET EMC -/Formula <> BDC +/Formula <> BDC BT /F35 9.9626 Tf 258.985 498.411 Td [(y)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 267.547 498.411 Td [(satisfy)]TJ ET EMC -/Formula <> BDC +/Formula <> BDC BT /F35 9.9626 Tf 298.645 498.411 Td [(x)-278(>)-278(y)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 322.864 498.411 Td [(.)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 148.712 486.456 Td [(Some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(text,)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 23.517 0 Td [(and)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 19.367 0 Td [(an)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 13.834 0 Td [(equation.)]TJ ET EMC -/Formula <> BDC +/Formula <> BDC BT /F38 9.9626 Tf 284.135 473.742 Td [(p)]TJ ET @@ -566,7 +571,7 @@ endobj << /Names[(l3ef0001) 23 0 R (l3ef0002) 25 0 R (l3ef0003) 27 0 R (l3ef0004) 29 0 R] >> endobj 6 0 obj -<< /Nums [0 [ 34 0 R 36 0 R 37 0 R 40 0 R 39 0 R 42 0 R 43 0 R 42 0 R 44 0 R 42 0 R 47 0 R 42 0 R 51 0 R 52 0 R ] +<< /Nums [0 [ 34 0 R 36 0 R 37 0 R 40 0 R 39 0 R 39 0 R 42 0 R 43 0 R 42 0 R 44 0 R 42 0 R 47 0 R 42 0 R 51 0 R 52 0 R ] ] >> endobj 71 0 obj @@ -576,7 +581,7 @@ endobj << /Kids [71 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 73 0 obj << /center <> @@ -598,7 +603,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -643,34 +648,34 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [39 0 R 41 0 R 50 0 R] /ID (ID.010) >> endobj 39 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 38 0 R /K [40 0 R <>] /ID (ID.011) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 38 0 R /K [40 0 R <> <>] /ID (ID.011) >> endobj 40 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 39 0 R /K <> /ID (ID.012) >> endobj 41 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K 42 0 R /ID (ID.013) >> endobj 42 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K [<> 43 0 R <> 44 0 R <> 47 0 R <>] /ID (ID.014) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 41 0 R /K [<> 43 0 R <> 44 0 R <> 47 0 R <>] /ID (ID.014) >> endobj 43 0 obj -<< /Type /StructElem /C /inline /AF [23 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /C /inline /AF [23 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.015) >> endobj 44 0 obj -<< /Type /StructElem /C /inline /AF [46 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /C /inline /AF [46 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.016) >> endobj 47 0 obj -<< /Type /StructElem /C /inline /AF [27 0 R 49 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.017) >> +<< /Type /StructElem /C /inline /AF [27 0 R 49 0 R] /T /S /Formula /NS 11 0 R /P 42 0 R /K <> /ID (ID.017) >> endobj 50 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 38 0 R /K [51 0 R 52 0 R] /ID (ID.018) >> endobj 51 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 50 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 50 0 R /K <> /ID (ID.019) >> endobj 52 0 obj -<< /Type /StructElem /C /display /AF [29 0 R 54 0 R] /T /S /Formula /NS 11 0 R /P 50 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /C /display /AF [29 0 R 54 0 R] /T /S /Formula /NS 11 0 R /P 50 0 R /K <> /ID (ID.020) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 72 0 R /ClassMap 73 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> @@ -2187,27 +2192,27 @@ endobj xref 0 114 0000000010 65535 f -0000022787 00000 n -0000022834 00000 n -0000022856 00000 n -0000022878 00000 n -0000028788 00000 n -0000023083 00000 n -0000023617 00000 n -0000026035 00000 n -0000024555 00000 n +0000022865 00000 n +0000022912 00000 n +0000022934 00000 n +0000022956 00000 n +0000029166 00000 n +0000023161 00000 n +0000023702 00000 n +0000026379 00000 n +0000024747 00000 n 0000000012 00000 f -0000024623 00000 n +0000024815 00000 n 0000000014 00000 f -0000024693 00000 n +0000024885 00000 n 0000000020 00000 f -0000025573 00000 n -0000024774 00000 n -0000025846 00000 n -0000025675 00000 n -0000025948 00000 n +0000025917 00000 n +0000024966 00000 n +0000026190 00000 n +0000026019 00000 n +0000026292 00000 n 0000000000 00000 f -0000026096 00000 n +0000026440 00000 n 0000000015 00000 n 0000000248 00000 n 0000000435 00000 n @@ -2216,95 +2221,95 @@ xref 0000001113 00000 n 0000001300 00000 n 0000001645 00000 n -0000026203 00000 n -0000026292 00000 n -0000026381 00000 n -0000026501 00000 n -0000026597 00000 n -0000022492 00000 n -0000026735 00000 n -0000026873 00000 n -0000027011 00000 n -0000027122 00000 n -0000027305 00000 n -0000027436 00000 n -0000027540 00000 n -0000027802 00000 n -0000027976 00000 n +0000026547 00000 n +0000026636 00000 n +0000026725 00000 n +0000026845 00000 n +0000026941 00000 n +0000022570 00000 n +0000027079 00000 n +0000027217 00000 n +0000027355 00000 n +0000027466 00000 n +0000027682 00000 n +0000027813 00000 n +0000027917 00000 n +0000028180 00000 n +0000028354 00000 n 0000001832 00000 n 0000001977 00000 n -0000028150 00000 n +0000028528 00000 n 0000002177 00000 n 0000002324 00000 n -0000028332 00000 n -0000028445 00000 n -0000028585 00000 n +0000028710 00000 n +0000028823 00000 n +0000028963 00000 n 0000002524 00000 n 0000002727 00000 n 0000002927 00000 n -0000022627 00000 n +0000022705 00000 n 0000020210 00000 n -0000123228 00000 n -0000124122 00000 n -0000120959 00000 n -0000116421 00000 n -0000118690 00000 n -0000108010 00000 n -0000114170 00000 n -0000111891 00000 n -0000109954 00000 n -0000124287 00000 n -0000022900 00000 n -0000022936 00000 n -0000022981 00000 n -0000023217 00000 n -0000023580 00000 n -0000024276 00000 n -0000028925 00000 n -0000028949 00000 n -0000028973 00000 n -0000029027 00000 n -0000106189 00000 n -0000029393 00000 n -0000029868 00000 n -0000030272 00000 n -0000030745 00000 n -0000030767 00000 n -0000031009 00000 n -0000038937 00000 n -0000039167 00000 n -0000046538 00000 n -0000046759 00000 n -0000054168 00000 n -0000054386 00000 n -0000061924 00000 n -0000062154 00000 n -0000064818 00000 n -0000065036 00000 n -0000075585 00000 n -0000075822 00000 n -0000088724 00000 n -0000088994 00000 n -0000101207 00000 n -0000101463 00000 n -0000105950 00000 n -0000106367 00000 n -0000108170 00000 n -0000110112 00000 n -0000112048 00000 n -0000114331 00000 n -0000116600 00000 n -0000118869 00000 n -0000121138 00000 n -0000123408 00000 n -0000124346 00000 n -0000124391 00000 n -0000124547 00000 n +0000123606 00000 n +0000124500 00000 n +0000121337 00000 n +0000116799 00000 n +0000119068 00000 n +0000108388 00000 n +0000114548 00000 n +0000112269 00000 n +0000110332 00000 n +0000124665 00000 n +0000022978 00000 n +0000023014 00000 n +0000023059 00000 n +0000023302 00000 n +0000023665 00000 n +0000024468 00000 n +0000029303 00000 n +0000029327 00000 n +0000029351 00000 n +0000029405 00000 n +0000106567 00000 n +0000029771 00000 n +0000030246 00000 n +0000030650 00000 n +0000031123 00000 n +0000031145 00000 n +0000031387 00000 n +0000039315 00000 n +0000039545 00000 n +0000046916 00000 n +0000047137 00000 n +0000054546 00000 n +0000054764 00000 n +0000062302 00000 n +0000062532 00000 n +0000065196 00000 n +0000065414 00000 n +0000075963 00000 n +0000076200 00000 n +0000089102 00000 n +0000089372 00000 n +0000101585 00000 n +0000101841 00000 n +0000106328 00000 n +0000106745 00000 n +0000108548 00000 n +0000110490 00000 n +0000112426 00000 n +0000114709 00000 n +0000116978 00000 n +0000119247 00000 n +0000121516 00000 n +0000123786 00000 n +0000124724 00000 n +0000124769 00000 n +0000124925 00000 n trailer << /Size 114 /Root 112 0 R /Info 113 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -124779 +125157 %%EOF diff --git a/required/latex-lab/testfiles-math/mathml-AF-ex1.tlg b/required/latex-lab/testfiles-math/mathml-AF-ex1.tlg index 247ed116d..ca7739a1f 100644 --- a/required/latex-lab/testfiles-math/mathml-AF-ex1.tlg +++ b/required/latex-lab/testfiles-math/mathml-AF-ex1.tlg @@ -19,7 +19,7 @@ MathML statistic ==> 4 MathML AF attached Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~20 structure objects -(tagpdf) with ~16 'MC' leaf nodes. +(tagpdf) with ~17 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-math/mathml-write.tlg b/required/latex-lab/testfiles-math/mathml-write.tlg index 8aae5c7a7..997b50a4b 100644 --- a/required/latex-lab/testfiles-math/mathml-write.tlg +++ b/required/latex-lab/testfiles-math/mathml-write.tlg @@ -53,7 +53,7 @@ MathML statistic ==> 0 MathML AF attached Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~20 structure objects -(tagpdf) with ~16 'MC' leaf nodes. +(tagpdf) with ~17 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-math/mtag-004.tlg b/required/latex-lab/testfiles-math/mtag-004.tlg index 340180f2e..47de24a7a 100644 --- a/required/latex-lab/testfiles-math/mtag-004.tlg +++ b/required/latex-lab/testfiles-math/mtag-004.tlg @@ -19,7 +19,7 @@ Package tagpdf Info: Parent-Child 'Sect' --> 'Caption'. [Template] ==> Processing order key 'order' [Template] ==> --------------------Start---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} @@ -34,14 +34,14 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. [Template] ==> typeset 'title' data [Template] ==> --------------------After title---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-1' in 'order' +[Template] ==> Processing key 'separator-a' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'number' in 'order' @@ -63,40 +63,41 @@ Package tagpdf Info: Parent-Child 'Caption' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... [Template] ==> --------------------After number---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> Processing key 'separator-2' in 'order' +[Template] ==> Processing key 'separator-b' in 'order' [Template] ==> special group or separator item [Template] ==> collecting separator data [Template] ==> Processing key 'note' in 'order' -[Template] ==> \NoValue - dropping collected separators +[Template] ==> \NoValue +[Template] ==> dropping collected separators [Template] ==> Processing key 'punct' in 'order' [Template] ==> mc already open [Template] ==> typeset 'punct' data [Template] ==> --------------------After punct---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on +[Template] ==> ==> para-tagging: on (using text-block) [Template] ==> mc status: open The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. +[Template] ==> mc restore to closed [Template] ==> --------------------End---------------- [Template] ==> ==> hmode -[Template] ==> ==> para-tagging: on -[Template] ==> mc status: open +[Template] ==> ==> para-tagging: on (using text-block) +[Template] ==> mc status: closed The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{Caption}{Caption}} > {{theorem-like}{Sect}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -[Template] ==> mc restore to closed Package tagpdf Info: closing structure 6 tagged /Caption [Blocks] ==> Set captioned block everypar on input line ... [Blocks] ==> template:thmstyle:std end diff --git a/required/latex-lab/testfiles-math/mtag-008-gh765.tpf b/required/latex-lab/testfiles-math/mtag-008-gh765.tpf index 3e89c21e3..675207d6b 100644 --- a/required/latex-lab/testfiles-math/mtag-008-gh765.tpf +++ b/required/latex-lab/testfiles-math/mtag-008-gh765.tpf @@ -427,7 +427,7 @@ endobj << /Kids [73 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 75 0 obj << /justify <> @@ -448,7 +448,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -484,7 +484,7 @@ endobj << /Type /StructElem /C /inline /AF [29 0 R] /T /S /Formula /NS 11 0 R /P 25 0 R /K [<> 30 0 R <>] /ID (ID.007) >> endobj 30 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 27 0 R /K 31 0 R /ID (ID.008) >> +<< /Type /StructElem /S /text-parbox /NS 15 0 R /P 27 0 R /K 31 0 R /ID (ID.008) >> endobj 31 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 30 0 R /K 32 0 R /ID (ID.009) >> @@ -523,7 +523,7 @@ endobj << /Type /StructElem /S /TD /NS 11 0 R /P 43 0 R /K <> /ID (ID.020) >> endobj 45 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 35 0 R /K 46 0 R /ID (ID.021) >> +<< /Type /StructElem /S /text-parbox /NS 15 0 R /P 35 0 R /K 46 0 R /ID (ID.021) >> endobj 46 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 45 0 R /K 47 0 R /ID (ID.022) >> @@ -559,7 +559,7 @@ endobj << /Type /StructElem /S /TD /NS 11 0 R /P 57 0 R /K <> /ID (ID.032) >> endobj 59 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 49 0 R /K 60 0 R /ID (ID.033) >> +<< /Type /StructElem /S /text-parbox /NS 15 0 R /P 49 0 R /K 60 0 R /ID (ID.033) >> endobj 60 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 59 0 R /K 61 0 R /ID (ID.034) >> @@ -1365,105 +1365,105 @@ xref 0000015996 00000 n 0000016018 00000 n 0000016040 00000 n -0000024134 00000 n +0000024417 00000 n 0000016098 00000 n 0000016972 00000 n -0000019353 00000 n -0000017871 00000 n +0000019612 00000 n +0000017978 00000 n 0000000012 00000 f -0000017939 00000 n +0000018046 00000 n 0000000014 00000 f -0000018009 00000 n +0000018116 00000 n 0000000020 00000 f -0000018889 00000 n -0000018090 00000 n -0000019162 00000 n -0000018991 00000 n -0000019264 00000 n +0000019148 00000 n +0000018197 00000 n +0000019421 00000 n +0000019250 00000 n +0000019523 00000 n 0000000000 00000 f -0000019414 00000 n -0000019528 00000 n -0000019617 00000 n -0000019706 00000 n -0000019810 00000 n +0000019673 00000 n +0000019787 00000 n +0000019876 00000 n +0000019965 00000 n +0000020069 00000 n 0000015702 00000 n -0000019991 00000 n +0000020250 00000 n 0000000015 00000 n 0000000186 00000 n -0000020207 00000 n -0000020301 00000 n -0000020405 00000 n -0000020544 00000 n -0000020657 00000 n -0000020796 00000 n +0000020466 00000 n +0000020568 00000 n +0000020672 00000 n +0000020811 00000 n +0000020924 00000 n +0000021063 00000 n 0000000386 00000 n 0000000675 00000 n -0000021156 00000 n -0000021377 00000 n -0000021473 00000 n -0000021566 00000 n -0000021685 00000 n -0000021781 00000 n -0000021874 00000 n -0000021994 00000 n -0000022088 00000 n -0000022192 00000 n -0000022332 00000 n -0000022436 00000 n +0000021423 00000 n +0000021644 00000 n +0000021740 00000 n +0000021833 00000 n +0000021952 00000 n +0000022048 00000 n +0000022141 00000 n +0000022261 00000 n +0000022363 00000 n +0000022467 00000 n +0000022607 00000 n +0000022711 00000 n 0000000875 00000 n 0000001162 00000 n -0000022835 00000 n -0000023057 00000 n -0000023153 00000 n -0000023246 00000 n -0000023366 00000 n -0000023462 00000 n -0000023555 00000 n -0000023675 00000 n -0000023769 00000 n -0000023873 00000 n -0000024013 00000 n +0000023110 00000 n +0000023332 00000 n +0000023428 00000 n +0000023521 00000 n +0000023641 00000 n +0000023737 00000 n +0000023830 00000 n +0000023950 00000 n +0000024052 00000 n +0000024156 00000 n +0000024296 00000 n 0000001362 00000 n 0000015837 00000 n 0000013524 00000 n -0000059069 00000 n -0000061010 00000 n -0000066413 00000 n -0000065522 00000 n -0000063256 00000 n -0000066577 00000 n +0000059352 00000 n +0000061293 00000 n +0000066696 00000 n +0000065805 00000 n +0000063539 00000 n +0000066860 00000 n 0000016062 00000 n 0000016316 00000 n 0000016935 00000 n -0000017631 00000 n -0000057279 00000 n -0000024271 00000 n -0000024295 00000 n -0000024788 00000 n -0000024810 00000 n -0000024834 00000 n -0000024858 00000 n -0000032443 00000 n -0000032663 00000 n -0000040034 00000 n -0000040255 00000 n -0000042919 00000 n -0000043137 00000 n -0000045017 00000 n -0000045238 00000 n -0000057011 00000 n -0000057427 00000 n -0000059227 00000 n -0000061167 00000 n -0000063433 00000 n -0000065700 00000 n -0000066636 00000 n -0000066751 00000 n +0000017738 00000 n +0000057562 00000 n +0000024554 00000 n +0000024578 00000 n +0000025071 00000 n +0000025093 00000 n +0000025117 00000 n +0000025141 00000 n +0000032726 00000 n +0000032946 00000 n +0000040317 00000 n +0000040538 00000 n +0000043202 00000 n +0000043420 00000 n +0000045300 00000 n +0000045521 00000 n +0000057294 00000 n +0000057710 00000 n +0000059510 00000 n +0000061450 00000 n +0000063716 00000 n +0000065983 00000 n +0000066919 00000 n +0000067034 00000 n trailer << /Size 99 /Root 97 0 R /Info 98 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -66883 +67166 %%EOF diff --git a/required/latex-lab/testfiles-minipage/minipage-001.luatex.tlg b/required/latex-lab/testfiles-minipage/minipage-001.luatex.tlg index 3c4e4b8a9..949f29766 100644 --- a/required/latex-lab/testfiles-minipage/minipage-001.luatex.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-001.luatex.tlg @@ -66,7 +66,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -74,11 +74,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 10 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -87,7 +87,7 @@ tagpdf DEBUG Info: Struct 11 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -101,7 +101,7 @@ tagpdf DEBUG Info: Struct 12 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -112,18 +112,18 @@ Package tagpdf Info: closing structure 12 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 11 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -132,7 +132,7 @@ tagpdf DEBUG Info: Struct 13 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -146,7 +146,7 @@ tagpdf DEBUG Info: Struct 14 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -157,14 +157,14 @@ Package tagpdf Info: closing structure 14 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 13 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -172,7 +172,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 10 tagged /Div +Package tagpdf Info: closing structure 10 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -236,7 +236,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -244,11 +244,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 18 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -257,7 +257,7 @@ tagpdf DEBUG Info: Struct 19 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -271,7 +271,7 @@ tagpdf DEBUG Info: Struct 20 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -282,18 +282,18 @@ Package tagpdf Info: closing structure 20 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 19 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -302,7 +302,7 @@ tagpdf DEBUG Info: Struct 21 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -316,7 +316,7 @@ tagpdf DEBUG Info: Struct 22 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -327,14 +327,14 @@ Package tagpdf Info: closing structure 22 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 21 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -342,7 +342,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 18 tagged /Div +Package tagpdf Info: closing structure 18 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -406,7 +406,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -414,11 +414,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 26 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -427,7 +427,7 @@ tagpdf DEBUG Info: Struct 27 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -441,7 +441,7 @@ tagpdf DEBUG Info: Struct 28 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -452,18 +452,18 @@ Package tagpdf Info: closing structure 28 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 27 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -472,7 +472,7 @@ tagpdf DEBUG Info: Struct 29 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -486,7 +486,7 @@ tagpdf DEBUG Info: Struct 30 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -497,14 +497,14 @@ Package tagpdf Info: closing structure 30 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 29 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -512,7 +512,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 26 tagged /Div +Package tagpdf Info: closing structure 26 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -576,7 +576,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -584,11 +584,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 34 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -597,7 +597,7 @@ tagpdf DEBUG Info: Struct 35 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -611,7 +611,7 @@ tagpdf DEBUG Info: Struct 36 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -622,18 +622,18 @@ Package tagpdf Info: closing structure 36 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 35 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -642,7 +642,7 @@ tagpdf DEBUG Info: Struct 37 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -656,7 +656,7 @@ tagpdf DEBUG Info: Struct 38 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -667,14 +667,14 @@ Package tagpdf Info: closing structure 38 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 37 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -682,7 +682,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 34 tagged /Div +Package tagpdf Info: closing structure 34 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -781,7 +781,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -789,11 +789,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 44 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -802,7 +802,7 @@ tagpdf DEBUG Info: Struct 45 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -816,7 +816,7 @@ tagpdf DEBUG Info: Struct 46 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -827,18 +827,18 @@ Package tagpdf Info: closing structure 46 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 45 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -847,7 +847,7 @@ tagpdf DEBUG Info: Struct 47 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -861,7 +861,7 @@ tagpdf DEBUG Info: Struct 48 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -872,18 +872,18 @@ Package tagpdf Info: closing structure 48 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 47 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 44 tagged /Div +Package tagpdf Info: closing structure 44 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -947,7 +947,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -955,11 +955,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 52 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -968,7 +968,7 @@ tagpdf DEBUG Info: Struct 53 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -982,7 +982,7 @@ tagpdf DEBUG Info: Struct 54 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -993,18 +993,18 @@ Package tagpdf Info: closing structure 54 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 53 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1013,7 +1013,7 @@ tagpdf DEBUG Info: Struct 55 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1027,7 +1027,7 @@ tagpdf DEBUG Info: Struct 56 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1038,18 +1038,18 @@ Package tagpdf Info: closing structure 56 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 55 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 52 tagged /Div +Package tagpdf Info: closing structure 52 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1113,7 +1113,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1121,11 +1121,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 60 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1134,7 +1134,7 @@ tagpdf DEBUG Info: Struct 61 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1148,7 +1148,7 @@ tagpdf DEBUG Info: Struct 62 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1159,18 +1159,18 @@ Package tagpdf Info: closing structure 62 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 61 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1179,7 +1179,7 @@ tagpdf DEBUG Info: Struct 63 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1193,7 +1193,7 @@ tagpdf DEBUG Info: Struct 64 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1204,18 +1204,18 @@ Package tagpdf Info: closing structure 64 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 63 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 60 tagged /Div +Package tagpdf Info: closing structure 60 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1279,7 +1279,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1287,11 +1287,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 68 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1300,7 +1300,7 @@ tagpdf DEBUG Info: Struct 69 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1314,7 +1314,7 @@ tagpdf DEBUG Info: Struct 70 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1325,18 +1325,18 @@ Package tagpdf Info: closing structure 70 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 69 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1345,7 +1345,7 @@ tagpdf DEBUG Info: Struct 71 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1359,7 +1359,7 @@ tagpdf DEBUG Info: Struct 72 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1370,18 +1370,18 @@ Package tagpdf Info: closing structure 72 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 71 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 68 tagged /Div +Package tagpdf Info: closing structure 68 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1445,7 +1445,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1453,11 +1453,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 76 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1466,7 +1466,7 @@ tagpdf DEBUG Info: Struct 77 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1480,7 +1480,7 @@ tagpdf DEBUG Info: Struct 78 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1491,18 +1491,18 @@ Package tagpdf Info: closing structure 78 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 77 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1511,7 +1511,7 @@ tagpdf DEBUG Info: Struct 79 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1525,7 +1525,7 @@ tagpdf DEBUG Info: Struct 80 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1537,11 +1537,11 @@ Package tagpdf Info: closing structure 80 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1549,13 +1549,13 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 81 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1564,9 +1564,9 @@ tagpdf DEBUG Info: Struct 82 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1580,9 +1580,9 @@ tagpdf DEBUG Info: Struct 83 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1593,22 +1593,22 @@ Package tagpdf Info: closing structure 83 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 82 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1617,9 +1617,9 @@ tagpdf DEBUG Info: Struct 84 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1633,9 +1633,9 @@ tagpdf DEBUG Info: Struct 85 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1646,18 +1646,18 @@ Package tagpdf Info: closing structure 85 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 84 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1680,11 +1680,11 @@ Underfull \hbox (badness 10000) in paragraph at lines ... .\OT1/cmr/m/n/10 e .\OT1/cmr/m/n/10 r .\glue(\rightskip) 0.0 -Package tagpdf Info: closing structure 81 tagged /Div +Package tagpdf Info: closing structure 81 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1698,7 +1698,7 @@ tagpdf DEBUG Info: Struct 86 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1710,14 +1710,14 @@ Package tagpdf Info: closing structure 86 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 79 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1725,7 +1725,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 76 tagged /Div +Package tagpdf Info: closing structure 76 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} diff --git a/required/latex-lab/testfiles-minipage/minipage-001.tlg b/required/latex-lab/testfiles-minipage/minipage-001.tlg index 180511785..3cd8664bd 100644 --- a/required/latex-lab/testfiles-minipage/minipage-001.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-001.tlg @@ -70,7 +70,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -78,11 +78,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 9 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -91,7 +91,7 @@ tagpdf DEBUG Info: Struct 10 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -105,7 +105,7 @@ tagpdf DEBUG Info: Struct 11 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -118,18 +118,18 @@ Package tagpdf Info: closing structure 11 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 10 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -138,7 +138,7 @@ tagpdf DEBUG Info: Struct 12 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -152,7 +152,7 @@ tagpdf DEBUG Info: Struct 13 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -165,14 +165,14 @@ Package tagpdf Info: closing structure 13 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 12 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -180,7 +180,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 9 tagged /Div +Package tagpdf Info: closing structure 9 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -248,7 +248,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -256,11 +256,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 17 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -269,7 +269,7 @@ tagpdf DEBUG Info: Struct 18 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -283,7 +283,7 @@ tagpdf DEBUG Info: Struct 19 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -296,18 +296,18 @@ Package tagpdf Info: closing structure 19 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 18 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -316,7 +316,7 @@ tagpdf DEBUG Info: Struct 20 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -330,7 +330,7 @@ tagpdf DEBUG Info: Struct 21 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -343,14 +343,14 @@ Package tagpdf Info: closing structure 21 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 20 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -358,7 +358,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 17 tagged /Div +Package tagpdf Info: closing structure 17 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -426,7 +426,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -434,11 +434,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 25 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -447,7 +447,7 @@ tagpdf DEBUG Info: Struct 26 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -461,7 +461,7 @@ tagpdf DEBUG Info: Struct 27 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -474,18 +474,18 @@ Package tagpdf Info: closing structure 27 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 26 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -494,7 +494,7 @@ tagpdf DEBUG Info: Struct 28 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -508,7 +508,7 @@ tagpdf DEBUG Info: Struct 29 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -521,14 +521,14 @@ Package tagpdf Info: closing structure 29 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 28 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -536,7 +536,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 25 tagged /Div +Package tagpdf Info: closing structure 25 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -604,7 +604,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -612,11 +612,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 33 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -625,7 +625,7 @@ tagpdf DEBUG Info: Struct 34 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -639,7 +639,7 @@ tagpdf DEBUG Info: Struct 35 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -652,18 +652,18 @@ Package tagpdf Info: closing structure 35 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 34 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -672,7 +672,7 @@ tagpdf DEBUG Info: Struct 36 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -686,7 +686,7 @@ tagpdf DEBUG Info: Struct 37 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -699,14 +699,14 @@ Package tagpdf Info: closing structure 37 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 36 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -714,7 +714,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 33 tagged /Div +Package tagpdf Info: closing structure 33 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -819,7 +819,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -827,11 +827,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 43 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -840,7 +840,7 @@ tagpdf DEBUG Info: Struct 44 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -854,7 +854,7 @@ tagpdf DEBUG Info: Struct 45 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -867,18 +867,18 @@ Package tagpdf Info: closing structure 45 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 44 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -887,7 +887,7 @@ tagpdf DEBUG Info: Struct 46 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -901,7 +901,7 @@ tagpdf DEBUG Info: Struct 47 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -914,18 +914,18 @@ Package tagpdf Info: closing structure 47 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 46 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 43 tagged /Div +Package tagpdf Info: closing structure 43 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -993,7 +993,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1001,11 +1001,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 51 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1014,7 +1014,7 @@ tagpdf DEBUG Info: Struct 52 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1028,7 +1028,7 @@ tagpdf DEBUG Info: Struct 53 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1041,18 +1041,18 @@ Package tagpdf Info: closing structure 53 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 52 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1061,7 +1061,7 @@ tagpdf DEBUG Info: Struct 54 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1075,7 +1075,7 @@ tagpdf DEBUG Info: Struct 55 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1088,18 +1088,18 @@ Package tagpdf Info: closing structure 55 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 54 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 51 tagged /Div +Package tagpdf Info: closing structure 51 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1167,7 +1167,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1175,11 +1175,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 59 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1188,7 +1188,7 @@ tagpdf DEBUG Info: Struct 60 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1202,7 +1202,7 @@ tagpdf DEBUG Info: Struct 61 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1215,18 +1215,18 @@ Package tagpdf Info: closing structure 61 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 60 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1235,7 +1235,7 @@ tagpdf DEBUG Info: Struct 62 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1249,7 +1249,7 @@ tagpdf DEBUG Info: Struct 63 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1262,18 +1262,18 @@ Package tagpdf Info: closing structure 63 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 62 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 59 tagged /Div +Package tagpdf Info: closing structure 59 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1341,7 +1341,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1349,11 +1349,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 67 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1362,7 +1362,7 @@ tagpdf DEBUG Info: Struct 68 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1376,7 +1376,7 @@ tagpdf DEBUG Info: Struct 69 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1389,18 +1389,18 @@ Package tagpdf Info: closing structure 69 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 68 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1409,7 +1409,7 @@ tagpdf DEBUG Info: Struct 70 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1423,7 +1423,7 @@ tagpdf DEBUG Info: Struct 71 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1436,18 +1436,18 @@ Package tagpdf Info: closing structure 71 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 70 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: closing structure 67 tagged /Div +Package tagpdf Info: closing structure 67 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} @@ -1515,7 +1515,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1523,11 +1523,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 75 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1536,7 +1536,7 @@ tagpdf DEBUG Info: Struct 76 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1550,7 +1550,7 @@ tagpdf DEBUG Info: Struct 77 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1563,18 +1563,18 @@ Package tagpdf Info: closing structure 77 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 76 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1583,7 +1583,7 @@ tagpdf DEBUG Info: Struct 78 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1597,7 +1597,7 @@ tagpdf DEBUG Info: Struct 79 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1611,11 +1611,11 @@ Package tagpdf Info: closing structure 79 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -1623,13 +1623,13 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 80 begin inserted with options: tag=\UseStructureName {parbox} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1638,9 +1638,9 @@ tagpdf DEBUG Info: Struct 81 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1654,9 +1654,9 @@ tagpdf DEBUG Info: Struct 82 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1669,22 +1669,22 @@ Package tagpdf Info: closing structure 82 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 81 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -1693,9 +1693,9 @@ tagpdf DEBUG Info: Struct 83 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1709,9 +1709,9 @@ tagpdf DEBUG Info: Struct 84 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1724,18 +1724,18 @@ Package tagpdf Info: closing structure 84 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 83 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-parbox}{Div}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1755,11 +1755,11 @@ Underfull \hbox (badness 10000) in paragraph at lines ... .\T1/cmr/m/n/10 e .\T1/cmr/m/n/10 r .\glue(\rightskip) 0.0 -Package tagpdf Info: closing structure 80 tagged /Div +Package tagpdf Info: closing structure 80 tagged /text-parbox tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1773,7 +1773,7 @@ tagpdf DEBUG Info: Struct 85 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1787,14 +1787,14 @@ Package tagpdf Info: closing structure 85 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 78 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -1802,7 +1802,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 75 tagged /Div +Package tagpdf Info: closing structure 75 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} diff --git a/required/latex-lab/testfiles-minipage/minipage-002-todo.luatex.tlg b/required/latex-lab/testfiles-minipage/minipage-002-todo.luatex.tlg index cbb7db13e..30444de9c 100644 --- a/required/latex-lab/testfiles-minipage/minipage-002-todo.luatex.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-002-todo.luatex.tlg @@ -74,7 +74,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -82,11 +82,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 10 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -95,7 +95,7 @@ tagpdf DEBUG Info: Struct 11 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -109,7 +109,7 @@ tagpdf DEBUG Info: Struct 12 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -120,14 +120,14 @@ Package tagpdf Info: closing structure 12 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 11 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -135,7 +135,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 10 tagged /Div +Package tagpdf Info: closing structure 10 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} diff --git a/required/latex-lab/testfiles-minipage/minipage-002-todo.tlg b/required/latex-lab/testfiles-minipage/minipage-002-todo.tlg index 865c6fb0c..2fd0695f5 100644 --- a/required/latex-lab/testfiles-minipage/minipage-002-todo.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-002-todo.tlg @@ -82,7 +82,7 @@ The sequence \g__tag_struct_tag_stack_seq contains the items (without outer brac > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. @@ -90,11 +90,11 @@ Package tagpdf Info: Parent-Child 'Document' --> 'Div'. tagpdf DEBUG Info: Struct 9 begin inserted with options: tag=\UseStructureName {minipage} (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -103,7 +103,7 @@ tagpdf DEBUG Info: Struct 10 begin inserted with options: tag=\UseStructureName (tagpdf DEBUG) [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -117,7 +117,7 @@ tagpdf DEBUG Info: Struct 11 begin inserted with options: tag=\UseStructureName The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{text-block}{P}} > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -130,14 +130,14 @@ Package tagpdf Info: closing structure 11 tagged /text-block tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. Package tagpdf Info: closing structure 10 tagged /semantic-para tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): -> {{Div}{Div}} +> {{text-minipage}{Div}} > {{semantic-para}{Part}} > {{Document}{Document}} > {{Root}{StructTreeRoot}}. @@ -145,7 +145,7 @@ tagpdf DEBUG Info: Tagging suspended (tagpdf DEBUG) level: 0 ==> 1, label: minipage [on line ...] tagpdf DEBUG Info: Tagging resumed (tagpdf DEBUG) level: 1 ==> 0, label: minipage [on line ...] -Package tagpdf Info: closing structure 9 tagged /Div +Package tagpdf Info: closing structure 9 tagged /text-minipage tagpdf DEBUG Info: Struct end inserted [on line ...] The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): > {{semantic-para}{Part}} diff --git a/required/latex-lab/testfiles-minipage/minipage-003-todo.luatex.tlg b/required/latex-lab/testfiles-minipage/minipage-003-todo.luatex.tlg index 137bb8a03..ec16c566c 100644 --- a/required/latex-lab/testfiles-minipage/minipage-003-todo.luatex.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-003-todo.luatex.tlg @@ -33,20 +33,20 @@ Package tagpdf Info: Parent-Child 'Strong' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: Strong has been pushed to the mc stack Package tagpdf Info: closing structure 10 tagged /Strong -Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'P' --> 'Div'. (tagpdf) Relation is -1 (='∅') on line ... Package tagpdf Warning: Parent-Child 'pdf2:P' --> 'pdf2:Div'. (tagpdf) Relation is not allowed! on line ... -(tagpdf) struct 9, text-block --> struct 11, Div -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +(tagpdf) struct 9, text-block --> struct 11, text-parbox +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'P' --> 'Part'. (tagpdf) Relation is -1 (='∅') on line ... Package tagpdf Warning: Parent-Child 'pdf2:P' --> 'pdf2:Part'. (tagpdf) Relation is not allowed! on line ... -(tagpdf) struct 11, Div --> struct 12, semantic-para +(tagpdf) struct 11, text-parbox --> struct 12, semantic-para Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... @@ -60,7 +60,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: closing structure 13 tagged /text-block Package tagpdf Info: closing structure 12 tagged /semantic-para -Package tagpdf Info: closing structure 11 tagged /Div +Package tagpdf Info: closing structure 11 tagged /text-parbox Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'P' --> 'P'. (tagpdf) Relation is -1 (='∅') on line ... diff --git a/required/latex-lab/testfiles-minipage/minipage-003-todo.tlg b/required/latex-lab/testfiles-minipage/minipage-003-todo.tlg index c85761cc4..358aef861 100644 --- a/required/latex-lab/testfiles-minipage/minipage-003-todo.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-003-todo.tlg @@ -33,20 +33,20 @@ Package tagpdf Info: Parent-Child 'Strong' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: Strong has been pushed to the mc stack Package tagpdf Info: closing structure 9 tagged /Strong -Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'latex:text-parbox' Package tagpdf Info: Parent-Child 'P' --> 'Div'. (tagpdf) Relation is -1 (='^^e2^^88^^85') on line ... Package tagpdf Warning: Parent-Child 'pdf2:P' --> 'pdf2:Div'. (tagpdf) Relation is not allowed! on line ... -(tagpdf) struct 8, text-block --> struct 10, Div -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +(tagpdf) struct 8, text-block --> struct 10, text-parbox +Package tagpdf Info: Checking Parent-Child 'latex:text-parbox' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'P' --> 'Part'. (tagpdf) Relation is -1 (='^^e2^^88^^85') on line ... Package tagpdf Warning: Parent-Child 'pdf2:P' --> 'pdf2:Part'. (tagpdf) Relation is not allowed! on line ... -(tagpdf) struct 10, Div --> struct 11, semantic-para +(tagpdf) struct 10, text-parbox --> struct 11, semantic-para Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... @@ -60,7 +60,7 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: closing structure 12 tagged /text-block Package tagpdf Info: closing structure 11 tagged /semantic-para -Package tagpdf Info: closing structure 10 tagged /Div +Package tagpdf Info: closing structure 10 tagged /text-parbox Package tagpdf Info: Checking Parent-Child 'latex:text-block' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'P' --> 'P'. (tagpdf) Relation is -1 (='^^e2^^88^^85') on line ... 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 bb20cfb14..3dbfdefb8 100644 --- a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.luatex.tlg @@ -13,12 +13,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 7 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -58,7 +58,7 @@ Package tagpdf Info: closing structure 13 tagged /itembody Package tagpdf Info: closing structure 11 tagged /item Package tagpdf Info: closing structure 10 tagged /enumerate Package tagpdf Info: closing structure 9 tagged /semantic-para -Package tagpdf Info: closing structure 8 tagged /Div +Package tagpdf Info: closing structure 8 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... @@ -83,12 +83,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 18 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -128,7 +128,7 @@ Package tagpdf Info: closing structure 24 tagged /itembody Package tagpdf Info: closing structure 22 tagged /item Package tagpdf Info: closing structure 21 tagged /enumerate Package tagpdf Info: closing structure 20 tagged /semantic-para -Package tagpdf Info: closing structure 19 tagged /Div +Package tagpdf Info: closing structure 19 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... @@ -153,12 +153,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 29 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='‡') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -198,7 +198,7 @@ Package tagpdf Info: closing structure 35 tagged /itembody Package tagpdf Info: closing structure 33 tagged /item Package tagpdf Info: closing structure 32 tagged /enumerate Package tagpdf Info: closing structure 31 tagged /semantic-para -Package tagpdf Info: closing structure 30 tagged /Div +Package tagpdf Info: closing structure 30 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='‡') on line ... diff --git a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg index 1c21f92f2..dc8ee6153 100644 --- a/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg +++ b/required/latex-lab/testfiles-minipage/minipage-004-hyperref.tlg @@ -13,12 +13,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 6 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -58,7 +58,7 @@ Package tagpdf Info: closing structure 12 tagged /itembody Package tagpdf Info: closing structure 10 tagged /item Package tagpdf Info: closing structure 9 tagged /enumerate Package tagpdf Info: closing structure 8 tagged /semantic-para -Package tagpdf Info: closing structure 7 tagged /Div +Package tagpdf Info: closing structure 7 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... @@ -83,12 +83,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 17 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -128,7 +128,7 @@ Package tagpdf Info: closing structure 23 tagged /itembody Package tagpdf Info: closing structure 21 tagged /item Package tagpdf Info: closing structure 20 tagged /enumerate Package tagpdf Info: closing structure 19 tagged /semantic-para -Package tagpdf Info: closing structure 18 tagged /Div +Package tagpdf Info: closing structure 18 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... @@ -153,12 +153,12 @@ Package tagpdf Info: Parent-Child 'P' --> 'MC'. (tagpdf) Relation is 1 (='0..n') on line ... Package tagpdf Info: text-block has been pushed to the mc stack Package tagpdf Info: closing structure 28 tagged /text-block -Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'pdf2:Div' +Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-minipage' Package tagpdf Info: Parent-Child 'Part' --> 'Div'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Div'. (tagpdf) Relation is 1 (='0..n') on line ... -Package tagpdf Info: Checking Parent-Child 'pdf2:Div' --> 'latex:semantic-para' +Package tagpdf Info: Checking Parent-Child 'latex:text-minipage' --> 'latex:semantic-para' Package tagpdf Info: Parent-Child 'Div' --> 'Part'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... Package tagpdf Info: Parent-Child 'Document' --> 'Part'. @@ -198,7 +198,7 @@ Package tagpdf Info: closing structure 34 tagged /itembody Package tagpdf Info: closing structure 32 tagged /item Package tagpdf Info: closing structure 31 tagged /enumerate Package tagpdf Info: closing structure 30 tagged /semantic-para -Package tagpdf Info: closing structure 29 tagged /Div +Package tagpdf Info: closing structure 29 tagged /text-minipage Package tagpdf Info: Checking Parent-Child 'latex:semantic-para' --> 'latex:text-block' Package tagpdf Info: Parent-Child 'Part' --> 'P'. (tagpdf) Relation is 7 (='^^e2^^80^^a1') on line ... diff --git a/required/latex-lab/testfiles-minipage/minipage-006-gh723.luatex.tpf b/required/latex-lab/testfiles-minipage/minipage-006-gh723.luatex.tpf index 6a87ad0dc..b7bd6c9e3 100644 --- a/required/latex-lab/testfiles-minipage/minipage-006-gh723.luatex.tpf +++ b/required/latex-lab/testfiles-minipage/minipage-006-gh723.luatex.tpf @@ -121,7 +121,7 @@ endobj << /Kids [32 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 34 0 obj << /justify <> @@ -153,7 +153,7 @@ endobj << /Type /StructElem /C /display /AF [17 0 R] /T /S /Formula /P 13 0 R /K [<> 18 0 R 23 0 R ] /ID (ID.008) >> endobj 18 0 obj -<< /Type /StructElem /S /Div /P 15 0 R /K [19 0 R 21 0 R] /ID (ID.009) >> +<< /Type /StructElem /S /text-minipage /P 15 0 R /K [19 0 R 21 0 R] /ID (ID.009) >> endobj 19 0 obj << /Type /StructElem /S /semantic-para /P 18 0 R /K 20 0 R /ID (ID.010) >> @@ -496,54 +496,54 @@ xref 0000002302 00000 n 0000002324 00000 n 0000002346 00000 n -0000005042 00000 n +0000005159 00000 n 0000002404 00000 n 0000002778 00000 n 0000000000 00000 f -0000003658 00000 n -0000003743 00000 n -0000003819 00000 n -0000003895 00000 n -0000003971 00000 n -0000004071 00000 n -0000004200 00000 n +0000003765 00000 n +0000003850 00000 n +0000003926 00000 n +0000004002 00000 n +0000004078 00000 n +0000004178 00000 n +0000004307 00000 n 0000000020 00000 n 0000000292 00000 n -0000004399 00000 n -0000004490 00000 n -0000004582 00000 n -0000004711 00000 n -0000004803 00000 n -0000004932 00000 n +0000004506 00000 n +0000004607 00000 n +0000004699 00000 n +0000004828 00000 n +0000004920 00000 n +0000005049 00000 n 0000002144 00000 n 0000002009 00000 n 0000000492 00000 n -0000033260 00000 n -0000006848 00000 n -0000031318 00000 n -0000033418 00000 n +0000033377 00000 n +0000006965 00000 n +0000031435 00000 n +0000033535 00000 n 0000002368 00000 n 0000002475 00000 n 0000002741 00000 n -0000003457 00000 n -0000005160 00000 n -0000005191 00000 n -0000005886 00000 n -0000005223 00000 n -0000005296 00000 n -0000006122 00000 n -0000007002 00000 n -0000007202 00000 n -0000015261 00000 n -0000007469 00000 n -0000029367 00000 n -0000015486 00000 n -0000029675 00000 n -0000031476 00000 n -0000033480 00000 n -0000033579 00000 n +0000003564 00000 n +0000005277 00000 n +0000005308 00000 n +0000006003 00000 n +0000005340 00000 n +0000005413 00000 n +0000006239 00000 n +0000007119 00000 n +0000007319 00000 n +0000015378 00000 n +0000007586 00000 n +0000029484 00000 n +0000015603 00000 n +0000029792 00000 n +0000031593 00000 n +0000033597 00000 n +0000033696 00000 n trailer << /Size 51 /Root 49 0 R /Info 50 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -33713 +33830 %%EOF diff --git a/required/latex-lab/testfiles-minipage/minipage-006-gh723.tpf b/required/latex-lab/testfiles-minipage/minipage-006-gh723.tpf index c2751fd8a..45a8a0ab2 100644 --- a/required/latex-lab/testfiles-minipage/minipage-006-gh723.tpf +++ b/required/latex-lab/testfiles-minipage/minipage-006-gh723.tpf @@ -99,7 +99,7 @@ endobj << /Kids [32 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 34 0 obj << /justify <> @@ -128,7 +128,7 @@ endobj << /Type /StructElem /C /display /AF [17 0 R] /T /S /Formula /P 12 0 R /K [<> 18 0 R <> 23 0 R <>] /ID (ID.007) >> endobj 18 0 obj -<< /Type /StructElem /S /Div /P 15 0 R /K [19 0 R 21 0 R] /ID (ID.008) >> +<< /Type /StructElem /S /text-minipage /P 15 0 R /K [19 0 R 21 0 R] /ID (ID.008) >> endobj 19 0 obj << /Type /StructElem /S /semantic-para /P 18 0 R /K 20 0 R /ID (ID.009) >> @@ -757,60 +757,60 @@ xref 0000001912 00000 n 0000001934 00000 n 0000001956 00000 n -0000004628 00000 n +0000004745 00000 n 0000002014 00000 n 0000002386 00000 n 0000000000 00000 f -0000003266 00000 n -0000003351 00000 n -0000003427 00000 n -0000003503 00000 n -0000003603 00000 n +0000003373 00000 n +0000003458 00000 n +0000003534 00000 n +0000003610 00000 n +0000003710 00000 n 0000001606 00000 n -0000003730 00000 n +0000003837 00000 n 0000000015 00000 n 0000000286 00000 n -0000003991 00000 n -0000004082 00000 n -0000004174 00000 n -0000004301 00000 n -0000004393 00000 n -0000004520 00000 n +0000004098 00000 n +0000004199 00000 n +0000004291 00000 n +0000004418 00000 n +0000004510 00000 n +0000004637 00000 n 0000001741 00000 n 0000000486 00000 n -0000043127 00000 n -0000044018 00000 n -0000038940 00000 n -0000040881 00000 n -0000044182 00000 n +0000043244 00000 n +0000044135 00000 n +0000039057 00000 n +0000040998 00000 n +0000044299 00000 n 0000001978 00000 n 0000002099 00000 n 0000002349 00000 n -0000003065 00000 n -0000004746 00000 n -0000004770 00000 n -0000004800 00000 n -0000037136 00000 n -0000004822 00000 n -0000005327 00000 n -0000013096 00000 n -0000013318 00000 n -0000020689 00000 n -0000020910 00000 n -0000023574 00000 n -0000023792 00000 n -0000036854 00000 n -0000037298 00000 n -0000039098 00000 n -0000041038 00000 n -0000043305 00000 n -0000044241 00000 n -0000044340 00000 n +0000003172 00000 n +0000004863 00000 n +0000004887 00000 n +0000004917 00000 n +0000037253 00000 n +0000004939 00000 n +0000005444 00000 n +0000013213 00000 n +0000013435 00000 n +0000020806 00000 n +0000021027 00000 n +0000023691 00000 n +0000023909 00000 n +0000036971 00000 n +0000037415 00000 n +0000039215 00000 n +0000041155 00000 n +0000043422 00000 n +0000044358 00000 n +0000044457 00000 n trailer << /Size 54 /Root 52 0 R /Info 53 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -44474 +44591 %%EOF diff --git a/required/latex-lab/testfiles-sec/tagging-1436.luatex.tlg b/required/latex-lab/testfiles-sec/tagging-1436.luatex.tlg index e7eedd84c..5686eac7b 100644 --- a/required/latex-lab/testfiles-sec/tagging-1436.luatex.tlg +++ b/required/latex-lab/testfiles-sec/tagging-1436.luatex.tlg @@ -53,13 +53,18 @@ Completed box being shipped out [1] ......\OT1/cmr/bx/n/20.74 r ......\penalty 10000 ......\TU/lmr/m/n/10 -......\glue 4.4475 plus 3.88875 minus 2.5925 +......\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +......\TU/lmr/m/n/10 +......\glue -3.33 +......\pdfliteral page +......\pdfliteral page ......\OT1/cmr/bx/n/20.74 1 ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 plus 1.0fil .....\penalty 10000 .....\glue 20.0 +.....\glue 0.0 .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 8.89679 @@ -11301,13 +11306,15 @@ Underfull \vbox (badness 1137) has occurred while \output is active ..\OT1/cmr/bx/n/20.74 e ..\OT1/cmr/bx/n/20.74 r ..\penalty 10000 -..\glue 7.7775 plus 3.88875 minus 2.5925 +..\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +..\glue 0.0 ..\OT1/cmr/bx/n/20.74 2 ..\penalty 10000 ..\glue(\parfillskip) 0.0 plus 1.0fil ..\glue(\rightskip) 0.0 plus 1.0fil .\penalty 10000 .\glue 20.0 +.\glue 0.0 .\glue(\parskip) 0.0 plus 1.0 .\glue(\parskip) 0.0 .\glue(\baselineskip) 8.68948 @@ -13230,13 +13237,18 @@ Completed box being shipped out [3] .......\OT1/cmr/bx/n/20.74 r .......\penalty 10000 .......\TU/lmr/m/n/10 -.......\glue 4.4475 plus 3.88875 minus 2.5925 +.......\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +.......\TU/lmr/m/n/10 +.......\glue -3.33 +.......\pdfliteral page +.......\pdfliteral page .......\OT1/cmr/bx/n/20.74 2 .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 plus 1.0fil ......\penalty 10000 ......\glue 20.0 +......\glue 0.0 ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 8.68948 @@ -24469,8 +24481,12 @@ Completed box being shipped out [4] ........\OT1/cmr/bx/n/14.4 2 ........\OT1/cmr/bx/n/14.4 . ........\OT1/cmr/bx/n/14.4 1 +........\pdfliteral page +........\pdfliteral page ........\TU/lmr/m/n/10 ........\glue 12.86998 +........\TU/lmr/m/n/10 +........\glue -3.33 .......\pdfliteral page .......\pdfliteral page .......\OT1/cmr/bx/n/14.4 B @@ -35750,8 +35766,12 @@ Completed box being shipped out [7] .......\OT1/cmr/bx/n/14.4 2 .......\OT1/cmr/bx/n/14.4 . .......\OT1/cmr/bx/n/14.4 2 +.......\pdfliteral page +.......\pdfliteral page .......\TU/lmr/m/n/10 .......\glue 12.86998 +.......\TU/lmr/m/n/10 +.......\glue -3.33 ......\pdfliteral page ......\pdfliteral page ......\OT1/cmr/bx/n/14.4 S diff --git a/required/latex-lab/testfiles-sec/tagging-1436.tlg b/required/latex-lab/testfiles-sec/tagging-1436.tlg index e500bfa1e..72b8a17ae 100644 --- a/required/latex-lab/testfiles-sec/tagging-1436.tlg +++ b/required/latex-lab/testfiles-sec/tagging-1436.tlg @@ -17,13 +17,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,7,-1,} -...\marks4{b+,7,-1,} +...\marks4{b-,8,-1,} +...\marks4{b+,8,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,7,5,} -...\marks4{e+,7,5,} +...\marks4{e-,8,5,} +...\marks4{e+,8,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -39,10 +39,10 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(14.31287+4.03178)x469.0, glue set 185.96104fil -......\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -......\pdfliteral shipout page{/Span <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 +......\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/chapter <> BDC} ......\T1/cmr/bx/n/20.74 C ......\T1/cmr/bx/n/20.74 h ......\T1/cmr/bx/n/20.74 a @@ -52,37 +52,46 @@ Completed box being shipped out [1] ......\T1/cmr/bx/n/20.74 r ......\penalty 10000 ......\glue 7.33878 plus 3.66937 minus 2.44624 +......\pdffakespace +......\pdfliteral page{EMC} +......\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/heading-number <> BDC} ......\T1/cmr/bx/n/20.74 1 ......\pdfliteral page{EMC} +......\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/chapter <> BDC} ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 plus 1.0fil -.....\marks4{b-,1,7,Span,,,} -.....\marks4{b+,1,7,Span,,,} -.....\marks4{e-,1,7,} -.....\marks4{e+,1,7,} +.....\marks4{b-,1,6,chapter,,,} +.....\marks4{b+,1,6,chapter,,,} +.....\marks4{e-,1,6,} +.....\marks4{e+,1,6,} +.....\marks4{b-,2,7,heading-number,,,} +.....\marks4{b+,2,7,heading-number,,,} +.....\marks4{e-,2,7,} +.....\marks4{e+,2,7,} +.....\marks4{b-,3,6,chapter,,,} +.....\marks4{b+,3,6,chapter,,,} .....\penalty 10000 .....\glue 20.0 +.....\glue 0.0 .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\glue(\baselineskip) 8.79831 .....\hbox(17.1699+0.0)x469.0, glue set 214.01958fil -......\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} -......\pdfliteral shipout page{/Span <> BDC} ......\hbox(0.0+0.0)x0.0 ......\T1/cmr/bx/n/24.88 F ......\kern-2.17099 ......\T1/cmr/bx/n/24.88 o ......\kern0.72365 ......\T1/cmr/bx/n/24.88 o -......\pdfliteral page{EMC} ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 plus 1.0fil -.....\marks4{b-,2,8,Span,,,} -.....\marks4{b+,2,8,Span,,,} -.....\marks4{e-,2,8,} -.....\marks4{e+,2,8,} +.....\pdfliteral page{EMC} +.....\marks4{e-,3,6,} +.....\marks4{e+,3,6,} .....\glue 40.0 .....\glue -20.0 plus -2.0 minus -4.0 ...\glue 12.0 plus 2.0 minus 2.0 @@ -99,7 +108,7 @@ Completed box being shipped out [1] ......\write1{\@writefile{lot}{\addvspace {10pt}}} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.90306 -.......\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 s @@ -157,8 +166,8 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 a .......\T1/cmr/m/n/10 l .......\glue(\rightskip) 0.0 -......\marks4{b-,3,10,text-block,,,} -......\marks4{b+,3,10,text-block,,,} +......\marks4{b-,4,9,text-block,,,} +......\marks4{b+,4,9,text-block,,,} ......\penalty 10000 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.25856 @@ -1165,13 +1174,13 @@ Completed box being shipped out [1] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,3,10,} -......\marks4{e+,3,10,} +......\marks4{e-,4,9,} +......\marks4{e+,4,9,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.06879 -.......\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 L @@ -1229,8 +1238,8 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 t .......\T1/cmr/m/n/10 o .......\glue(\rightskip) 0.0 -......\marks4{b-,4,12,text-block,,,} -......\marks4{b+,4,12,text-block,,,} +......\marks4{b-,5,11,text-block,,,} +......\marks4{b+,5,11,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.17245 @@ -2229,8 +2238,8 @@ Completed box being shipped out [1] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,4,12,} -......\marks4{e+,4,12,} +......\marks4{e-,5,11,} +......\marks4{e+,5,11,} ......\kern -1.94397 ......\hbox(0.0+1.94397)x0.0 ......\glue -1.94397 @@ -2243,7 +2252,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0 ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.25563 -.......\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -2306,8 +2315,8 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 g .......\T1/cmr/m/n/10 s .......\glue(\rightskip) 0.0 -......\marks4{b-,5,14,text-block,,,} -......\marks4{b+,5,14,text-block,,,} +......\marks4{b-,6,13,text-block,,,} +......\marks4{b+,6,13,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set 0.22226 @@ -3468,13 +3477,13 @@ Completed box being shipped out [1] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,5,14,} -......\marks4{e+,5,14,} +......\marks4{e-,6,13,} +......\marks4{e+,6,13,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.20166 -.......\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -3535,8 +3544,8 @@ Completed box being shipped out [1] .......\T1/cmr/m/n/10 e .......\T1/cmr/m/n/10 n .......\glue(\rightskip) 0.0 -......\marks4{b-,6,16,text-block,,,} -......\marks4{b+,6,16,text-block,,,} +......\marks4{b-,7,15,text-block,,,} +......\marks4{b+,7,15,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.66003 @@ -4450,8 +4459,8 @@ Completed box being shipped out [1] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,8,-1,} -..\marks4{b+,8,-1,} +..\marks4{b-,9,-1,} +..\marks4{b+,9,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -4459,8 +4468,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,8,5,} -..\marks4{e+,8,5,} +..\marks4{e-,9,5,} +..\marks4{e+,9,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -4479,13 +4488,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,14,-1,} -...\marks4{b+,14,-1,} +...\marks4{b-,15,-1,} +...\marks4{b+,15,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,14,5,} -...\marks4{e+,14,5,} +...\marks4{e-,15,5,} +...\marks4{e+,15,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -4494,7 +4503,7 @@ Completed box being shipped out [2] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.27504 @@ -4895,13 +4904,13 @@ Completed box being shipped out [2] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,6,16,} -......\marks4{e+,6,16,} +......\marks4{e-,7,15,} +......\marks4{e+,7,15,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.35892 -.......\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -4962,8 +4971,8 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 c .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,9,18,text-block,,,} -......\marks4{b+,9,18,text-block,,,} +......\marks4{b-,10,17,text-block,,,} +......\marks4{b+,10,17,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set - 0.51553 @@ -6854,13 +6863,13 @@ Completed box being shipped out [2] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,9,18,} -......\marks4{e+,9,18,} +......\marks4{e-,10,17,} +......\marks4{e+,10,17,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.68962 -.......\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -6916,8 +6925,8 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 s .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,10,20,text-block,,,} -......\marks4{b+,10,20,text-block,,,} +......\marks4{b-,11,19,text-block,,,} +......\marks4{b+,11,19,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.77579 @@ -7548,7 +7557,7 @@ Completed box being shipped out [2] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5, glue set 120.0fil ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.24507 @@ -8105,13 +8114,13 @@ Completed box being shipped out [2] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,10,20,} -......\marks4{e+,10,20,} +......\marks4{e-,11,19,} +......\marks4{e+,11,19,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 1.2828 -.......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -8177,8 +8186,8 @@ Completed box being shipped out [2] .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 d .......\glue(\rightskip) 0.0 -......\marks4{b-,12,22,text-block,,,} -......\marks4{b+,12,22,text-block,,,} +......\marks4{b-,13,21,text-block,,,} +......\marks4{b+,13,21,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.39545 @@ -9898,8 +9907,8 @@ Completed box being shipped out [2] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,12,22,} -......\marks4{e+,12,22,} +......\marks4{e-,13,21,} +......\marks4{e+,13,21,} ......\kern 0.0 ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -9907,8 +9916,8 @@ Completed box being shipped out [2] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,15,-1,} -..\marks4{b+,15,-1,} +..\marks4{b-,16,-1,} +..\marks4{b+,16,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -9916,8 +9925,8 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 2 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,15,5,} -..\marks4{e+,15,5,} +..\marks4{e-,16,5,} +..\marks4{e+,16,5,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [3] @@ -9935,13 +9944,13 @@ Completed box being shipped out [3] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,24,-1,} -...\marks4{b+,24,-1,} +...\marks4{b-,26,-1,} +...\marks4{b+,26,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,24,23,} -...\marks4{e+,24,23,} +...\marks4{e-,26,22,} +...\marks4{e+,26,22,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -9962,10 +9971,10 @@ Completed box being shipped out [3] ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 10.68713 ......\hbox(14.31287+4.03178)x229.5, glue set 66.21104fil -.......\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} -.......\pdfliteral shipout page{/Span <> BDC} .......\hbox(0.0+0.0)x0.0 .......\glue 0.0 +.......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdfliteral shipout page{/chapter <> BDC} .......\T1/cmr/bx/n/20.74 C .......\T1/cmr/bx/n/20.74 h .......\T1/cmr/bx/n/20.74 a @@ -9975,23 +9984,34 @@ Completed box being shipped out [3] .......\T1/cmr/bx/n/20.74 r .......\penalty 10000 .......\glue 7.33878 plus 3.66937 minus 2.44624 +.......\pdffakespace +.......\pdfliteral page{EMC} +.......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdfliteral shipout page{/heading-number <> BDC} .......\T1/cmr/bx/n/20.74 2 .......\pdfliteral page{EMC} +.......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdfliteral shipout page{/chapter <> BDC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 plus 1.0fil -......\marks4{b-,16,25,Span,,,} -......\marks4{b+,16,25,Span,,,} -......\marks4{e-,16,25,} -......\marks4{e+,16,25,} +......\marks4{b-,17,23,chapter,,,} +......\marks4{b+,17,23,chapter,,,} +......\marks4{e-,17,23,} +......\marks4{e+,17,23,} +......\marks4{b-,18,24,heading-number,,,} +......\marks4{b+,18,24,heading-number,,,} +......\marks4{e-,18,24,} +......\marks4{e+,18,24,} +......\marks4{b-,19,23,chapter,,,} +......\marks4{b+,19,23,chapter,,,} ......\penalty 10000 ......\glue 20.0 +......\glue 0.0 ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 8.79831 ......\hbox(17.1699+4.8366)x229.5, glue set 71.49936fil -.......\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} -.......\pdfliteral shipout page{/Span <> BDC} .......\hbox(0.0+0.0)x0.0 .......\T1/cmr/bx/n/24.88 N .......\T1/cmr/bx/n/24.88 o @@ -10007,8 +10027,6 @@ Completed box being shipped out [3] .......\T1/cmr/bx/n/24.88 n .......\T1/cmr/bx/n/24.88 g .......\glue(\rightskip) 0.0 plus 1.0fil -......\marks4{b-,17,26,Span,,,} -......\marks4{b+,17,26,Span,,,} ......\penalty 10300 ......\glue(\baselineskip) 7.9935 ......\hbox(17.1699+4.8366)x229.5, glue set 72.18384fil @@ -10020,12 +10038,12 @@ Completed box being shipped out [3] .......\T1/cmr/bx/n/24.88 t .......\T1/cmr/bx/n/24.88 e .......\T1/cmr/bx/n/24.88 r -.......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 plus 1.0fil -......\marks4{e-,17,26,} -......\marks4{e+,17,26,} +......\pdfliteral page{EMC} +......\marks4{e-,19,23,} +......\marks4{e+,19,23,} ......\write1{\@writefile{toc}{\protect \contentsline {chapter}{\protect \numberline {2}Non-spanning chapter}{\thepage }{target*.2}\protected@file@percent }} ......\write1{\@writefile{lof}{\addvspace {10pt}}} ......\write1{\@writefile{lot}{\addvspace {10pt}}} @@ -10035,7 +10053,7 @@ Completed box being shipped out [3] ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 0.2762 ......\hbox(6.8872+1.94397)x229.5, glue set 0.90306 -.......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 s @@ -10093,8 +10111,8 @@ Completed box being shipped out [3] .......\T1/cmr/m/n/10 a .......\T1/cmr/m/n/10 l .......\glue(\rightskip) 0.0 -......\marks4{b-,18,28,text-block,,,} -......\marks4{b+,18,28,text-block,,,} +......\marks4{b-,20,26,text-block,,,} +......\marks4{b+,20,26,text-block,,,} ......\penalty 10000 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.25856 @@ -11101,13 +11119,13 @@ Completed box being shipped out [3] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,18,28,} -......\marks4{e+,18,28,} +......\marks4{e-,20,26,} +......\marks4{e+,20,26,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.06879 -.......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 L @@ -11165,8 +11183,8 @@ Completed box being shipped out [3] .......\T1/cmr/m/n/10 t .......\T1/cmr/m/n/10 o .......\glue(\rightskip) 0.0 -......\marks4{b-,19,30,text-block,,,} -......\marks4{b+,19,30,text-block,,,} +......\marks4{b-,21,28,text-block,,,} +......\marks4{b+,21,28,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.17245 @@ -11868,7 +11886,7 @@ Completed box being shipped out [3] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.2045 @@ -12178,13 +12196,13 @@ Completed box being shipped out [3] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,19,30,} -......\marks4{e+,19,30,} +......\marks4{e-,21,28,} +......\marks4{e+,21,28,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.25563 -.......\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -12247,8 +12265,8 @@ Completed box being shipped out [3] .......\T1/cmr/m/n/10 g .......\T1/cmr/m/n/10 s .......\glue(\rightskip) 0.0 -......\marks4{b-,20,32,text-block,,,} -......\marks4{b+,20,32,text-block,,,} +......\marks4{b-,22,30,text-block,,,} +......\marks4{b+,22,30,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set 0.22226 @@ -13409,13 +13427,13 @@ Completed box being shipped out [3] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,20,32,} -......\marks4{e+,20,32,} +......\marks4{e-,22,30,} +......\marks4{e+,22,30,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.20166 -.......\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-23}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{23}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -13476,8 +13494,8 @@ Completed box being shipped out [3] .......\T1/cmr/m/n/10 e .......\T1/cmr/m/n/10 n .......\glue(\rightskip) 0.0 -......\marks4{b-,21,34,text-block,,,} -......\marks4{b+,21,34,text-block,,,} +......\marks4{b-,23,32,text-block,,,} +......\marks4{b+,23,32,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.66003 @@ -14784,13 +14802,13 @@ Completed box being shipped out [3] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,21,34,} -......\marks4{e+,21,34,} +......\marks4{e-,23,32,} +......\marks4{e+,23,32,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.35892 -.......\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -14851,8 +14869,8 @@ Completed box being shipped out [3] .......\T1/cmr/m/n/10 c .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,22,36,text-block,,,} -......\marks4{b+,22,36,text-block,,,} +......\marks4{b-,24,34,text-block,,,} +......\marks4{b+,24,34,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set - 0.51553 @@ -14927,8 +14945,8 @@ Completed box being shipped out [3] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,25,-1,} -..\marks4{b+,25,-1,} +..\marks4{b-,27,-1,} +..\marks4{b+,27,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -14936,8 +14954,8 @@ Completed box being shipped out [3] ....\T1/cmr/m/n/10 3 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,25,23,} -..\marks4{e+,25,23,} +..\marks4{e-,27,22,} +..\marks4{e+,27,22,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [4] @@ -14955,13 +14973,13 @@ Completed box being shipped out [4] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,33,-1,} -...\marks4{b+,33,-1,} +...\marks4{b-,36,-1,} +...\marks4{b+,36,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,33,41,} -...\marks4{e+,33,41,} +...\marks4{e-,36,39,} +...\marks4{e+,36,39,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -14970,7 +14988,7 @@ Completed box being shipped out [4] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.5305 @@ -16795,13 +16813,13 @@ Completed box being shipped out [4] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,22,36,} -......\marks4{e+,22,36,} +......\marks4{e-,24,34,} +......\marks4{e+,24,34,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.68962 -.......\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -16857,8 +16875,8 @@ Completed box being shipped out [4] .......\T1/cmr/m/n/10 s .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,26,38,text-block,,,} -......\marks4{b+,26,38,text-block,,,} +......\marks4{b-,28,36,text-block,,,} +......\marks4{b+,28,36,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.77579 @@ -18003,7 +18021,7 @@ Completed box being shipped out [4] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5, glue set 0.61649 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 108.30737fil @@ -18045,13 +18063,13 @@ Completed box being shipped out [4] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,26,38,} -......\marks4{e+,26,38,} +......\marks4{e-,28,36,} +......\marks4{e+,28,36,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 1.2828 -.......\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -18117,8 +18135,8 @@ Completed box being shipped out [4] .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 d .......\glue(\rightskip) 0.0 -......\marks4{b-,28,40,text-block,,,} -......\marks4{b+,28,40,text-block,,,} +......\marks4{b-,30,38,text-block,,,} +......\marks4{b+,30,38,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.39545 @@ -19838,42 +19856,50 @@ Completed box being shipped out [4] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,28,40,} -......\marks4{e+,28,40,} +......\marks4{e-,30,38,} +......\marks4{e+,30,38,} ......\penalty -300 ......\glue 15.06577 plus 4.3045 minus 0.86089 ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 8.06242 ......\hbox(9.93758+0.0)x229.5, glue set 167.21596fil -.......\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} -.......\pdfliteral shipout page{/section-number <> BDC} .......\hbox(9.20918+0.0)x36.07138 ........\hbox(0.0+0.0)x0.0 ........\penalty 10000 ........\glue 0.0 +........\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} +........\pdfliteral shipout page{/heading-number <> BDC} +........\marks4{b-,31,41,heading-number,,,} +........\marks4{b+,31,41,heading-number,,,} ........\T1/cmr/bx/n/14.4 2 ........\T1/cmr/bx/n/14.4 . ........\T1/cmr/bx/n/14.4 1 +........\pdfliteral page{EMC} +........\marks4{e-,31,41,} +........\marks4{e+,31,41,} +........\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} +........\pdfliteral shipout page{/section <> BDC} +........\marks4{b-,32,40,section,,,} +........\marks4{b+,32,40,section,,,} ........\glue 15.83623 -.......\pdfliteral page{EMC} -.......\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} +........\pdffakespace +........\pdfliteral page{EMC} +........\marks4{e-,32,40,} +........\marks4{e+,32,40,} +.......\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/section <> BDC} .......\T1/cmr/bx/n/14.4 B .......\T1/cmr/bx/n/14.4 a .......\T1/cmr/bx/n/14.4 z -.......\pdfliteral page{EMC} .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{b-,29,43,section-number,,,} -......\marks4{b+,29,43,section-number,,,} -......\marks4{e-,29,43,} -......\marks4{e+,29,43,} -......\marks4{b-,30,42,section,,,} -......\marks4{b+,30,42,section,,,} -......\marks4{e-,30,42,} -......\marks4{e+,30,42,} +......\marks4{b-,33,40,section,,,} +......\marks4{b+,33,40,section,,,} +......\pdfliteral page{EMC} +......\marks4{e-,33,40,} +......\marks4{e+,33,40,} ......\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.1}Baz}{\thepage }{target*.3}\protected@file@percent }} ......\penalty 10000 ......\glue 9.90036 plus 0.86089 @@ -19881,7 +19907,7 @@ Completed box being shipped out [4] ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.90306 -.......\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-34}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{34}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 s @@ -19939,8 +19965,8 @@ Completed box being shipped out [4] .......\T1/cmr/m/n/10 a .......\T1/cmr/m/n/10 l .......\glue(\rightskip) 0.0 -......\marks4{b-,31,45,text-block,,,} -......\marks4{b+,31,45,text-block,,,} +......\marks4{b-,34,43,text-block,,,} +......\marks4{b+,34,43,text-block,,,} ......\penalty 10000 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.25856 @@ -20819,8 +20845,8 @@ Completed box being shipped out [4] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,34,-1,} -..\marks4{b+,34,-1,} +..\marks4{b-,37,-1,} +..\marks4{b+,37,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -20828,8 +20854,8 @@ Completed box being shipped out [4] ....\T1/cmr/m/n/10 4 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,34,41,} -..\marks4{e+,34,41,} +..\marks4{e-,37,39,} +..\marks4{e+,37,39,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [5] @@ -20847,13 +20873,13 @@ Completed box being shipped out [5] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,42,-1,} -...\marks4{b+,42,-1,} +...\marks4{b-,45,-1,} +...\marks4{b+,45,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,42,41,} -...\marks4{e+,42,41,} +...\marks4{e-,45,39,} +...\marks4{e+,45,39,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -20862,7 +20888,7 @@ Completed box being shipped out [5] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.24397 @@ -20998,13 +21024,13 @@ Completed box being shipped out [5] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,31,45,} -......\marks4{e+,31,45,} +......\marks4{e-,34,43,} +......\marks4{e+,34,43,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.06879 -.......\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 L @@ -21062,8 +21088,8 @@ Completed box being shipped out [5] .......\T1/cmr/m/n/10 t .......\T1/cmr/m/n/10 o .......\glue(\rightskip) 0.0 -......\marks4{b-,35,47,text-block,,,} -......\marks4{b+,35,47,text-block,,,} +......\marks4{b-,38,45,text-block,,,} +......\marks4{b+,38,45,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.17245 @@ -22062,13 +22088,13 @@ Completed box being shipped out [5] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,35,47,} -......\marks4{e+,35,47,} +......\marks4{e-,38,45,} +......\marks4{e+,38,45,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.25563 -.......\write1{\new@label@record{mcid-36}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{36}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -22131,8 +22157,8 @@ Completed box being shipped out [5] .......\T1/cmr/m/n/10 g .......\T1/cmr/m/n/10 s .......\glue(\rightskip) 0.0 -......\marks4{b-,36,49,text-block,,,} -......\marks4{b+,36,49,text-block,,,} +......\marks4{b-,39,47,text-block,,,} +......\marks4{b+,39,47,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set 0.22226 @@ -23293,13 +23319,13 @@ Completed box being shipped out [5] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,36,49,} -......\marks4{e+,36,49,} +......\marks4{e-,39,47,} +......\marks4{e+,39,47,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.20166 -.......\write1{\new@label@record{mcid-37}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{37}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -23360,8 +23386,8 @@ Completed box being shipped out [5] .......\T1/cmr/m/n/10 e .......\T1/cmr/m/n/10 n .......\glue(\rightskip) 0.0 -......\marks4{b-,37,51,text-block,,,} -......\marks4{b+,37,51,text-block,,,} +......\marks4{b-,40,49,text-block,,,} +......\marks4{b+,40,49,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.66003 @@ -23871,7 +23897,7 @@ Completed box being shipped out [5] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-44}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{44}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.40004 @@ -24680,13 +24706,13 @@ Completed box being shipped out [5] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,37,51,} -......\marks4{e+,37,51,} +......\marks4{e-,40,49,} +......\marks4{e+,40,49,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.35892 -.......\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-42}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{42}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -24747,8 +24773,8 @@ Completed box being shipped out [5] .......\T1/cmr/m/n/10 c .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,39,53,text-block,,,} -......\marks4{b+,39,53,text-block,,,} +......\marks4{b-,42,51,text-block,,,} +......\marks4{b+,42,51,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set - 0.51553 @@ -26639,13 +26665,13 @@ Completed box being shipped out [5] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,39,53,} -......\marks4{e+,39,53,} +......\marks4{e-,42,51,} +......\marks4{e+,42,51,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.68962 -.......\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-43}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{43}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -26701,8 +26727,8 @@ Completed box being shipped out [5] .......\T1/cmr/m/n/10 s .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,40,55,text-block,,,} -......\marks4{b+,40,55,text-block,,,} +......\marks4{b-,43,53,text-block,,,} +......\marks4{b+,43,53,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.77579 @@ -26919,8 +26945,8 @@ Completed box being shipped out [5] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,43,-1,} -..\marks4{b+,43,-1,} +..\marks4{b-,46,-1,} +..\marks4{b+,46,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -26928,8 +26954,8 @@ Completed box being shipped out [5] ....\T1/cmr/m/n/10 5 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,43,41,} -..\marks4{e+,43,41,} +..\marks4{e-,46,39,} +..\marks4{e+,46,39,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [6] @@ -26947,13 +26973,13 @@ Completed box being shipped out [6] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,46,-1,} -...\marks4{b+,46,-1,} +...\marks4{b-,49,-1,} +...\marks4{b+,49,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,46,41,} -...\marks4{e+,46,41,} +...\marks4{e-,49,39,} +...\marks4{e+,49,39,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -26962,7 +26988,7 @@ Completed box being shipped out [6] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5, glue set 48.0fil ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-45}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{45}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.13533 @@ -27929,13 +27955,13 @@ Completed box being shipped out [6] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,40,55,} -......\marks4{e+,40,55,} +......\marks4{e-,43,53,} +......\marks4{e+,43,53,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 1.2828 -.......\write1{\new@label@record{mcid-44}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{44}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-47}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{47}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -28001,8 +28027,8 @@ Completed box being shipped out [6] .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 d .......\glue(\rightskip) 0.0 -......\marks4{b-,44,57,text-block,,,} -......\marks4{b+,44,57,text-block,,,} +......\marks4{b-,47,55,text-block,,,} +......\marks4{b+,47,55,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.39545 @@ -29722,8 +29748,8 @@ Completed box being shipped out [6] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,44,57,} -......\marks4{e+,44,57,} +......\marks4{e-,47,55,} +......\marks4{e+,47,55,} ......\kern 0.0 ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -29745,8 +29771,8 @@ Completed box being shipped out [6] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,47,-1,} -..\marks4{b+,47,-1,} +..\marks4{b-,50,-1,} +..\marks4{b+,50,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -29754,8 +29780,8 @@ Completed box being shipped out [6] ....\T1/cmr/m/n/10 6 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,47,41,} -..\marks4{e+,47,41,} +..\marks4{e-,50,39,} +..\marks4{e+,50,39,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [7] @@ -29773,13 +29799,13 @@ Completed box being shipped out [7] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,56,-1,} -...\marks4{b+,56,-1,} +...\marks4{b-,60,-1,} +...\marks4{b+,60,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,56,58,} -...\marks4{e+,56,58,} +...\marks4{e-,60,56,} +...\marks4{e+,60,56,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -29787,18 +29813,30 @@ Completed box being shipped out [7] ...\vbox(2.63724+0.0)x469.0 ....\vbox(2.63724+0.0)x469.0 .....\hbox(9.93758+2.7993)x469.0, glue set 315.6663fil -......\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} -......\pdfliteral shipout page{/section-number <> BDC} ......\hbox(9.20918+0.0)x36.07138 .......\hbox(0.0+0.0)x0.0 .......\penalty 10000 .......\glue 0.0 +.......\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdfliteral shipout page{/heading-number <> BDC} +.......\marks4{b-,51,58,heading-number,,,} +.......\marks4{b+,51,58,heading-number,,,} .......\T1/cmr/bx/n/14.4 2 .......\T1/cmr/bx/n/14.4 . .......\T1/cmr/bx/n/14.4 2 +.......\pdfliteral page{EMC} +.......\marks4{e-,51,58,} +.......\marks4{e+,51,58,} +.......\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdfliteral shipout page{/section <> BDC} +.......\marks4{b-,52,57,section,,,} +.......\marks4{b+,52,57,section,,,} .......\glue 15.83623 -......\pdfliteral page{EMC} -......\write1{\new@label@record{mcid-49}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{49}{tagmcid}{\__property_code_tagmcid: }}} +.......\pdffakespace +.......\pdfliteral page{EMC} +.......\marks4{e-,52,57,} +.......\marks4{e+,52,57,} +......\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/section <> BDC} ......\T1/cmr/bx/n/14.4 S ......\T1/cmr/bx/n/14.4 p @@ -29816,18 +29854,14 @@ Completed box being shipped out [7] ......\T1/cmr/bx/n/14.4 i ......\T1/cmr/bx/n/14.4 o ......\T1/cmr/bx/n/14.4 n -......\pdfliteral page{EMC} ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,48,60,section-number,,,} -.....\marks4{b+,48,60,section-number,,,} -.....\marks4{e-,48,60,} -.....\marks4{e+,48,60,} -.....\marks4{b-,49,59,section,,,} -.....\marks4{b+,49,59,section,,,} -.....\marks4{e-,49,59,} -.....\marks4{e+,49,59,} +.....\marks4{b-,53,57,section,,,} +.....\marks4{b+,53,57,section,,,} +.....\pdfliteral page{EMC} +.....\marks4{e-,53,57,} +.....\marks4{e+,53,57,} .....\glue 9.90036 plus 0.86089 .....\glue -20.0 plus -2.0 minus -4.0 ...\glue 12.0 plus 2.0 minus 2.0 @@ -29841,7 +29875,7 @@ Completed box being shipped out [7] ......\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.2}Spanning section}{\thepage }{target*.4}\protected@file@percent }} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.90306 -.......\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\T1/cmr/m/n/10 A .......\T1/cmr/m/n/10 s @@ -29899,8 +29933,8 @@ Completed box being shipped out [7] .......\T1/cmr/m/n/10 a .......\T1/cmr/m/n/10 l .......\glue(\rightskip) 0.0 -......\marks4{b-,50,62,text-block,,,} -......\marks4{b+,50,62,text-block,,,} +......\marks4{b-,54,60,text-block,,,} +......\marks4{b+,54,60,text-block,,,} ......\penalty 10000 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.25856 @@ -30907,13 +30941,13 @@ Completed box being shipped out [7] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,50,62,} -......\marks4{e+,50,62,} +......\marks4{e-,54,60,} +......\marks4{e+,54,60,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.06879 -.......\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 L @@ -30971,8 +31005,8 @@ Completed box being shipped out [7] .......\T1/cmr/m/n/10 t .......\T1/cmr/m/n/10 o .......\glue(\rightskip) 0.0 -......\marks4{b-,51,64,text-block,,,} -......\marks4{b+,51,64,text-block,,,} +......\marks4{b-,55,62,text-block,,,} +......\marks4{b+,55,62,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.17245 @@ -31971,13 +32005,13 @@ Completed box being shipped out [7] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,51,64,} -......\marks4{e+,51,64,} +......\marks4{e-,55,62,} +......\marks4{e+,55,62,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.25563 -.......\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -32040,8 +32074,8 @@ Completed box being shipped out [7] .......\T1/cmr/m/n/10 g .......\T1/cmr/m/n/10 s .......\glue(\rightskip) 0.0 -......\marks4{b-,52,66,text-block,,,} -......\marks4{b+,52,66,text-block,,,} +......\marks4{b-,56,64,text-block,,,} +......\marks4{b+,56,64,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set 0.22226 @@ -32742,7 +32776,7 @@ Completed box being shipped out [7] ....\hbox(527.36276+0.0)x229.5 .....\vbox(527.36276+0.0)x229.5, glue set 0.68138 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.31616 @@ -33215,13 +33249,13 @@ Completed box being shipped out [7] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,52,66,} -......\marks4{e+,52,66,} +......\marks4{e-,56,64,} +......\marks4{e+,56,64,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.20166 -.......\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -33282,8 +33316,8 @@ Completed box being shipped out [7] .......\T1/cmr/m/n/10 e .......\T1/cmr/m/n/10 n .......\glue(\rightskip) 0.0 -......\marks4{b-,53,68,text-block,,,} -......\marks4{b+,53,68,text-block,,,} +......\marks4{b-,57,66,text-block,,,} +......\marks4{b+,57,66,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.66003 @@ -34590,13 +34624,13 @@ Completed box being shipped out [7] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,53,68,} -......\marks4{e+,53,68,} +......\marks4{e-,57,66,} +......\marks4{e+,57,66,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.35892 -.......\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -34657,8 +34691,8 @@ Completed box being shipped out [7] .......\T1/cmr/m/n/10 c .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,54,70,text-block,,,} -......\marks4{b+,54,70,text-block,,,} +......\marks4{b-,58,68,text-block,,,} +......\marks4{b+,58,68,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 2.55786 ......\hbox(7.49817+2.49939)x229.5, glue set - 0.51553 @@ -35663,8 +35697,8 @@ Completed box being shipped out [7] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,57,-1,} -..\marks4{b+,57,-1,} +..\marks4{b-,61,-1,} +..\marks4{b+,61,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -35672,8 +35706,8 @@ Completed box being shipped out [7] ....\T1/cmr/m/n/10 7 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,57,58,} -..\marks4{e+,57,58,} +..\marks4{e-,61,56,} +..\marks4{e+,61,56,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [8] @@ -35691,13 +35725,13 @@ Completed box being shipped out [8] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,62,-1,} -...\marks4{b+,62,-1,} +...\marks4{b-,66,-1,} +...\marks4{b+,66,-1,} ...\hbox(0.0+0.0)x469.0 ....\hbox(0.0+0.0)x469.0 ...\pdfliteral page{EMC} -...\marks4{e-,62,58,} -...\marks4{e+,62,58,} +...\marks4{e-,66,56,} +...\marks4{e+,66,56,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -35706,7 +35740,7 @@ Completed box being shipped out [8] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5 ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.26671 @@ -36600,13 +36634,13 @@ Completed box being shipped out [8] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,54,70,} -......\marks4{e+,54,70,} +......\marks4{e-,58,68,} +......\marks4{e+,58,68,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 5.1128 ......\hbox(6.8872+1.94397)x229.5, glue set 0.68962 -.......\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 T @@ -36662,8 +36696,8 @@ Completed box being shipped out [8] .......\T1/cmr/m/n/10 s .......\T1/cmr/m/n/10 e .......\glue(\rightskip) 0.0 -......\marks4{b-,58,72,text-block,,,} -......\marks4{b+,58,72,text-block,,,} +......\marks4{b-,62,70,text-block,,,} +......\marks4{b+,62,70,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.77579 @@ -37838,13 +37872,13 @@ Completed box being shipped out [8] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,58,72,} -......\marks4{e+,58,72,} +......\marks4{e-,62,70,} +......\marks4{e+,62,70,} ......\glue(\parskip) 0.0 plus 1.0 ......\glue(\parskip) 0.0 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 1.2828 -.......\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} .......\hbox(0.0+0.0)x9.99756 .......\T1/cmr/m/n/10 A @@ -37910,8 +37944,8 @@ Completed box being shipped out [8] .......\T1/cmr/m/n/10 i .......\T1/cmr/m/n/10 d .......\glue(\rightskip) 0.0 -......\marks4{b-,59,74,text-block,,,} -......\marks4{b+,59,74,text-block,,,} +......\marks4{b-,63,72,text-block,,,} +......\marks4{b+,63,72,text-block,,,} ......\penalty 150 ......\glue(\baselineskip) 3.16882 ......\hbox(6.8872+1.94397)x229.5, glue set 0.39545 @@ -38766,7 +38800,7 @@ Completed box being shipped out [8] ....\hbox(550.0+0.0)x229.5 .....\vbox(550.0+0.0)x229.5, glue set 384.0fil ......\hbox(0.0+0.0)x0.0 -.......\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} +.......\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} .......\pdfliteral shipout page{/text-block <> BDC} ......\glue(\topskip) 3.1128 ......\hbox(6.8872+1.94397)x229.5, glue set - 0.17268 @@ -39644,8 +39678,8 @@ Completed box being shipped out [8] .......\penalty 10000 .......\glue(\parfillskip) 0.0 plus 1.0fil .......\glue(\rightskip) 0.0 -......\marks4{e-,59,74,} -......\marks4{e+,59,74,} +......\marks4{e-,63,72,} +......\marks4{e+,63,72,} ......\kern 0.0 ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -39653,8 +39687,8 @@ Completed box being shipped out [8] .....\glue 0.0 plus 1.0fil minus 1.0fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,63,-1,} -..\marks4{b+,63,-1,} +..\marks4{b-,67,-1,} +..\marks4{b+,67,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x469.0 ...\hbox(6.4151+0.0)x469.0, glue set 232.00061fil @@ -39662,8 +39696,8 @@ Completed box being shipped out [8] ....\T1/cmr/m/n/10 8 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,63,58,} -..\marks4{e+,63,58,} +..\marks4{e-,67,56,} +..\marks4{e+,67,56,} ..\pdfrunninglinkon .\kern 0.0 .\kern -633.0 diff --git a/required/latex-lab/testfiles-sec/tagging-1521.luatex.tlg b/required/latex-lab/testfiles-sec/tagging-1521.luatex.tlg new file mode 100644 index 000000000..35b6c1dbe --- /dev/null +++ b/required/latex-lab/testfiles-sec/tagging-1521.luatex.tlg @@ -0,0 +1,734 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +[head] ================================== +[head] paragraph: {Standard paragraph} +[head] --- no label +[head] --- return: 'Standard paragraph' +[head] use 'heading' instance: paragraph +[Template] ==> Using instance 'paragraph' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Standard paragraph +[head] 4: toc = Standard paragraph +[head] 5: running = Standard paragraph +[head] 6: bookmark = Standard paragraph +[head] 7: nameref = Standard paragraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: paragraph +[Template] ==> Using instance 'paragraph' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Standard paragraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +The instance 'paragraph' of type 'heading' has values: +> level => 4 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \paragraphmark {##1} +> para-indent => false +> before-vspace => 3.25ex\@plus 1ex\@minus .2ex +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 1em +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \normalfont \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => ##1 +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => paragraph +> contents-extra => +> name => paragraph +> parent-name => subsubsection +> from template => runin. + } +l. ...\ShowInstanceValues{heading}{paragraph} +The instance 'paragraph' of type 'headformat' has values: +> heading-indent => 0pt +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ...\ShowInstanceValues{headformat}{paragraph} +[head] Info: setting up instances for legacy \@startsection +[head] ================================== +[head] paragraph-@startsection: {Redefined paragraph} +[head] --- no label +[head] --- return: 'Redefined paragraph' +[head] use 'heading' instance: paragraph-@startsection +[Template] ==> Using instance 'paragraph-@startsection' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Redefined paragraph +[head] 4: toc = Redefined paragraph +[head] 5: running = Redefined paragraph +[head] 6: bookmark = Redefined paragraph +[head] 7: nameref = Redefined paragraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: paragraph-@startsection +[Template] ==> Using instance 'paragraph-@startsection' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Redefined paragraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +[head] Info: setting up instances for legacy \@startsection +[head] ================================== +[head] subparagraph-@startsection: {Redefined subparagraph} +[head] --- no label +[head] --- return: 'Redefined subparagraph' +[head] use 'heading' instance: subparagraph-@startsection +[Template] ==> Using instance 'subparagraph-@startsection' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Redefined subparagraph +[head] 4: toc = Redefined subparagraph +[head] 5: running = Redefined subparagraph +[head] 6: bookmark = Redefined subparagraph +[head] 7: nameref = Redefined subparagraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: subparagraph-@startsection +[Template] ==> Using instance 'subparagraph-@startsection' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Redefined subparagraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +The instance 'paragraph-@startsection' of type 'heading' has values: +> level => 4 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \paragraphmark {##1} +> para-indent => false +> before-vspace => 14.0pt plus 4.0pt minus 1.0pt +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 10.0pt +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \sffamily \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => \headformat {##1} +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => paragraph-@startsection +> contents-extra => +> name => paragraph +> from template => runin. + } +l. ......ceValues{heading}{paragraph-@startsection} +The instance 'paragraph-@startsection' of type 'headformat' has values: +> heading-indent => \z@ +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ......alues{headformat}{paragraph-@startsection} +The instance 'subparagraph-@startsection' of type 'heading' has values: +> level => 5 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \subparagraphmark {##1} +> para-indent => false +> before-vspace => 14.0pt plus 4.0pt minus 1.0pt +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 10.0pt +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \sffamily \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => \headformat {##1} +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => subparagraph-@startsection +> contents-extra => +> name => subparagraph +> from template => runin. + } +l. ......alues{heading}{subparagraph-@startsection} +The instance 'subparagraph-@startsection' of type 'headformat' has values: +> heading-indent => 1em +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ......es{headformat}{subparagraph-@startsection} +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 487.94788fil, direction TLT +...\write-{} +...\glue(\topskip) 3.05556 +...\hbox(6.94444+1.94444)x345.0, glue set 172.47995fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x0.0, direction TLT +....\penalty 10000 +....\glue 0.0 +....\pdfliteral page +....\pdfliteral page +....\OT1/cmr/bx/n/10 0 +....\OT1/cmr/bx/n/10 . +....\OT1/cmr/bx/n/10 0 +....\OT1/cmr/bx/n/10 . +....\OT1/cmr/bx/n/10 0 +....\OT1/cmr/bx/n/10 . +....\OT1/cmr/bx/n/10 1 +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 8.16994 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\OT1/cmr/bx/n/10 S +....\OT1/cmr/bx/n/10 t +....\OT1/cmr/bx/n/10 a +....\OT1/cmr/bx/n/10 n +....\discretionary (penalty 50) +.....< \OT1/cmr/bx/n/10 - +....\OT1/cmr/bx/n/10 d +....\OT1/cmr/bx/n/10 a +....\OT1/cmr/bx/n/10 r +....\OT1/cmr/bx/n/10 d +....\TU/lmr/m/n/10 +....\glue(\spaceskip) 0.50331 plus 1.91666 minus 1.27777 +....\OT1/cmr/bx/n/10 p +....\OT1/cmr/bx/n/10 a +....\OT1/cmr/bx/n/10 r +....\OT1/cmr/bx/n/10 a +....\discretionary (penalty 50) +.....< \OT1/cmr/bx/n/10 - +....\OT1/cmr/bx/n/10 g +....\OT1/cmr/bx/n/10 r +....\OT1/cmr/bx/n/10 a +....\OT1/cmr/bx/n/10 p +....\OT1/cmr/bx/n/10 h +....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{\protect \numberline {0.0.0.1}Standard paragraph}{\thepage }{target*.1}\protected@file@percent }} +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 6.67001 +....\OT1/cmr/m/n/10 t +....\OT1/cmr/m/n/10 e +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 t +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\penalty -300 +...\glue 14.0 plus 4.0 minus 1.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 2.55556 +...\hbox(7.5+2.5)x345.0, glue set 141.1101fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x0.0, direction TLT +....\penalty 10000 +....\glue 0.0 +....\pdfliteral page +....\pdfliteral page +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 2 +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 7.67006 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\OT1/cmss/bx/n/10 [ +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 E +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +....\OT1/cmss/bx/n/10 D +....\OT1/cmss/bx/n/10 E +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +....\OT1/cmss/bx/n/10 F +....\OT1/cmss/bx/n/10 I +....\OT1/cmss/bx/n/10 N +....\OT1/cmss/bx/n/10 E +....\OT1/cmss/bx/n/10 D +....\TU/lmr/m/n/10 +....\glue(\spaceskip) 0.33669 plus 1.8315 minus 1.22345 +....\OT1/cmss/bx/n/10 P +....\kern-0.91667 (font) +....\OT1/cmss/bx/n/10 A +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 A +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +.....= \kern-0.30556 (font) +....\OT1/cmss/bx/n/10 G +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 A +....\OT1/cmss/bx/n/10 P +....\OT1/cmss/bx/n/10 H +....\OT1/cmss/bx/n/10 ] +....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{\protect \numberline {0.0.0.2}Redefined paragraph}{\thepage }{target*.2}\protected@file@percent }} +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 6.67 +....\OT1/cmr/m/n/10 t +....\OT1/cmr/m/n/10 e +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 t +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\penalty -300 +...\glue 14.0 plus 4.0 minus 1.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 2.0 +...\hbox(7.5+2.5)x345.0, glue set 101.47104fil, direction TLT +....\localpar +.....\localinterlinepenalty=0 +.....\localbrokenpenalty=0 +.....\localleftbox=null +.....\localrightbox=null +....\hbox(0.0+0.0)x0.0, direction TLT +....\penalty 10000 +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 6.67001 +....\pdfliteral page +....\pdfliteral page +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 0 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 2 +....\OT1/cmss/bx/n/10 . +....\OT1/cmss/bx/n/10 1 +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 7.67006 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\OT1/cmss/bx/n/10 [ +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 E +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +....\OT1/cmss/bx/n/10 D +....\OT1/cmss/bx/n/10 E +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +....\OT1/cmss/bx/n/10 F +....\OT1/cmss/bx/n/10 I +....\OT1/cmss/bx/n/10 N +....\OT1/cmss/bx/n/10 E +....\OT1/cmss/bx/n/10 D +....\TU/lmr/m/n/10 +....\glue(\spaceskip) 0.33669 plus 1.8315 minus 1.22345 +....\OT1/cmss/bx/n/10 S +....\OT1/cmss/bx/n/10 U +....\OT1/cmss/bx/n/10 B +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +....\OT1/cmss/bx/n/10 P +....\kern-0.91667 (font) +....\OT1/cmss/bx/n/10 A +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 A +....\discretionary (penalty 50) +.....< \OT1/cmss/bx/n/10 - +.....= \kern-0.30556 (font) +....\OT1/cmss/bx/n/10 G +....\OT1/cmss/bx/n/10 R +....\OT1/cmss/bx/n/10 A +....\OT1/cmss/bx/n/10 P +....\OT1/cmss/bx/n/10 H +....\OT1/cmss/bx/n/10 ] +....\write1{\@writefile{toc}{\protect \contentsline {subparagraph}{\protect \numberline {0.0.0.2.1}Redefined subparagraph}{\thepage }{target*.3}\protected@file@percent }} +....\pdfliteral page +....\pdfliteral page +....\TU/lmr/m/n/10 +....\glue 6.67 +....\OT1/cmr/m/n/10 t +....\OT1/cmr/m/n/10 e +....\OT1/cmr/m/n/10 x +....\OT1/cmr/m/n/10 t +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\glue -2.5 +...\glue 0.0 plus 1.0fil +...\glue 0.0 +...\glue 0.0 plus 0.0001fil +..\pdfliteral page +..\pdfliteral page +..\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 +<><> (tagging-1521.aux) +Package tagpdf Info: Finalizing the tagging structure: +(tagpdf) Writing out ~20 structure objects +(tagpdf) with ~14 '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-sec/tagging-1521.lvt b/required/latex-lab/testfiles-sec/tagging-1521.lvt new file mode 100644 index 000000000..ee67d1e1a --- /dev/null +++ b/required/latex-lab/testfiles-sec/tagging-1521.lvt @@ -0,0 +1,49 @@ +\DocumentMetadata { lang=en, tagging=on } + + +\documentclass{article} + +\input{regression-test} + +\setcounter{secnumdepth}{6} + +\begin{document} + +\START +\DebugTemplatesOn +\DebugHeadingsOn + +\paragraph{Standard paragraph} text + +\ShowInstanceValues{heading}{paragraph} +\ShowInstanceValues{headformat}{paragraph} + + +\makeatletter +\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}% + {14pt plus 4pt minus 1pt}% + {-10pt}% + {\sffamily\normalsize\bfseries\headformat}} + +\DeclareRobustCommand\headformat[2][]{[\MakeUppercase{#2}]} + +\renewcommand\subparagraph{\@startsection{subparagraph}{5}{1em}% + {14pt plus 4pt minus 1pt}% + {-10pt}% + {\sffamily\normalsize\bfseries\headformat}} +\makeatother + + +\paragraph{Redefined paragraph} text +\subparagraph{Redefined subparagraph} text + +\ShowInstanceValues{heading}{paragraph-@startsection} +\ShowInstanceValues{headformat}{paragraph-@startsection} + +\ShowInstanceValues{heading}{subparagraph-@startsection} +\ShowInstanceValues{headformat}{subparagraph-@startsection} + +\showoutput + +\end{document} + diff --git a/required/latex-lab/testfiles-sec/tagging-1521.tlg b/required/latex-lab/testfiles-sec/tagging-1521.tlg new file mode 100644 index 000000000..5338e07f1 --- /dev/null +++ b/required/latex-lab/testfiles-sec/tagging-1521.tlg @@ -0,0 +1,761 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +[head] ================================== +[head] paragraph: {Standard paragraph} +[head] --- no label +[head] --- return: 'Standard paragraph' +[head] use 'heading' instance: paragraph +[Template] ==> Using instance 'paragraph' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Standard paragraph +[head] 4: toc = Standard paragraph +[head] 5: running = Standard paragraph +[head] 6: bookmark = Standard paragraph +[head] 7: nameref = Standard paragraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: paragraph +[Template] ==> Using instance 'paragraph' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Standard paragraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> punct-decls not defined by the template +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +The instance 'paragraph' of type 'heading' has values: +> level => 4 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \paragraphmark {##1} +> para-indent => false +> before-vspace => 3.25ex\@plus 1ex\@minus .2ex +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 1em +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \normalfont \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => ##1 +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => paragraph +> contents-extra => +> name => paragraph +> parent-name => subsubsection +> from template => runin. + } +l. ...\ShowInstanceValues{heading}{paragraph} +The instance 'paragraph' of type 'headformat' has values: +> heading-indent => 0pt +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ...\ShowInstanceValues{headformat}{paragraph} +[head] Info: setting up instances for legacy \@startsection +[head] ================================== +[head] paragraph-@startsection: {Redefined paragraph} +[head] --- no label +[head] --- return: 'Redefined paragraph' +[head] use 'heading' instance: paragraph-@startsection +[Template] ==> Using instance 'paragraph-@startsection' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Redefined paragraph +[head] 4: toc = Redefined paragraph +[head] 5: running = Redefined paragraph +[head] 6: bookmark = Redefined paragraph +[head] 7: nameref = Redefined paragraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: paragraph-@startsection +[Template] ==> Using instance 'paragraph-@startsection' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Redefined paragraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{paragraph}{H4}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +[head] Info: setting up instances for legacy \@startsection +[head] ================================== +[head] subparagraph-@startsection: {Redefined subparagraph} +[head] --- no label +[head] --- return: 'Redefined subparagraph' +[head] use 'heading' instance: subparagraph-@startsection +[Template] ==> Using instance 'subparagraph-@startsection' of type 'heading' on line ... +[head] A normal heading +[head] --------- Heading instance arguments: +[head] 1: keys = +[head] 2: unnumbered = \BooleanFalse +[head] 3: title = Redefined subparagraph +[head] 4: toc = Redefined subparagraph +[head] 5: running = Redefined subparagraph +[head] 6: bookmark = Redefined subparagraph +[head] 7: nameref = Redefined subparagraph +[head] 8: label = +[head] 9: subtitle|quote = {\NoValue }{\NoValue } +[head] use 'headformat' instance: subparagraph-@startsection +[Template] ==> Using instance 'subparagraph-@startsection' of type 'headformat' on line ... +[head] --------- Headformat instance arguments: +[head] 1: keys = +[head] 2: prefix = \NoValue +[head] 3: number = \theheading +[head] 4: title = Redefined subparagraph +[head] 5: subtitle = \NoValue +[head] 6: quotation = \NoValue +[Template] ==> Processing order key 'order' +[Template] ==> --------------------Start---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'prefix' in 'order' +[Template] ==> \NoValue +[Template] ==> Processing key 'separator-a' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> dropping collected separators +[Template] ==> Processing key 'number' in 'order' +[Template] ==> closing mc before struct 'heading-number' +[Template] ==> opening mc inside struct 'heading-number' +[Template] ==> typeset 'number' data +[Template] ==> reopening mc after struct 'heading-number' +[Template] ==> --------------------After number---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'punct' in 'order' +[Template] ==> mc already open +[Template] ==> typeset 'punct' data +[Template] ==> --------------------After punct---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-b' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key '?' in 'order' +[Template] ==> special group or separator item +[Template] ==> Processing key 'title' in 'order' +[Template] ==> using collected separator data +[Template] ==> mc already open +[Template] ==> mc already open +[Template] ==> typeset 'title' data +[Template] ==> --------------------After title---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[Template] ==> Processing key 'separator-c' in 'order' +[Template] ==> special group or separator item +[Template] ==> collecting separator data +[Template] ==> Processing key 'subtitle' in 'order' +[Template] ==> \NoValue +[Template] ==> dropping collected separators +[Template] ==> mc restore already open +[Template] ==> --------------------End---------------- +[Template] ==> ==> hmode +[Template] ==> ==> para-tagging: off +[Template] ==> mc status: open +The sequence \g__tag_struct_tag_stack_seq contains the items (without outer braces): +> {{subparagraph}{H5}} +> {{Sect}{Sect}} +> {{Sect}{Sect}} +> {{Document}{Document}} +> {{Root}{StructTreeRoot}}. +[head] ---> label(s): +The instance 'paragraph-@startsection' of type 'heading' has values: +> level => 4 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \paragraphmark {##1} +> para-indent => false +> before-vspace => 14.0pt plus 4.0pt minus 1.0pt +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 10.0pt +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \sffamily \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => \headformat {##1} +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => paragraph-@startsection +> contents-extra => +> name => paragraph +> from template => runin. + } +l. ......ceValues{heading}{paragraph-@startsection} +The instance 'paragraph-@startsection' of type 'headformat' has values: +> heading-indent => \z@ +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ......alues{headformat}{paragraph-@startsection} +The instance 'subparagraph-@startsection' of type 'heading' has values: +> level => 5 +> force-unnumbered => false +> placement => normal +> column-spanning => false +> mark-cmd => \subparagraphmark {##1} +> para-indent => false +> before-vspace => 14.0pt plus 4.0pt minus 1.0pt +> penalty => \c_max_int +> after-penalty-vspace => 0pt +> after-hspace => 10.0pt +> start-code => +> final-code => +> prefix => \NoValue +> punct => +> heading-decls => \sffamily \normalsize \bfseries +> prefix-decls => +> number-decls => +> title-decls => +> subtitle-decls => +> quote-decls => +> heading-format => ##1 +> prefix-format => ##1 +> number-format => ##1 +> punct-format => ##1 +> title-format => \headformat {##1} +> subtitle-format => ##1 +> quote-format => ##1 +> number-tag => heading-number +> headformat-instance => subparagraph-@startsection +> contents-extra => +> name => subparagraph +> from template => runin. + } +l. ......alues{heading}{subparagraph-@startsection} +The instance 'subparagraph-@startsection' of type 'headformat' has values: +> heading-indent => 1em +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \hspace {1em} +> separator-c => \ +> separator-d => +> from template => runin. + } +l. ......es{headformat}{subparagraph-@startsection} +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-,13,-1,} +...\marks4{b+,13,-1,} +...\hbox(0.0+0.0)x345.0 +....\hbox(0.0+0.0)x345.0 +...\pdfliteral page{EMC} +...\marks4{e-,13,15,} +...\marks4{e+,13,15,} +...\pdfrunninglinkon +..\glue 25.0 +..\glue(\lineskip) 0.0 +..\vbox(550.0+0.0)x345.0, glue set 487.94788fil +...\hbox(0.0+0.0)x0.0 +...\write-{} +...\glue(\topskip) 3.0989 +...\hbox(6.9011+1.94397)x345.0, glue set 172.52129fil +....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/paragraph <> BDC} +....\hbox(0.0+0.0)x0.0 +....\penalty 10000 +....\glue 0.0 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} +....\T1/cmr/bx/n/10 0 +....\T1/cmr/bx/n/10 . +....\T1/cmr/bx/n/10 0 +....\T1/cmr/bx/n/10 . +....\T1/cmr/bx/n/10 0 +....\T1/cmr/bx/n/10 . +....\T1/cmr/bx/n/10 1 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/paragraph <> BDC} +....\glue 11.4972 +....\pdffakespace +....\T1/cmr/bx/n/10 S +....\T1/cmr/bx/n/10 t +....\T1/cmr/bx/n/10 a +....\T1/cmr/bx/n/10 n +....\T1/cmr/bx/n/10 d +....\T1/cmr/bx/n/10 a +....\T1/cmr/bx/n/10 r +....\T1/cmr/bx/n/10 d +....\glue 3.8324 plus 1.9162 minus 1.27747 +....\T1/cmr/bx/n/10 p +....\T1/cmr/bx/n/10 a +....\T1/cmr/bx/n/10 r +....\T1/cmr/bx/n/10 a +....\T1/cmr/bx/n/10 g +....\T1/cmr/bx/n/10 r +....\T1/cmr/bx/n/10 a +....\T1/cmr/bx/n/10 p +....\T1/cmr/bx/n/10 h +....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{\protect \numberline {0.0.0.1}Standard paragraph}{\thepage }{target*.1}\protected@file@percent }} +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text-block <> BDC} +....\glue 9.99756 +....\T1/cmr/m/n/10 t +....\T1/cmr/m/n/10 e +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 t +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,1,6,paragraph,,,} +...\marks4{b+,1,6,paragraph,,,} +...\marks4{e-,1,6,} +...\marks4{e+,1,6,} +...\marks4{b-,2,7,heading-number,,,} +...\marks4{b+,2,7,heading-number,,,} +...\marks4{e-,2,7,} +...\marks4{e+,2,7,} +...\marks4{b-,3,6,paragraph,,,} +...\marks4{b+,3,6,paragraph,,,} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} +...\marks4{b-,4,9,text-block,,,} +...\marks4{b+,4,9,text-block,,,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} +...\penalty -300 +...\glue 14.0 plus 4.0 minus 1.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 2.59258 +...\hbox(7.46346+2.49939)x345.0, glue set 141.21399fil +....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/paragraph <> BDC} +....\hbox(0.0+0.0)x0.0 +....\penalty 10000 +....\glue 0.0 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 2 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/paragraph <> BDC} +....\glue 10.99731 +....\pdffakespace +....\T1/cmss/bx/n/10 [ +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 D +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 F +....\T1/cmss/bx/n/10 I +....\T1/cmss/bx/n/10 N +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 D +....\glue 3.66577 plus 1.83104 minus 1.22314 +....\T1/cmss/bx/n/10 P +....\kern-0.91644 +....\T1/cmss/bx/n/10 A +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 A +....\kern-0.30548 +....\T1/cmss/bx/n/10 G +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 A +....\T1/cmss/bx/n/10 P +....\T1/cmss/bx/n/10 H +....\T1/cmss/bx/n/10 ] +....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{\protect \numberline {0.0.0.2}Redefined paragraph}{\thepage }{target*.2}\protected@file@percent }} +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text-block <> BDC} +....\glue 10.0 +....\T1/cmr/m/n/10 t +....\T1/cmr/m/n/10 e +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 t +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,5,11,paragraph,,,} +...\marks4{b+,5,11,paragraph,,,} +...\marks4{e-,5,11,} +...\marks4{e+,5,11,} +...\marks4{b-,6,12,heading-number,,,} +...\marks4{b+,6,12,heading-number,,,} +...\marks4{e-,6,12,} +...\marks4{e+,6,12,} +...\marks4{b-,7,11,paragraph,,,} +...\marks4{b+,7,11,paragraph,,,} +...\marks4{e-,7,11,} +...\marks4{e+,7,11,} +...\marks4{b-,8,14,text-block,,,} +...\marks4{b+,8,14,text-block,,,} +...\marks4{e-,8,14,} +...\marks4{e+,8,14,} +...\penalty -300 +...\glue 14.0 plus 4.0 minus 1.0 +...\glue(\parskip) 0.0 plus 1.0 +...\glue(\parskip) 0.0 +...\glue(\baselineskip) 2.03716 +...\hbox(7.46346+2.49939)x345.0, glue set 101.58478fil +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/subparagraph <> BDC} +....\hbox(0.0+0.0)x0.0 +....\penalty 10000 +....\glue 9.99756 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 0 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 2 +....\T1/cmss/bx/n/10 . +....\T1/cmss/bx/n/10 1 +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/subparagraph <> BDC} +....\glue 10.99731 +....\pdffakespace +....\T1/cmss/bx/n/10 [ +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 D +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 F +....\T1/cmss/bx/n/10 I +....\T1/cmss/bx/n/10 N +....\T1/cmss/bx/n/10 E +....\T1/cmss/bx/n/10 D +....\glue 3.66577 plus 1.83104 minus 1.22314 +....\T1/cmss/bx/n/10 S +....\T1/cmss/bx/n/10 U +....\T1/cmss/bx/n/10 B +....\T1/cmss/bx/n/10 P +....\kern-0.91644 +....\T1/cmss/bx/n/10 A +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 A +....\kern-0.30548 +....\T1/cmss/bx/n/10 G +....\T1/cmss/bx/n/10 R +....\T1/cmss/bx/n/10 A +....\T1/cmss/bx/n/10 P +....\T1/cmss/bx/n/10 H +....\T1/cmss/bx/n/10 ] +....\write1{\@writefile{toc}{\protect \contentsline {subparagraph}{\protect \numberline {0.0.0.2.1}Redefined subparagraph}{\thepage }{target*.3}\protected@file@percent }} +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/text-block <> BDC} +....\glue 10.0 +....\T1/cmr/m/n/10 t +....\T1/cmr/m/n/10 e +....\T1/cmr/m/n/10 x +....\T1/cmr/m/n/10 t +....\pdfliteral page{EMC} +....\penalty 10000 +....\glue(\parfillskip) 0.0 plus 1.0fil +....\glue(\rightskip) 0.0 +...\marks4{b-,9,16,subparagraph,,,} +...\marks4{b+,9,16,subparagraph,,,} +...\marks4{e-,9,16,} +...\marks4{e+,9,16,} +...\marks4{b-,10,17,heading-number,,,} +...\marks4{b+,10,17,heading-number,,,} +...\marks4{e-,10,17,} +...\marks4{e+,10,17,} +...\marks4{b-,11,16,subparagraph,,,} +...\marks4{b+,11,16,subparagraph,,,} +...\marks4{e-,11,16,} +...\marks4{e+,11,16,} +...\marks4{b-,12,19,text-block,,,} +...\marks4{b+,12,19,text-block,,,} +...\marks4{e-,12,19,} +...\marks4{e+,12,19,} +...\kern -2.49939 +...\hbox(0.0+2.49939)x0.0 +...\glue -2.49939 +...\glue 0.0 plus 1.0fil +...\glue 0.0 +...\glue 0.0 plus 0.0001fil +..\pdfrunninglinkoff +..\pdfliteral page{/Artifact BMC} +..\marks4{b-,14,-1,} +..\marks4{b+,14,-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-,14,15,} +..\marks4{e+,14,15,} +..\pdfrunninglinkon +.\kern 0.0 +.\kern 0.0 +.\kern -633.0 +.\hbox(0.0+0.0)x0.0 +.\kern 633.0 +<><> (tagging-1521.aux) +Package tagpdf Info: Finalizing the tagging structure: +(tagpdf) Writing out ~19 structure objects +(tagpdf) with ~14 '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-sec/test-article-1.luatex.tpf b/required/latex-lab/testfiles-sec/test-article-1.luatex.tpf index c0a49ae54..eaa97c0d0 100644 --- a/required/latex-lab/testfiles-sec/test-article-1.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-article-1.luatex.tpf @@ -1,12 +1,12 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ -73 0 obj -<< /Length 4739 >> +70 0 obj +<< /Length 4952 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 20.66252 Tf 1 0 0 1 133.768 653.021 Tm [(P)31(art)]TJ @@ -78,192 +78,208 @@ ET EMC /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 14.3462 Tf 1 0 0 1 133.768 500.641 Tm [(P)31(art)]TJ /F15 9.96264 Tf -1 0 0 1 165.059 500.641 Tm [<0067>]TJ +1 0 0 1 165.059 500.641 Tm [<0067>-207<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 14.3462 Tf 1 0 0 1 170.439 500.641 Tm [(I)]TJ ET EMC -/Span<> BDC +/part<> BDC BT /F19 20.66252 Tf -1 0 0 1 133.768 475.735 Tm [(P)31(art)]TJ +1 0 0 1 133.768 455.81 Tm [(P)31(art)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf -1 0 0 1 133.768 444.934 Tm [(1)]TJ +1 0 0 1 133.768 425.008 Tm [(1)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 141.838 444.934 Tm [<0067>]TJ +1 0 0 1 141.838 425.008 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F19 14.3462 Tf -1 0 0 1 157.978 444.934 Tm [(Section)]TJ +1 0 0 1 157.978 425.008 Tm [(Section)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf -1 0 0 1 133.768 421.12 Tm [(1.1)]TJ +1 0 0 1 133.768 401.195 Tm [(1.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 421.12 Tm [<0067>]TJ +1 0 0 1 150.954 401.195 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf -1 0 0 1 164.403 421.12 Tm [(Subsection)]TJ +1 0 0 1 164.403 401.195 Tm [(Subsection)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf -1 0 0 1 133.768 402.731 Tm [(1.1.1)]TJ +1 0 0 1 133.768 382.806 Tm [(1.1.1)]TJ +ET +EMC +/subsubsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 157.319 402.731 Tm [<0067>]TJ +1 0 0 1 157.319 382.806 Tm [<0067>-817<0067>]TJ ET EMC -/subsubsection<> BDC +/subsubsection<> BDC BT /F17 9.96264 Tf -1 0 0 1 168.776 402.731 Tm [(Subsubsection)]TJ +1 0 0 1 168.776 382.806 Tm [(Subsubsection)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf -1 0 0 1 133.768 384.342 Tm [(1.1.1.1)]TJ +1 0 0 1 133.768 364.416 Tm [(1.1.1.1)]TJ ET EMC -/paragraph<> BDC +/paragraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 166.23 384.342 Tm [<0067>]TJ +1 0 0 1 166.23 364.416 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf -1 0 0 1 177.687 384.342 Tm [(P)32(aragraph)]TJ +1 0 0 1 177.687 364.416 Tm [(P)32(aragraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf -1 0 0 1 229.804 384.342 Tm [<0067>]TJ +1 0 0 1 229.804 364.416 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 239.766 384.342 Tm [(some)]TJ +1 0 0 1 239.766 364.416 Tm [(some)]TJ /F15 9.96264 Tf -1 0 0 1 261.407 384.342 Tm [<0067>]TJ +1 0 0 1 261.407 364.416 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 264.728 384.342 Tm [(text)]TJ +1 0 0 1 264.728 364.416 Tm [(text)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 133.768 358.446 Tm [<0067>]TJ +1 0 0 1 133.768 338.52 Tm [<0067>]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf -1 0 0 1 148.712 358.446 Tm [(1.1.1.1.1)]TJ +1 0 0 1 148.712 338.52 Tm [(1.1.1.1.1)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 190.085 358.446 Tm [<0067>]TJ +1 0 0 1 190.085 338.52 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf -1 0 0 1 201.542 358.446 Tm [(Subparagraph)]TJ +1 0 0 1 201.542 338.52 Tm [(Subparagraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf -1 0 0 1 271.605 358.446 Tm [<0067>]TJ +1 0 0 1 271.605 338.52 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 281.568 358.446 Tm [(some)]TJ +1 0 0 1 281.568 338.52 Tm [(some)]TJ /F15 9.96264 Tf -1 0 0 1 303.209 358.446 Tm [<0067>]TJ +1 0 0 1 303.209 338.52 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 306.53 358.446 Tm [(text)]TJ +1 0 0 1 306.53 338.52 Tm [(text)]TJ ET EMC /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 20.66252 Tf -1 0 0 1 133.768 316.381 Tm [(P)31(art)]TJ +1 0 0 1 133.768 296.456 Tm [(P)31(art)]TJ ET EMC -/section<> BDC +/section<> BDC BT /F19 14.3462 Tf -1 0 0 1 133.768 285.58 Tm [(Section)]TJ +1 0 0 1 133.768 265.655 Tm [(Section)]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf -1 0 0 1 133.768 261.767 Tm [(Subsection)]TJ +1 0 0 1 133.768 241.841 Tm [(Subsection)]TJ ET EMC -/subsubsection<> BDC +/subsubsection<> BDC BT /F17 9.96264 Tf -1 0 0 1 133.768 243.377 Tm [(Subsubsection)]TJ +1 0 0 1 133.768 223.452 Tm [(Subsubsection)]TJ ET EMC -/paragraph<> BDC +/paragraph<> BDC BT /F17 9.96264 Tf -1 0 0 1 133.768 224.988 Tm [(P)31(aragraph)]TJ +1 0 0 1 133.768 205.063 Tm [(P)31(aragraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf -1 0 0 1 185.885 224.988 Tm [<0067>]TJ +1 0 0 1 185.885 205.063 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 195.848 224.988 Tm [(some)]TJ +1 0 0 1 195.848 205.063 Tm [(some)]TJ /F15 9.96264 Tf -1 0 0 1 217.489 224.988 Tm [<0067>]TJ +1 0 0 1 217.489 205.063 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 220.81 224.988 Tm [(text)]TJ +1 0 0 1 220.81 205.063 Tm [(text)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 133.768 199.092 Tm [<0067>]TJ +1 0 0 1 133.768 179.167 Tm [<0067>]TJ /F17 9.96264 Tf -1 0 0 1 148.712 199.092 Tm [(Subparagraph)]TJ +1 0 0 1 148.712 179.167 Tm [(Subparagraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf -1 0 0 1 218.776 199.092 Tm [<0067>]TJ +1 0 0 1 218.776 179.167 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 228.738 199.092 Tm [(some)]TJ +1 0 0 1 228.738 179.167 Tm [(some)]TJ /F15 9.96264 Tf -1 0 0 1 250.379 199.092 Tm [<0067>]TJ +1 0 0 1 250.379 179.167 Tm [<0067>]TJ /F16 9.96264 Tf -1 0 0 1 253.7 199.092 Tm [(text)]TJ +1 0 0 1 253.7 179.167 Tm [(text)]TJ ET EMC /Artifact BMC @@ -278,11 +294,11 @@ EMC EMC endstream endobj -72 0 obj -<< /Type /Page /Contents 73 0 R /Resources 71 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 78 0 R >> +69 0 obj +<< /Type /Page /Contents 70 0 R /Resources 68 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 75 0 R >> endobj -71 0 obj -<< /ExtGState 1 0 R /Font << /F19 74 0 R /F17 75 0 R /F15 76 0 R /F16 77 0 R >> /ProcSet [ /PDF /Text ] >> +68 0 obj +<< /ExtGState 1 0 R /Font << /F19 71 0 R /F17 72 0 R /F15 73 0 R /F16 74 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1 0 obj << /opacity1 <> >> @@ -296,35 +312,34 @@ endobj 4 0 obj << >> endobj -79 0 obj +76 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 15 0 R 17 0 R 19 0 R 21 0 R 23 0 R 25 0 R 27 0 R 29 0 R 32 0 R 33 0 R 36 0 R 35 0 R 39 0 R 38 0 R 42 0 R 41 0 R 45 0 R 44 0 R 47 0 R 49 0 R 50 0 R 49 0 R 52 0 R 55 0 R 57 0 R 59 0 R 61 0 R 63 0 R 65 0 R 67 0 R 69 0 R] +<< /Nums [0 [ 14 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 26 0 R 28 0 R 30 0 R 31 0 R 30 0 R 34 0 R 33 0 R 33 0 R 37 0 R 36 0 R 36 0 R 40 0 R 39 0 R 39 0 R 43 0 R 42 0 R 45 0 R 47 0 R 48 0 R 47 0 R 50 0 R 52 0 R 54 0 R 56 0 R 58 0 R 60 0 R 62 0 R 64 0 R 66 0 R] ] >> endobj -80 0 obj +77 0 obj << /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 16 0 R (ID.010) 17 0 R (ID.011) 18 0 R (ID.012) 19 0 R (ID.013) 20 0 R (ID.014) 21 0 R (ID.015) 22 0 R (ID.016) 23 0 R (ID.017) 24 0 R (ID.018) 25 0 R (ID.019) 26 0 R (ID.020) 27 0 R (ID.021) 28 0 R (ID.022) 29 0 R (ID.023) 30 0 R (ID.024) 31 0 R (ID.025) 32 0 R (ID.026) 33 0 R (ID.027) 34 0 R (ID.028) 35 0 R (ID.029) 36 0 R (ID.030) 37 0 R (ID.031) 38 0 R (ID.032) 39 0 R (ID.033) 40 0 R (ID.034) 41 0 R (ID.035) 42 0 R (ID.036) 43 0 R (ID.037) 44 0 R (ID.038) 45 0 R (ID.039) 46 0 R (ID.040) 47 0 R (ID.041) 48 0 R (ID.042) 49 0 R (ID.043) 50 0 R (ID.044) 51 0 R (ID.045) 52 0 R (ID.046) 53 0 R (ID.047) 54 0 R (ID.048) 55 0 R (ID.049) 56 0 R (ID.050) 57 0 R (ID.051) 58 0 R ] >> endobj -81 0 obj -<< /Limits [(ID.052) (ID.062)]/Names [(ID.052) 59 0 R (ID.053) 60 0 R (ID.054) 61 0 R (ID.055) 62 0 R (ID.056) 63 0 R (ID.057) 64 0 R (ID.058) 65 0 R (ID.059) 66 0 R (ID.060) 67 0 R (ID.061) 68 0 R (ID.062) 69 0 R ] >> +78 0 obj +<< /Limits [(ID.052) (ID.059)]/Names [(ID.052) 59 0 R (ID.053) 60 0 R (ID.054) 61 0 R (ID.055) 62 0 R (ID.056) 63 0 R (ID.057) 64 0 R (ID.058) 65 0 R (ID.059) 66 0 R ] >> endobj -82 0 obj -<< /Kids [80 0 R 81 0 R] >> +79 0 obj +<< /Kids [77 0 R 78 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj -83 0 obj -<< /raggedright <> -/justify <> +80 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 30 0 R 53 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 29 0 R 51 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -336,180 +351,171 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [14 0 R 16 0 R] /ID (ID.006) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [14 0 R 15 0 R] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /T /S /part /P 13 0 R /K 15 0 R /ID (ID.007) >> +<< /Type /StructElem /T /S /part /P 13 0 R /K <> /ID (ID.007) >> endobj 15 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 14 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /Sect /P 13 0 R /K [16 0 R 17 0 R] /ID (ID.008) >> endobj 16 0 obj -<< /Type /StructElem /S /Sect /P 13 0 R /K [17 0 R 18 0 R] /ID (ID.009) >> +<< /Type /StructElem /T /S /section /P 15 0 R /K <> /ID (ID.009) >> endobj 17 0 obj -<< /Type /StructElem /T /S /section /P 16 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /S /Sect /P 15 0 R /K [18 0 R 19 0 R] /ID (ID.010) >> endobj 18 0 obj -<< /Type /StructElem /S /Sect /P 16 0 R /K [19 0 R 20 0 R] /ID (ID.011) >> +<< /Type /StructElem /T /S /subsection /P 17 0 R /K <> /ID (ID.011) >> endobj 19 0 obj -<< /Type /StructElem /T /S /subsection /P 18 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /S /Sect /P 17 0 R /K [20 0 R 21 0 R] /ID (ID.012) >> endobj 20 0 obj -<< /Type /StructElem /S /Sect /P 18 0 R /K [21 0 R 22 0 R] /ID (ID.013) >> +<< /Type /StructElem /T /S /subsubsection /P 19 0 R /K <> /ID (ID.013) >> endobj 21 0 obj -<< /Type /StructElem /T /S /subsubsection /P 20 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /S /Sect /P 19 0 R /K [22 0 R 23 0 R 25 0 R] /ID (ID.014) >> endobj 22 0 obj -<< /Type /StructElem /S /Sect /P 20 0 R /K [23 0 R 24 0 R 26 0 R] /ID (ID.015) >> +<< /Type /StructElem /C /justify /S /paragraph /P 21 0 R /K <> /ID (ID.015) >> endobj 23 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 22 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /S /semantic-para /P 21 0 R /K 24 0 R /ID (ID.016) >> endobj 24 0 obj -<< /Type /StructElem /S /semantic-para /P 22 0 R /K 25 0 R /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /text-block /P 23 0 R /K <> /ID (ID.017) >> endobj 25 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 24 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /S /Sect /P 21 0 R /K [26 0 R 27 0 R] /ID (ID.018) >> endobj 26 0 obj -<< /Type /StructElem /S /Sect /P 22 0 R /K [27 0 R 28 0 R] /ID (ID.019) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 25 0 R /K <> /ID (ID.019) >> endobj 27 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 26 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /S /semantic-para /P 25 0 R /K 28 0 R /ID (ID.020) >> endobj 28 0 obj -<< /Type /StructElem /S /semantic-para /P 26 0 R /K 29 0 R /ID (ID.021) >> +<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.021) >> endobj 29 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.022) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [30 0 R 32 0 R] /ID (ID.022) >> endobj 30 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [31 0 R 34 0 R] /ID (ID.023) >> +<< /Type /StructElem /T /S /part /P 29 0 R /K [<> 31 0 R <> ] /ID (ID.023) >> endobj 31 0 obj -<< /Type /StructElem /T /S /part /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.024) >> +<< /Type /StructElem /S /heading-number /P 30 0 R /K <> /ID (ID.024) >> endobj 32 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 31 0 R /K <> /ID (ID.025) >> +<< /Type /StructElem /S /Sect /P 29 0 R /K [33 0 R 35 0 R] /ID (ID.025) >> endobj 33 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 31 0 R /K <> /ID (ID.026) >> +<< /Type /StructElem /T /S /section /P 32 0 R /K [34 0 R <> <> ] /ID (ID.026) >> endobj 34 0 obj -<< /Type /StructElem /S /Sect /P 30 0 R /K [35 0 R 37 0 R] /ID (ID.027) >> +<< /Type /StructElem /S /heading-number /P 33 0 R /K <> /ID (ID.027) >> endobj 35 0 obj -<< /Type /StructElem /T /S /section /P 34 0 R /K [36 0 R <> ] /ID (ID.028) >> +<< /Type /StructElem /S /Sect /P 32 0 R /K [36 0 R 38 0 R] /ID (ID.028) >> endobj 36 0 obj -<< /Type /StructElem /S /section-number /P 35 0 R /K <> /ID (ID.029) >> +<< /Type /StructElem /T /S /subsection /P 35 0 R /K [37 0 R <> <> ] /ID (ID.029) >> endobj 37 0 obj -<< /Type /StructElem /S /Sect /P 34 0 R /K [38 0 R 40 0 R] /ID (ID.030) >> +<< /Type /StructElem /S /heading-number /P 36 0 R /K <> /ID (ID.030) >> endobj 38 0 obj -<< /Type /StructElem /T /S /subsection /P 37 0 R /K [39 0 R <> ] /ID (ID.031) >> +<< /Type /StructElem /S /Sect /P 35 0 R /K [39 0 R 41 0 R] /ID (ID.031) >> endobj 39 0 obj -<< /Type /StructElem /S /section-number /P 38 0 R /K <> /ID (ID.032) >> +<< /Type /StructElem /T /S /subsubsection /P 38 0 R /K [40 0 R <> <> ] /ID (ID.032) >> endobj 40 0 obj -<< /Type /StructElem /S /Sect /P 37 0 R /K [41 0 R 43 0 R] /ID (ID.033) >> +<< /Type /StructElem /S /heading-number /P 39 0 R /K <> /ID (ID.033) >> endobj 41 0 obj -<< /Type /StructElem /T /S /subsubsection /P 40 0 R /K [42 0 R <> ] /ID (ID.034) >> +<< /Type /StructElem /S /Sect /P 38 0 R /K [42 0 R 44 0 R 46 0 R] /ID (ID.034) >> endobj 42 0 obj -<< /Type /StructElem /S /section-number /P 41 0 R /K <> /ID (ID.035) >> +<< /Type /StructElem /C /justify /S /paragraph /P 41 0 R /K [ 43 0 R <> ] /ID (ID.035) >> endobj 43 0 obj -<< /Type /StructElem /S /Sect /P 40 0 R /K [44 0 R 46 0 R 48 0 R] /ID (ID.036) >> +<< /Type /StructElem /S /heading-number /P 42 0 R /K <> /ID (ID.036) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 43 0 R /K [ 45 0 R <> ] /ID (ID.037) >> +<< /Type /StructElem /S /semantic-para /P 41 0 R /K 45 0 R /ID (ID.037) >> endobj 45 0 obj -<< /Type /StructElem /S /section-number /P 44 0 R /K <> /ID (ID.038) >> +<< /Type /StructElem /C /justify /S /text-block /P 44 0 R /K <> /ID (ID.038) >> endobj 46 0 obj -<< /Type /StructElem /S /semantic-para /P 43 0 R /K 47 0 R /ID (ID.039) >> +<< /Type /StructElem /S /Sect /P 41 0 R /K [47 0 R 49 0 R] /ID (ID.039) >> endobj 47 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 46 0 R /K <> /ID (ID.040) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 46 0 R /K [<> 48 0 R <> ] /ID (ID.040) >> endobj 48 0 obj -<< /Type /StructElem /S /Sect /P 43 0 R /K [49 0 R 51 0 R] /ID (ID.041) >> +<< /Type /StructElem /S /heading-number /P 47 0 R /K <> /ID (ID.041) >> endobj 49 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 48 0 R /K [<> 50 0 R <> ] /ID (ID.042) >> +<< /Type /StructElem /S /semantic-para /P 46 0 R /K 50 0 R /ID (ID.042) >> endobj 50 0 obj -<< /Type /StructElem /S /section-number /P 49 0 R /K <> /ID (ID.043) >> +<< /Type /StructElem /C /justify /S /text-block /P 49 0 R /K <> /ID (ID.043) >> endobj 51 0 obj -<< /Type /StructElem /S /semantic-para /P 48 0 R /K 52 0 R /ID (ID.044) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [52 0 R 53 0 R] /ID (ID.044) >> endobj 52 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 51 0 R /K <> /ID (ID.045) >> +<< /Type /StructElem /T /S /part /P 51 0 R /K <> /ID (ID.045) >> endobj 53 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [54 0 R 56 0 R] /ID (ID.046) >> +<< /Type /StructElem /S /Sect /P 51 0 R /K [54 0 R 55 0 R] /ID (ID.046) >> endobj 54 0 obj -<< /Type /StructElem /T /S /part /P 53 0 R /K 55 0 R /ID (ID.047) >> +<< /Type /StructElem /T /S /section /P 53 0 R /K <> /ID (ID.047) >> endobj 55 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 54 0 R /K <> /ID (ID.048) >> +<< /Type /StructElem /S /Sect /P 53 0 R /K [56 0 R 57 0 R] /ID (ID.048) >> endobj 56 0 obj -<< /Type /StructElem /S /Sect /P 53 0 R /K [57 0 R 58 0 R] /ID (ID.049) >> +<< /Type /StructElem /T /S /subsection /P 55 0 R /K <> /ID (ID.049) >> endobj 57 0 obj -<< /Type /StructElem /T /S /section /P 56 0 R /K <> /ID (ID.050) >> +<< /Type /StructElem /S /Sect /P 55 0 R /K [58 0 R 59 0 R] /ID (ID.050) >> endobj 58 0 obj -<< /Type /StructElem /S /Sect /P 56 0 R /K [59 0 R 60 0 R] /ID (ID.051) >> +<< /Type /StructElem /T /S /subsubsection /P 57 0 R /K <> /ID (ID.051) >> endobj 59 0 obj -<< /Type /StructElem /T /S /subsection /P 58 0 R /K <> /ID (ID.052) >> +<< /Type /StructElem /S /Sect /P 57 0 R /K [60 0 R 61 0 R 63 0 R] /ID (ID.052) >> endobj 60 0 obj -<< /Type /StructElem /S /Sect /P 58 0 R /K [61 0 R 62 0 R] /ID (ID.053) >> +<< /Type /StructElem /C /justify /S /paragraph /P 59 0 R /K <> /ID (ID.053) >> endobj 61 0 obj -<< /Type /StructElem /T /S /subsubsection /P 60 0 R /K <> /ID (ID.054) >> +<< /Type /StructElem /S /semantic-para /P 59 0 R /K 62 0 R /ID (ID.054) >> endobj 62 0 obj -<< /Type /StructElem /S /Sect /P 60 0 R /K [63 0 R 64 0 R 66 0 R] /ID (ID.055) >> +<< /Type /StructElem /C /justify /S /text-block /P 61 0 R /K <> /ID (ID.055) >> endobj 63 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 62 0 R /K <> /ID (ID.056) >> +<< /Type /StructElem /S /Sect /P 59 0 R /K [64 0 R 65 0 R] /ID (ID.056) >> endobj 64 0 obj -<< /Type /StructElem /S /semantic-para /P 62 0 R /K 65 0 R /ID (ID.057) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 63 0 R /K <> /ID (ID.057) >> endobj 65 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 64 0 R /K <> /ID (ID.058) >> +<< /Type /StructElem /S /semantic-para /P 63 0 R /K 66 0 R /ID (ID.058) >> endobj 66 0 obj -<< /Type /StructElem /S /Sect /P 62 0 R /K [67 0 R 68 0 R] /ID (ID.059) >> -endobj -67 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 66 0 R /K <> /ID (ID.060) >> -endobj -68 0 obj -<< /Type /StructElem /S /semantic-para /P 66 0 R /K 69 0 R /ID (ID.061) >> -endobj -69 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 68 0 R /K <> /ID (ID.062) >> +<< /Type /StructElem /C /justify /S /text-block /P 65 0 R /K <> /ID (ID.059) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 82 0 R /ClassMap 83 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 79 0 R /ClassMap 80 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -70 0 obj +67 0 obj << /Type /Metadata /Subtype /XML /Length 12075 >> stream @@ -749,24 +755,24 @@ stream endstream endobj -84 0 obj +81 0 obj [500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444.4 0 0 0 0 0 0 0 833.3 0 500 0 0 0 394.4 388.9 0 0 0 527.8 ] endobj -85 0 obj +82 0 obj [ 103 [ 333 ] ] endobj -87 0 obj +84 0 obj << /Length 13 >> [BINARY STREAM] endobj -88 0 obj +85 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -86 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 88 0 R /CIDSet 87 0 R >> +83 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 85 0 R /CIDSet 84 0 R >> endobj -89 0 obj +86 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -800,40 +806,40 @@ end %%EOF endstream endobj -76 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 90 0 R ] /ToUnicode 89 0 R >> +73 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 87 0 R ] /ToUnicode 86 0 R >> endobj -90 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 86 0 R /W 85 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +87 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 83 0 R /W 82 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -91 0 obj +88 0 obj [319.4 0 0 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 786.1 0 0 638.9 0 0 0 0 0 0 0 0 0 0 0 0 0 559 638.9 511.1 0 527.1 0 575 638.9 319.4 0 0 0 0 638.9 575 638.9 0 473.6 453.6 447.2 638.9 ] endobj -92 0 obj +89 0 obj [312.5 0 0 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419 0 0 0 0 0 0 768.5 0 0 625 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 625 500 0 513.3 0 0 0 312.5 0 0 0 0 625 562.5 0 0 459.5 443.8 437.5 625 ] endobj -94 0 obj +91 0 obj << /Length1 1647 /Length2 10662 /Length3 0 /Length 12309 >> [BINARY STREAM] endobj -93 0 obj -<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /P /S /a /b /c /e /g /h /i /n /o /one /p /period /r /s /t /u) /FontFile 94 0 R >> +90 0 obj +<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /P /S /a /b /c /e /g /h /i /n /o /one /p /period /r /s /t /u) /FontFile 91 0 R >> endobj -96 0 obj +93 0 obj << /Length1 1616 /Length2 8352 /Length3 0 /Length 9968 >> [BINARY STREAM] endobj -95 0 obj -<< /Type /FontDescriptor /FontName /VFHPEL+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /I /P /S /a /b /c /e /i /n /o /one /period /r /s /t /u) /FontFile 96 0 R >> +92 0 obj +<< /Type /FontDescriptor /FontName /VFHPEL+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /I /P /S /a /b /c /e /i /n /o /one /period /r /s /t /u) /FontFile 93 0 R >> endobj -98 0 obj +95 0 obj << /Length1 1477 /Length2 9286 /Length3 0 /Length 10763 >> [BINARY STREAM] endobj -97 0 obj -<< /Type /FontDescriptor /FontName /CTWJDN+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /e /m /o /one /s /t /x) /FontFile 98 0 R >> +94 0 obj +<< /Type /FontDescriptor /FontName /CTWJDN+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /e /m /o /one /s /t /x) /FontFile 95 0 R >> endobj -99 0 obj +96 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -953,10 +959,10 @@ end %%EOF endstream endobj -75 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 93 0 R /FirstChar 46 /LastChar 117 /Widths 91 0 R /ToUnicode 99 0 R >> +72 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 90 0 R /FirstChar 46 /LastChar 117 /Widths 88 0 R /ToUnicode 96 0 R >> endobj -100 0 obj +97 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1076,10 +1082,10 @@ end %%EOF endstream endobj -74 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /VFHPEL+CMBX12 /FontDescriptor 95 0 R /FirstChar 46 /LastChar 117 /Widths 92 0 R /ToUnicode 100 0 R >> +71 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /VFHPEL+CMBX12 /FontDescriptor 92 0 R /FirstChar 46 /LastChar 117 /Widths 89 0 R /ToUnicode 97 0 R >> endobj -101 0 obj +98 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1199,126 +1205,123 @@ end %%EOF endstream endobj -77 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /CTWJDN+CMR10 /FontDescriptor 97 0 R /FirstChar 49 /LastChar 120 /Widths 84 0 R /ToUnicode 101 0 R >> +74 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /CTWJDN+CMR10 /FontDescriptor 94 0 R /FirstChar 49 /LastChar 120 /Widths 81 0 R /ToUnicode 98 0 R >> endobj -78 0 obj -<< /Type /Pages /Count 1 /Kids [ 72 0 R ] >> +75 0 obj +<< /Type /Pages /Count 1 /Kids [ 69 0 R ] >> endobj -102 0 obj -<< /Type /Catalog /Pages 78 0 R /MarkInfo 79 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 70 0 R >> +99 0 obj +<< /Type /Catalog /Pages 75 0 R /MarkInfo 76 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 67 0 R >> endobj -103 0 obj +100 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 104 +0 101 0000000008 65535 f -0000005077 00000 n -0000005124 00000 n -0000005146 00000 n -0000005168 00000 n -0000014660 00000 n -0000005226 00000 n -0000006616 00000 n +0000005290 00000 n +0000005337 00000 n +0000005359 00000 n +0000005381 00000 n +0000014758 00000 n +0000005439 00000 n +0000006809 00000 n 0000000000 00000 f -0000007500 00000 n -0000007601 00000 n -0000007677 00000 n -0000007753 00000 n -0000007829 00000 n -0000007920 00000 n -0000008029 00000 n -0000008156 00000 n -0000008248 00000 n -0000008400 00000 n -0000008492 00000 n -0000008659 00000 n -0000008751 00000 n -0000008933 00000 n -0000009032 00000 n -0000009160 00000 n -0000009252 00000 n -0000009381 00000 n -0000009473 00000 n -0000009604 00000 n -0000009696 00000 n -0000009825 00000 n -0000009916 00000 n -0000010034 00000 n -0000010161 00000 n -0000010288 00000 n -0000010380 00000 n -0000010542 00000 n -0000010664 00000 n -0000010756 00000 n -0000010933 00000 n -0000011055 00000 n -0000011147 00000 n -0000011339 00000 n -0000011461 00000 n -0000011560 00000 n -0000011699 00000 n -0000011821 00000 n -0000011913 00000 n -0000012043 00000 n -0000012135 00000 n -0000012312 00000 n -0000012434 00000 n -0000012526 00000 n -0000012656 00000 n -0000012747 00000 n -0000012856 00000 n -0000012984 00000 n -0000013076 00000 n -0000013229 00000 n -0000013321 00000 n -0000013489 00000 n -0000013581 00000 n -0000013764 00000 n -0000013863 00000 n -0000013992 00000 n -0000014084 00000 n -0000014214 00000 n -0000014306 00000 n -0000014438 00000 n -0000014530 00000 n -0000014778 00000 n -0000004954 00000 n -0000004819 00000 n +0000007757 00000 n +0000007858 00000 n +0000007934 00000 n +0000008010 00000 n +0000008086 00000 n +0000008177 00000 n +0000008314 00000 n +0000008406 00000 n +0000008558 00000 n +0000008650 00000 n +0000008817 00000 n +0000008909 00000 n +0000009091 00000 n +0000009190 00000 n +0000009318 00000 n +0000009410 00000 n +0000009539 00000 n +0000009631 00000 n +0000009762 00000 n +0000009854 00000 n +0000009983 00000 n +0000010074 00000 n +0000010256 00000 n +0000010377 00000 n +0000010469 00000 n +0000010667 00000 n +0000010789 00000 n +0000010881 00000 n +0000011094 00000 n +0000011216 00000 n +0000011308 00000 n +0000011536 00000 n +0000011658 00000 n +0000011757 00000 n +0000011896 00000 n +0000012018 00000 n +0000012110 00000 n +0000012240 00000 n +0000012332 00000 n +0000012509 00000 n +0000012631 00000 n +0000012723 00000 n +0000012853 00000 n +0000012944 00000 n +0000013082 00000 n +0000013174 00000 n +0000013327 00000 n +0000013419 00000 n +0000013587 00000 n +0000013679 00000 n +0000013862 00000 n +0000013961 00000 n +0000014090 00000 n +0000014182 00000 n +0000014312 00000 n +0000014404 00000 n +0000014536 00000 n +0000014628 00000 n +0000014876 00000 n +0000005167 00000 n +0000005032 00000 n 0000000020 00000 n -0000067450 00000 n -0000065501 00000 n -0000028787 00000 n -0000069395 00000 n -0000069554 00000 n -0000005190 00000 n -0000005479 00000 n -0000006337 00000 n -0000006572 00000 n -0000007295 00000 n -0000026943 00000 n -0000027130 00000 n -0000027825 00000 n -0000027162 00000 n -0000027235 00000 n -0000028061 00000 n -0000028941 00000 n -0000029141 00000 n -0000029368 00000 n -0000041992 00000 n -0000029583 00000 n -0000052338 00000 n -0000042271 00000 n -0000063473 00000 n -0000052611 00000 n -0000063712 00000 n -0000065660 00000 n -0000067610 00000 n -0000069616 00000 n -0000069732 00000 n +0000067547 00000 n +0000065599 00000 n +0000028885 00000 n +0000069490 00000 n +0000069648 00000 n +0000005403 00000 n +0000005720 00000 n +0000006578 00000 n +0000006765 00000 n +0000007595 00000 n +0000027041 00000 n +0000027228 00000 n +0000027923 00000 n +0000027260 00000 n +0000027333 00000 n +0000028159 00000 n +0000029039 00000 n +0000029239 00000 n +0000029466 00000 n +0000042090 00000 n +0000029681 00000 n +0000052436 00000 n +0000042369 00000 n +0000063571 00000 n +0000052709 00000 n +0000063810 00000 n +0000065758 00000 n +0000067706 00000 n +0000069710 00000 n +0000069825 00000 n trailer -<< /Size 104 /Root 102 0 R /Info 103 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 101 /Root 99 0 R /Info 100 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -69865 +69958 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-article-1.tpf b/required/latex-lab/testfiles-sec/test-article-1.tpf index b5079d84c..bdb2ae959 100644 --- a/required/latex-lab/testfiles-sec/test-article-1.tpf +++ b/required/latex-lab/testfiles-sec/test-article-1.tpf @@ -1,6 +1,6 @@ %PDF-1.7 %ÐÔÅØ -70 0 obj +67 0 obj << /Type /Metadata /Subtype /XML /Length 12073 @@ -243,15 +243,15 @@ stream endstream endobj -72 0 obj +69 0 obj << -/Length 3236 +/Length 3595 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT /F48 20.6625 Tf 133.768 652.939 Td [(P)29(art)]TJ ET @@ -291,118 +291,140 @@ BT /F45 9.9626 Tf 228.719 535.661 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/Span <> BDC +/part <> BDC BT -/F47 14.3462 Tf 133.768 500.575 Td [(P)30(a)1(r)-1(t)]TJ/F52 9.9626 Tf( )Tj/F47 14.3462 Tf 36.024 0 Td [(I)]TJ +/F47 14.3462 Tf 133.768 500.575 Td [(P)30(a)1(r)-1(t)]TJ/F52 9.9626 Tf [-527( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC BT -/F48 20.6625 Tf 133.768 475.668 Td [(P)29(art)]TJ +/F47 14.3462 Tf 169.792 500.575 Td [(I)]TJ ET EMC -/section-number <> BDC +/part <> BDC BT -/F47 14.3462 Tf 133.768 444.87 Td [(1)]TJ +/F48 20.6625 Tf 133.768 455.743 Td [(P)29(art)]TJ ET EMC -/section <> BDC +/heading-number <> BDC BT -/F47 14.3462 Tf 157.434 444.87 Td [(Section)]TJ +/F47 14.3462 Tf 133.768 424.945 Td [(1)]TJ ET EMC -/section-number <> BDC +/section <> BDC BT -/F51 11.9552 Tf 133.768 421.059 Td [(1.1)]TJ +/F52 9.9626 Tf 157.434 424.945 Td [( )]TJ ET EMC -/subsection <> BDC +/section <> BDC BT -/F51 11.9552 Tf 164.396 421.059 Td [(Subsection)]TJ +/F47 14.3462 Tf 157.434 424.945 Td [(Section)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT -/F46 9.9626 Tf 133.768 402.671 Td [(1.1.1)]TJ +/F51 11.9552 Tf 133.768 401.134 Td [(1.1)]TJ ET EMC -/subsubsection <> BDC +/subsection <> BDC BT -/F46 9.9626 Tf 168.767 402.671 Td [(Subsubsection)]TJ +/F52 9.9626 Tf 164.396 401.134 Td [( )]TJ ET EMC -/paragraph <> BDC +/subsection <> BDC +BT +/F51 11.9552 Tf 164.396 401.134 Td [(Subsection)]TJ +ET EMC -/section-number <> BDC +/heading-number <> BDC BT -/F46 9.9626 Tf 133.768 384.284 Td [(1.1.1.1)]TJ +/F46 9.9626 Tf 133.768 382.746 Td [(1.1.1)]TJ ET EMC -/paragraph <> BDC +/subsubsection <> BDC BT -/F46 9.9626 Tf 177.676 384.284 Td [(P)32(aragraph)]TJ +/F52 9.9626 Tf 168.767 382.746 Td [( )]TJ ET EMC -/text-block <> BDC +/subsubsection <> BDC BT -/F45 9.9626 Tf 239.741 384.284 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ +/F46 9.9626 Tf 168.767 382.746 Td [(Subsubsection)]TJ ET EMC -/subparagraph <> BDC +/paragraph <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT -/F46 9.9626 Tf 148.712 358.391 Td [(1.1.1.1.1)]TJ +/F46 9.9626 Tf 133.768 364.358 Td [(1.1.1.1)]TJ ET EMC -/subparagraph <> BDC +/paragraph <> BDC BT -/F46 9.9626 Tf 201.529 358.391 Td [(Subparagraph)]TJ +/F52 9.9626 Tf 177.676 364.358 Td [( )]TJ +/F46 9.9626 Tf [333(P)32(aragraph)]TJ ET EMC /text-block <> BDC BT -/F45 9.9626 Tf 281.536 358.391 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ +/F45 9.9626 Tf 239.741 364.358 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/Span <> BDC +/subparagraph <> BDC +EMC +/heading-number <> BDC BT -/F48 20.6625 Tf 133.768 316.331 Td [(P)29(art)]TJ +/F46 9.9626 Tf 148.712 338.466 Td [(1.1.1.1.1)]TJ ET EMC -/section <> BDC +/subparagraph <> BDC BT -/F47 14.3462 Tf 133.768 285.533 Td [(Section)]TJ +/F52 9.9626 Tf 201.529 338.466 Td [( )]TJ +/F46 9.9626 Tf [333(Subparagraph)]TJ ET EMC -/subsection <> BDC +/text-block <> BDC BT -/F51 11.9552 Tf 133.768 261.722 Td [(Subsection)]TJ +/F45 9.9626 Tf 281.536 338.466 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/subsubsection <> BDC +/part <> BDC BT -/F46 9.9626 Tf 133.768 243.334 Td [(Subsubsection)]TJ +/F48 20.6625 Tf 133.768 296.406 Td [(P)29(art)]TJ ET EMC -/paragraph <> BDC +/section <> BDC BT -/F46 9.9626 Tf 133.768 224.946 Td [(P)32(aragraph)]TJ +/F47 14.3462 Tf 133.768 265.608 Td [(Section)]TJ ET EMC -/text-block <> BDC +/subsection <> BDC BT -/F45 9.9626 Tf 195.833 224.946 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ +/F51 11.9552 Tf 133.768 241.796 Td [(Subsection)]TJ ET EMC -/subparagraph <> BDC +/subsubsection <> BDC BT -/F46 9.9626 Tf 148.712 199.054 Td [(Subparagraph)]TJ +/F46 9.9626 Tf 133.768 223.409 Td [(Subsubsection)]TJ ET EMC -/text-block <> BDC +/paragraph <> BDC BT -/F45 9.9626 Tf 228.719 199.054 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ +/F46 9.9626 Tf 133.768 205.021 Td [(P)32(aragraph)]TJ +ET +EMC +/text-block <> BDC +BT +/F45 9.9626 Tf 195.833 205.021 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ +ET +EMC +/subparagraph <> BDC +BT +/F46 9.9626 Tf 148.712 179.128 Td [(Subparagraph)]TJ +ET +EMC +/text-block <> BDC +BT +/F45 9.9626 Tf 228.719 179.128 Td [(some)]TJ/F52 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC /Artifact BMC @@ -412,20 +434,20 @@ ET EMC endstream endobj -15 0 obj +14 0 obj << /Type /Page -/Contents 72 0 R -/Resources 71 0 R +/Contents 69 0 R +/Resources 68 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 79 0 R +/Parent 76 0 R >> endobj -71 0 obj +68 0 obj << /ExtGState 1 0 R -/Font << /F48 73 0 R /F47 74 0 R /F51 75 0 R /F46 76 0 R /F45 77 0 R /F52 78 0 R >> +/Font << /F48 70 0 R /F47 71 0 R /F51 72 0 R /F46 73 0 R /F45 74 0 R /F52 75 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -441,35 +463,34 @@ endobj 4 0 obj << >> endobj -80 0 obj +77 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 17 0 R 19 0 R 21 0 R 23 0 R 25 0 R 27 0 R 29 0 R 32 0 R 33 0 R 36 0 R 35 0 R 39 0 R 38 0 R 42 0 R 41 0 R 44 0 R 45 0 R 44 0 R 47 0 R 49 0 R 50 0 R 49 0 R 52 0 R 55 0 R 57 0 R 59 0 R 61 0 R 63 0 R 65 0 R 67 0 R 69 0 R ] +<< /Nums [0 [ 13 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 26 0 R 28 0 R 30 0 R 31 0 R 30 0 R 34 0 R 33 0 R 33 0 R 37 0 R 36 0 R 36 0 R 40 0 R 39 0 R 39 0 R 42 0 R 43 0 R 42 0 R 45 0 R 47 0 R 48 0 R 47 0 R 50 0 R 52 0 R 54 0 R 56 0 R 58 0 R 60 0 R 62 0 R 64 0 R 66 0 R ] ] >> endobj -81 0 obj -<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 18 0 R (ID.011) 19 0 R (ID.012) 20 0 R (ID.013) 21 0 R (ID.014) 22 0 R (ID.015) 23 0 R (ID.016) 24 0 R (ID.017) 25 0 R (ID.018) 26 0 R (ID.019) 27 0 R (ID.020) 28 0 R (ID.021) 29 0 R (ID.022) 30 0 R (ID.023) 31 0 R (ID.024) 32 0 R (ID.025) 33 0 R (ID.026) 34 0 R (ID.027) 35 0 R (ID.028) 36 0 R (ID.029) 37 0 R (ID.030) 38 0 R (ID.031) 39 0 R (ID.032) 40 0 R (ID.033) 41 0 R (ID.034) 42 0 R (ID.035) 43 0 R (ID.036) 44 0 R (ID.037) 45 0 R (ID.038) 46 0 R (ID.039) 47 0 R (ID.040) 48 0 R (ID.041) 49 0 R (ID.042) 50 0 R (ID.043) 51 0 R (ID.044) 52 0 R (ID.045) 53 0 R (ID.046) 54 0 R (ID.047) 55 0 R (ID.048) 56 0 R (ID.049) 57 0 R (ID.050) 58 0 R (ID.051) 59 0 R ] >> +78 0 obj +<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 15 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 18 0 R (ID.011) 19 0 R (ID.012) 20 0 R (ID.013) 21 0 R (ID.014) 22 0 R (ID.015) 23 0 R (ID.016) 24 0 R (ID.017) 25 0 R (ID.018) 26 0 R (ID.019) 27 0 R (ID.020) 28 0 R (ID.021) 29 0 R (ID.022) 30 0 R (ID.023) 31 0 R (ID.024) 32 0 R (ID.025) 33 0 R (ID.026) 34 0 R (ID.027) 35 0 R (ID.028) 36 0 R (ID.029) 37 0 R (ID.030) 38 0 R (ID.031) 39 0 R (ID.032) 40 0 R (ID.033) 41 0 R (ID.034) 42 0 R (ID.035) 43 0 R (ID.036) 44 0 R (ID.037) 45 0 R (ID.038) 46 0 R (ID.039) 47 0 R (ID.040) 48 0 R (ID.041) 49 0 R (ID.042) 50 0 R (ID.043) 51 0 R (ID.044) 52 0 R (ID.045) 53 0 R (ID.046) 54 0 R (ID.047) 55 0 R (ID.048) 56 0 R (ID.049) 57 0 R (ID.050) 58 0 R (ID.051) 59 0 R ] >> endobj -82 0 obj -<< /Limits [(ID.052) (ID.061)]/Names [(ID.052) 60 0 R (ID.053) 61 0 R (ID.054) 62 0 R (ID.055) 63 0 R (ID.056) 64 0 R (ID.057) 65 0 R (ID.058) 66 0 R (ID.059) 67 0 R (ID.060) 68 0 R (ID.061) 69 0 R ] >> +79 0 obj +<< /Limits [(ID.052) (ID.058)]/Names [(ID.052) 60 0 R (ID.053) 61 0 R (ID.054) 62 0 R (ID.055) 63 0 R (ID.056) 64 0 R (ID.057) 65 0 R (ID.058) 66 0 R ] >> endobj -83 0 obj -<< /Kids [81 0 R 82 0 R] >> +80 0 obj +<< /Kids [78 0 R 79 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj -84 0 obj -<< /raggedright <> -/justify <> +81 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 30 0 R 53 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 29 0 R 51 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -478,198 +499,189 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.004) >> endobj 12 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [13 0 R 16 0 R] /ID (ID.005) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [13 0 R 15 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /part /P 12 0 R /K 14 0 R /ID (ID.006) >> +<< /Type /StructElem /T /S /part /P 12 0 R /K <> /ID (ID.006) >> endobj -14 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 13 0 R /K <> /ID (ID.007) >> +15 0 obj +<< /Type /StructElem /S /Sect /P 12 0 R /K [16 0 R 17 0 R] /ID (ID.007) >> endobj 16 0 obj -<< /Type /StructElem /S /Sect /P 12 0 R /K [17 0 R 18 0 R] /ID (ID.008) >> +<< /Type /StructElem /T /S /section /P 15 0 R /K <> /ID (ID.008) >> endobj 17 0 obj -<< /Type /StructElem /T /S /section /P 16 0 R /K <> /ID (ID.009) >> +<< /Type /StructElem /S /Sect /P 15 0 R /K [18 0 R 19 0 R] /ID (ID.009) >> endobj 18 0 obj -<< /Type /StructElem /S /Sect /P 16 0 R /K [19 0 R 20 0 R] /ID (ID.010) >> +<< /Type /StructElem /T /S /subsection /P 17 0 R /K <> /ID (ID.010) >> endobj 19 0 obj -<< /Type /StructElem /T /S /subsection /P 18 0 R /K <> /ID (ID.011) >> +<< /Type /StructElem /S /Sect /P 17 0 R /K [20 0 R 21 0 R] /ID (ID.011) >> endobj 20 0 obj -<< /Type /StructElem /S /Sect /P 18 0 R /K [21 0 R 22 0 R] /ID (ID.012) >> +<< /Type /StructElem /T /S /subsubsection /P 19 0 R /K <> /ID (ID.012) >> endobj 21 0 obj -<< /Type /StructElem /T /S /subsubsection /P 20 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /S /Sect /P 19 0 R /K [22 0 R 23 0 R 25 0 R] /ID (ID.013) >> endobj 22 0 obj -<< /Type /StructElem /S /Sect /P 20 0 R /K [23 0 R 24 0 R 26 0 R] /ID (ID.014) >> +<< /Type /StructElem /C /justify /S /paragraph /P 21 0 R /K <> /ID (ID.014) >> endobj 23 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 22 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /S /semantic-para /P 21 0 R /K 24 0 R /ID (ID.015) >> endobj 24 0 obj -<< /Type /StructElem /S /semantic-para /P 22 0 R /K 25 0 R /ID (ID.016) >> +<< /Type /StructElem /C /justify /S /text-block /P 23 0 R /K <> /ID (ID.016) >> endobj 25 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 24 0 R /K <> /ID (ID.017) >> +<< /Type /StructElem /S /Sect /P 21 0 R /K [26 0 R 27 0 R] /ID (ID.017) >> endobj 26 0 obj -<< /Type /StructElem /S /Sect /P 22 0 R /K [27 0 R 28 0 R] /ID (ID.018) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 25 0 R /K <> /ID (ID.018) >> endobj 27 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 26 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /S /semantic-para /P 25 0 R /K 28 0 R /ID (ID.019) >> endobj 28 0 obj -<< /Type /StructElem /S /semantic-para /P 26 0 R /K 29 0 R /ID (ID.020) >> +<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.020) >> endobj 29 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.021) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [30 0 R 32 0 R] /ID (ID.021) >> endobj 30 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [31 0 R 34 0 R] /ID (ID.022) >> +<< /Type /StructElem /T /S /part /P 29 0 R /K [<> 31 0 R <>] /ID (ID.022) >> endobj 31 0 obj -<< /Type /StructElem /T /S /part /P 30 0 R /K [32 0 R 33 0 R] /ID (ID.023) >> +<< /Type /StructElem /S /heading-number /P 30 0 R /K <> /ID (ID.023) >> endobj 32 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 31 0 R /K <> /ID (ID.024) >> +<< /Type /StructElem /S /Sect /P 29 0 R /K [33 0 R 35 0 R] /ID (ID.024) >> endobj 33 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 31 0 R /K <> /ID (ID.025) >> +<< /Type /StructElem /T /S /section /P 32 0 R /K [34 0 R <> <>] /ID (ID.025) >> endobj 34 0 obj -<< /Type /StructElem /S /Sect /P 30 0 R /K [35 0 R 37 0 R] /ID (ID.026) >> +<< /Type /StructElem /S /heading-number /P 33 0 R /K <> /ID (ID.026) >> endobj 35 0 obj -<< /Type /StructElem /T /S /section /P 34 0 R /K [36 0 R <>] /ID (ID.027) >> +<< /Type /StructElem /S /Sect /P 32 0 R /K [36 0 R 38 0 R] /ID (ID.027) >> endobj 36 0 obj -<< /Type /StructElem /S /section-number /P 35 0 R /K <> /ID (ID.028) >> +<< /Type /StructElem /T /S /subsection /P 35 0 R /K [37 0 R <> <>] /ID (ID.028) >> endobj 37 0 obj -<< /Type /StructElem /S /Sect /P 34 0 R /K [38 0 R 40 0 R] /ID (ID.029) >> +<< /Type /StructElem /S /heading-number /P 36 0 R /K <> /ID (ID.029) >> endobj 38 0 obj -<< /Type /StructElem /T /S /subsection /P 37 0 R /K [39 0 R <>] /ID (ID.030) >> +<< /Type /StructElem /S /Sect /P 35 0 R /K [39 0 R 41 0 R] /ID (ID.030) >> endobj 39 0 obj -<< /Type /StructElem /S /section-number /P 38 0 R /K <> /ID (ID.031) >> +<< /Type /StructElem /T /S /subsubsection /P 38 0 R /K [40 0 R <> <>] /ID (ID.031) >> endobj 40 0 obj -<< /Type /StructElem /S /Sect /P 37 0 R /K [41 0 R 43 0 R] /ID (ID.032) >> +<< /Type /StructElem /S /heading-number /P 39 0 R /K <> /ID (ID.032) >> endobj 41 0 obj -<< /Type /StructElem /T /S /subsubsection /P 40 0 R /K [42 0 R <>] /ID (ID.033) >> +<< /Type /StructElem /S /Sect /P 38 0 R /K [42 0 R 44 0 R 46 0 R] /ID (ID.033) >> endobj 42 0 obj -<< /Type /StructElem /S /section-number /P 41 0 R /K <> /ID (ID.034) >> +<< /Type /StructElem /C /justify /S /paragraph /P 41 0 R /K [<> 43 0 R <>] /ID (ID.034) >> endobj 43 0 obj -<< /Type /StructElem /S /Sect /P 40 0 R /K [44 0 R 46 0 R 48 0 R] /ID (ID.035) >> +<< /Type /StructElem /S /heading-number /P 42 0 R /K <> /ID (ID.035) >> endobj 44 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 43 0 R /K [<> 45 0 R <>] /ID (ID.036) >> +<< /Type /StructElem /S /semantic-para /P 41 0 R /K 45 0 R /ID (ID.036) >> endobj 45 0 obj -<< /Type /StructElem /S /section-number /P 44 0 R /K <> /ID (ID.037) >> +<< /Type /StructElem /C /justify /S /text-block /P 44 0 R /K <> /ID (ID.037) >> endobj 46 0 obj -<< /Type /StructElem /S /semantic-para /P 43 0 R /K 47 0 R /ID (ID.038) >> +<< /Type /StructElem /S /Sect /P 41 0 R /K [47 0 R 49 0 R] /ID (ID.038) >> endobj 47 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 46 0 R /K <> /ID (ID.039) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 46 0 R /K [<> 48 0 R <>] /ID (ID.039) >> endobj 48 0 obj -<< /Type /StructElem /S /Sect /P 43 0 R /K [49 0 R 51 0 R] /ID (ID.040) >> +<< /Type /StructElem /S /heading-number /P 47 0 R /K <> /ID (ID.040) >> endobj 49 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 48 0 R /K [<> 50 0 R <>] /ID (ID.041) >> +<< /Type /StructElem /S /semantic-para /P 46 0 R /K 50 0 R /ID (ID.041) >> endobj 50 0 obj -<< /Type /StructElem /S /section-number /P 49 0 R /K <> /ID (ID.042) >> +<< /Type /StructElem /C /justify /S /text-block /P 49 0 R /K <> /ID (ID.042) >> endobj 51 0 obj -<< /Type /StructElem /S /semantic-para /P 48 0 R /K 52 0 R /ID (ID.043) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [52 0 R 53 0 R] /ID (ID.043) >> endobj 52 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 51 0 R /K <> /ID (ID.044) >> +<< /Type /StructElem /T /S /part /P 51 0 R /K <> /ID (ID.044) >> endobj 53 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [54 0 R 56 0 R] /ID (ID.045) >> +<< /Type /StructElem /S /Sect /P 51 0 R /K [54 0 R 55 0 R] /ID (ID.045) >> endobj 54 0 obj -<< /Type /StructElem /T /S /part /P 53 0 R /K 55 0 R /ID (ID.046) >> +<< /Type /StructElem /T /S /section /P 53 0 R /K <> /ID (ID.046) >> endobj 55 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 54 0 R /K <> /ID (ID.047) >> +<< /Type /StructElem /S /Sect /P 53 0 R /K [56 0 R 57 0 R] /ID (ID.047) >> endobj 56 0 obj -<< /Type /StructElem /S /Sect /P 53 0 R /K [57 0 R 58 0 R] /ID (ID.048) >> +<< /Type /StructElem /T /S /subsection /P 55 0 R /K <> /ID (ID.048) >> endobj 57 0 obj -<< /Type /StructElem /T /S /section /P 56 0 R /K <> /ID (ID.049) >> +<< /Type /StructElem /S /Sect /P 55 0 R /K [58 0 R 59 0 R] /ID (ID.049) >> endobj 58 0 obj -<< /Type /StructElem /S /Sect /P 56 0 R /K [59 0 R 60 0 R] /ID (ID.050) >> +<< /Type /StructElem /T /S /subsubsection /P 57 0 R /K <> /ID (ID.050) >> endobj 59 0 obj -<< /Type /StructElem /T /S /subsection /P 58 0 R /K <> /ID (ID.051) >> +<< /Type /StructElem /S /Sect /P 57 0 R /K [60 0 R 61 0 R 63 0 R] /ID (ID.051) >> endobj 60 0 obj -<< /Type /StructElem /S /Sect /P 58 0 R /K [61 0 R 62 0 R] /ID (ID.052) >> +<< /Type /StructElem /C /justify /S /paragraph /P 59 0 R /K <> /ID (ID.052) >> endobj 61 0 obj -<< /Type /StructElem /T /S /subsubsection /P 60 0 R /K <> /ID (ID.053) >> +<< /Type /StructElem /S /semantic-para /P 59 0 R /K 62 0 R /ID (ID.053) >> endobj 62 0 obj -<< /Type /StructElem /S /Sect /P 60 0 R /K [63 0 R 64 0 R 66 0 R] /ID (ID.054) >> +<< /Type /StructElem /C /justify /S /text-block /P 61 0 R /K <> /ID (ID.054) >> endobj 63 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 62 0 R /K <> /ID (ID.055) >> +<< /Type /StructElem /S /Sect /P 59 0 R /K [64 0 R 65 0 R] /ID (ID.055) >> endobj 64 0 obj -<< /Type /StructElem /S /semantic-para /P 62 0 R /K 65 0 R /ID (ID.056) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 63 0 R /K <> /ID (ID.056) >> endobj 65 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 64 0 R /K <> /ID (ID.057) >> +<< /Type /StructElem /S /semantic-para /P 63 0 R /K 66 0 R /ID (ID.057) >> endobj 66 0 obj -<< /Type /StructElem /S /Sect /P 62 0 R /K [67 0 R 68 0 R] /ID (ID.058) >> -endobj -67 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 66 0 R /K <> /ID (ID.059) >> -endobj -68 0 obj -<< /Type /StructElem /S /semantic-para /P 66 0 R /K 69 0 R /ID (ID.060) >> -endobj -69 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 68 0 R /K <> /ID (ID.061) >> +<< /Type /StructElem /C /justify /S /text-block /P 65 0 R /K <> /ID (ID.058) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 83 0 R /ClassMap 84 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 80 0 R /ClassMap 81 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -85 0 obj +82 0 obj [333] endobj -87 0 obj +84 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj -88 0 obj +85 0 obj [319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7] endobj -89 0 obj +86 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -90 0 obj +87 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -91 0 obj +88 0 obj [724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -92 0 obj +89 0 obj << /Length1 1144 /Length2 1422 @@ -678,7 +690,7 @@ endobj >> [BINARY STREAM] endobj -93 0 obj +90 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -691,10 +703,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 92 0 R +/FontFile 89 0 R >> endobj -94 0 obj +91 0 obj << /Length1 727 /Length2 13927 @@ -703,7 +715,7 @@ endobj >> [BINARY STREAM] endobj -95 0 obj +92 0 obj << /Type /FontDescriptor /FontName /QYLLPC+SFBX1000 @@ -716,10 +728,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/P/S/a/b/c/e/g/h/i/n/o/one/p/period/r/s/t/u) -/FontFile 94 0 R +/FontFile 91 0 R >> endobj -96 0 obj +93 0 obj << /Length1 727 /Length2 11166 @@ -728,7 +740,7 @@ endobj >> [BINARY STREAM] endobj -97 0 obj +94 0 obj << /Type /FontDescriptor /FontName /PWWOHF+SFBX1200 @@ -741,10 +753,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/S/b/c/e/i/n/o/one/period/s/t/u) -/FontFile 96 0 R +/FontFile 93 0 R >> endobj -98 0 obj +95 0 obj << /Length1 727 /Length2 10284 @@ -753,7 +765,7 @@ endobj >> [BINARY STREAM] endobj -99 0 obj +96 0 obj << /Type /FontDescriptor /FontName /CLBNKK+SFBX1440 @@ -766,10 +778,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/I/P/S/a/c/e/i/n/o/one/r/t) -/FontFile 98 0 R +/FontFile 95 0 R >> endobj -100 0 obj +97 0 obj << /Length1 727 /Length2 9131 @@ -778,7 +790,7 @@ endobj >> [BINARY STREAM] endobj -101 0 obj +98 0 obj << /Type /FontDescriptor /FontName /ZDKRID+SFBX2074 @@ -791,10 +803,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/P/a/r/t) -/FontFile 100 0 R +/FontFile 97 0 R >> endobj -102 0 obj +99 0 obj << /Length1 721 /Length2 9566 @@ -803,7 +815,7 @@ endobj >> [BINARY STREAM] endobj -103 0 obj +100 0 obj << /Type /FontDescriptor /FontName /CBEBGP+SFRM1000 @@ -816,16 +828,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/e/m/o/one/s/t/x) -/FontFile 102 0 R +/FontFile 99 0 R >> endobj -86 0 obj +83 0 obj << /Type /Encoding /Differences [46/period 49/one 73/I 80/P 83/S 97/a/b/c 101/e 103/g/h/i 109/m/n/o/p 114/r/s/t/u 120/x] >> endobj -104 0 obj +101 0 obj << /Length 2030 >> @@ -969,20 +981,20 @@ end %%EOF endstream endobj -76 0 obj +73 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QYLLPC+SFBX1000 -/FontDescriptor 95 0 R +/FontDescriptor 92 0 R /FirstChar 46 /LastChar 117 -/Widths 88 0 R -/Encoding 86 0 R -/ToUnicode 104 0 R +/Widths 85 0 R +/Encoding 83 0 R +/ToUnicode 101 0 R >> endobj -105 0 obj +102 0 obj << /Length 2030 >> @@ -1126,20 +1138,20 @@ end %%EOF endstream endobj -75 0 obj +72 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PWWOHF+SFBX1200 -/FontDescriptor 97 0 R +/FontDescriptor 94 0 R /FirstChar 46 /LastChar 117 -/Widths 89 0 R -/Encoding 86 0 R -/ToUnicode 105 0 R +/Widths 86 0 R +/Encoding 83 0 R +/ToUnicode 102 0 R >> endobj -106 0 obj +103 0 obj << /Length 2030 >> @@ -1283,20 +1295,20 @@ end %%EOF endstream endobj -74 0 obj +71 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CLBNKK+SFBX1440 -/FontDescriptor 99 0 R +/FontDescriptor 96 0 R /FirstChar 49 /LastChar 116 -/Widths 90 0 R -/Encoding 86 0 R -/ToUnicode 106 0 R +/Widths 87 0 R +/Encoding 83 0 R +/ToUnicode 103 0 R >> endobj -107 0 obj +104 0 obj << /Length 2030 >> @@ -1440,20 +1452,20 @@ end %%EOF endstream endobj -73 0 obj +70 0 obj << /Type /Font /Subtype /Type1 /BaseFont /ZDKRID+SFBX2074 -/FontDescriptor 101 0 R +/FontDescriptor 98 0 R /FirstChar 80 /LastChar 116 -/Widths 91 0 R -/Encoding 86 0 R -/ToUnicode 107 0 R +/Widths 88 0 R +/Encoding 83 0 R +/ToUnicode 104 0 R >> endobj -108 0 obj +105 0 obj << /Length 2030 >> @@ -1597,20 +1609,20 @@ end %%EOF endstream endobj -77 0 obj +74 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CBEBGP+SFRM1000 -/FontDescriptor 103 0 R +/FontDescriptor 100 0 R /FirstChar 49 /LastChar 120 -/Widths 87 0 R -/Encoding 86 0 R -/ToUnicode 108 0 R +/Widths 84 0 R +/Encoding 83 0 R +/ToUnicode 105 0 R >> endobj -109 0 obj +106 0 obj << /Length 654 >> @@ -1648,157 +1660,154 @@ end %%EOF endstream endobj -78 0 obj +75 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 93 0 R +/FontDescriptor 90 0 R /FirstChar 32 /LastChar 32 -/Widths 85 0 R -/ToUnicode 109 0 R +/Widths 82 0 R +/ToUnicode 106 0 R >> endobj -79 0 obj +76 0 obj << /Type /Pages /Count 1 -/Kids [15 0 R] +/Kids [14 0 R] >> endobj -110 0 obj +107 0 obj << /Type /Catalog -/Pages 79 0 R -/MarkInfo 80 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 70 0 R +/Pages 76 0 R +/MarkInfo 77 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 67 0 R >> endobj -111 0 obj +108 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 112 +0 109 0000000008 65535 f -0000015755 00000 n -0000015802 00000 n -0000015824 00000 n -0000015846 00000 n -0000025224 00000 n -0000015904 00000 n -0000017285 00000 n +0000016114 00000 n +0000016161 00000 n +0000016183 00000 n +0000016205 00000 n +0000025460 00000 n +0000016263 00000 n +0000017624 00000 n 0000000000 00000 f -0000018169 00000 n -0000018270 00000 n -0000018346 00000 n -0000018422 00000 n -0000018513 00000 n -0000018622 00000 n -0000015472 00000 n -0000018747 00000 n -0000018839 00000 n -0000018989 00000 n -0000019081 00000 n -0000019246 00000 n -0000019338 00000 n -0000019518 00000 n -0000019617 00000 n -0000019743 00000 n -0000019835 00000 n -0000019962 00000 n -0000020054 00000 n -0000020183 00000 n -0000020275 00000 n -0000020402 00000 n -0000020493 00000 n -0000020611 00000 n -0000020736 00000 n -0000020861 00000 n -0000020953 00000 n -0000021113 00000 n -0000021233 00000 n -0000021325 00000 n +0000018572 00000 n +0000018673 00000 n +0000018749 00000 n +0000018825 00000 n +0000018916 00000 n +0000015831 00000 n +0000019051 00000 n +0000019143 00000 n +0000019293 00000 n +0000019385 00000 n +0000019550 00000 n +0000019642 00000 n +0000019822 00000 n +0000019921 00000 n +0000020047 00000 n +0000020139 00000 n +0000020266 00000 n +0000020358 00000 n +0000020487 00000 n +0000020579 00000 n +0000020706 00000 n +0000020797 00000 n +0000020975 00000 n +0000021094 00000 n +0000021186 00000 n +0000021380 00000 n 0000021500 00000 n -0000021620 00000 n -0000021712 00000 n -0000021902 00000 n -0000022022 00000 n -0000022121 00000 n -0000022291 00000 n -0000022411 00000 n -0000022503 00000 n -0000022631 00000 n -0000022723 00000 n -0000022896 00000 n -0000023016 00000 n -0000023108 00000 n -0000023236 00000 n -0000023327 00000 n -0000023436 00000 n -0000023562 00000 n -0000023654 00000 n -0000023805 00000 n -0000023897 00000 n -0000024063 00000 n -0000024155 00000 n -0000024336 00000 n -0000024435 00000 n -0000024562 00000 n -0000024654 00000 n -0000024782 00000 n -0000024874 00000 n -0000025004 00000 n -0000025096 00000 n +0000021592 00000 n +0000021801 00000 n +0000021921 00000 n +0000022013 00000 n +0000022237 00000 n +0000022357 00000 n +0000022456 00000 n +0000022626 00000 n +0000022746 00000 n +0000022838 00000 n +0000022966 00000 n +0000023058 00000 n +0000023231 00000 n +0000023351 00000 n +0000023443 00000 n +0000023571 00000 n +0000023662 00000 n +0000023798 00000 n +0000023890 00000 n +0000024041 00000 n +0000024133 00000 n +0000024299 00000 n +0000024391 00000 n +0000024572 00000 n +0000024671 00000 n +0000024798 00000 n +0000024890 00000 n +0000025018 00000 n +0000025110 00000 n +0000025240 00000 n +0000025332 00000 n 0000000015 00000 n -0000015607 00000 n +0000015966 00000 n 0000012177 00000 n -0000098671 00000 n -0000096402 00000 n -0000094133 00000 n -0000091864 00000 n -0000100941 00000 n -0000101835 00000 n -0000102000 00000 n -0000015868 00000 n -0000016164 00000 n -0000017022 00000 n -0000017241 00000 n -0000017964 00000 n -0000025342 00000 n -0000089634 00000 n -0000025364 00000 n -0000025803 00000 n -0000026249 00000 n -0000026697 00000 n -0000027101 00000 n -0000027336 00000 n -0000030000 00000 n -0000030218 00000 n -0000044970 00000 n -0000045232 00000 n -0000057223 00000 n -0000057473 00000 n -0000068582 00000 n -0000068827 00000 n -0000078783 00000 n -0000079012 00000 n -0000089397 00000 n -0000089774 00000 n -0000092043 00000 n -0000094312 00000 n -0000096581 00000 n -0000098851 00000 n -0000101121 00000 n -0000102059 00000 n -0000102175 00000 n +0000098902 00000 n +0000096633 00000 n +0000094364 00000 n +0000092095 00000 n +0000101171 00000 n +0000102065 00000 n +0000102230 00000 n +0000016227 00000 n +0000016551 00000 n +0000017409 00000 n +0000017580 00000 n +0000018410 00000 n +0000025578 00000 n +0000089865 00000 n +0000025600 00000 n +0000026039 00000 n +0000026485 00000 n +0000026933 00000 n +0000027337 00000 n +0000027572 00000 n +0000030236 00000 n +0000030454 00000 n +0000045206 00000 n +0000045468 00000 n +0000057459 00000 n +0000057709 00000 n +0000068818 00000 n +0000069063 00000 n +0000079018 00000 n +0000079245 00000 n +0000089629 00000 n +0000090005 00000 n +0000092274 00000 n +0000094543 00000 n +0000096812 00000 n +0000099081 00000 n +0000101351 00000 n +0000102289 00000 n +0000102405 00000 n trailer -<< /Size 112 -/Root 110 0 R -/Info 111 0 R +<< /Size 109 +/Root 107 0 R +/Info 108 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -102308 +102538 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-1.luatex.tpf b/required/latex-lab/testfiles-sec/test-book-1.luatex.tpf index fc1b8519b..b1a49f6eb 100644 --- a/required/latex-lab/testfiles-sec/test-book-1.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-book-1.luatex.tpf @@ -1,12 +1,12 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ -18 0 obj +17 0 obj << /Length 231 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 458.912 Tm [(P)31(art)]TJ @@ -24,13 +24,13 @@ EMC EMC endstream endobj -17 0 obj -<< /Type /Page /Contents 18 0 R /Resources 16 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 21 0 R >> -endobj 16 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 17 0 R /Resources 15 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 20 0 R >> endobj -24 0 obj +15 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +23 0 obj << /Length 31 >> stream /opacity1 gs @@ -38,19 +38,19 @@ stream EMC endstream endobj -23 0 obj -<< /Type /Page /Contents 24 0 R /Resources 22 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 21 0 R >> -endobj 22 0 obj +<< /Type /Page /Contents 23 0 R /Resources 21 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 20 0 R >> +endobj +21 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -44 0 obj -<< /Length 1351 >> +42 0 obj +<< /Length 1354 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Chapter)]TJ @@ -132,13 +132,13 @@ EMC EMC endstream endobj -43 0 obj -<< /Type /Page /Contents 44 0 R /Resources 42 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 21 0 R >> +41 0 obj +<< /Type /Page /Contents 42 0 R /Resources 40 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 20 0 R >> endobj -42 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F17 45 0 R /F15 46 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +40 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F17 43 0 R /F15 44 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj -49 0 obj +47 0 obj << /Length 180 >> stream /opacity1 gs @@ -156,29 +156,33 @@ EMC EMC endstream endobj -48 0 obj -<< /Type /Page /Contents 49 0 R /Resources 47 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 21 0 R >> +46 0 obj +<< /Type /Page /Contents 47 0 R /Resources 45 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 20 0 R >> endobj -47 0 obj -<< /ExtGState 1 0 R /Font << /F16 20 0 R /F24 50 0 R >> /ProcSet [ /PDF /Text ] >> +45 0 obj +<< /ExtGState 1 0 R /Font << /F16 19 0 R /F24 48 0 R >> /ProcSet [ /PDF /Text ] >> endobj -57 0 obj -<< /Length 427 >> +54 0 obj +<< /Length 478 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 20.66252 Tf 1 0 0 1 247.988 478.837 Tm [(P)31(art)]TJ /F15 9.96264 Tf -1 0 0 1 293.056 478.837 Tm [<0067>]TJ +1 0 0 1 293.056 478.837 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 300.804 478.837 Tm [(I)]TJ ET EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 429.024 Tm [(P)31(art)]TJ @@ -196,13 +200,13 @@ EMC EMC endstream endobj -56 0 obj -<< /Type /Page /Contents 57 0 R /Resources 55 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 21 0 R >> +53 0 obj +<< /Type /Page /Contents 54 0 R /Resources 52 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 20 0 R >> endobj -55 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F15 46 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +52 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F15 44 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj -60 0 obj +57 0 obj << /Length 31 >> stream /opacity1 gs @@ -210,29 +214,33 @@ stream EMC endstream endobj -59 0 obj -<< /Type /Page /Contents 60 0 R /Resources 58 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 21 0 R >> +56 0 obj +<< /Type /Page /Contents 57 0 R /Resources 55 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 20 0 R >> endobj -58 0 obj +55 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -86 0 obj -<< /Length 2345 >> +82 0 obj +<< /Length 2569 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Chapter)]TJ @@ -240,15 +248,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 106.869 475.848 Tm [(1.1)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 127.492 475.848 Tm [<0067>]TJ +1 0 0 1 127.492 475.848 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F19 14.3462 Tf 1 0 0 1 143.631 475.848 Tm [(Section)]TJ @@ -256,15 +268,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 452.035 Tm [(1.1.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 452.035 Tm [<0067>]TJ +1 0 0 1 134.516 452.035 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 452.035 Tm [(Subsection)]TJ @@ -272,15 +288,19 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 106.869 433.645 Tm [(1.1.1.1)]TJ +ET +EMC +/subsubsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 139.331 433.645 Tm [<0067>]TJ +1 0 0 1 139.331 433.645 Tm [<0067>-817<0067>]TJ ET EMC -/subsubsection<> BDC +/subsubsection<> BDC BT /F17 9.96264 Tf 1 0 0 1 150.788 433.645 Tm [(Subsubsection)]TJ @@ -288,21 +308,21 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 106.869 415.256 Tm [(1.1.1.1.1)]TJ ET EMC -/paragraph<> BDC +/paragraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 148.242 415.256 Tm [<0067>]TJ +1 0 0 1 148.242 415.256 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf 1 0 0 1 159.699 415.256 Tm [(P)32(aragraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 211.815 415.256 Tm [<0067>]TJ @@ -314,27 +334,27 @@ BT 1 0 0 1 246.74 415.256 Tm [(text)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf 1 0 0 1 106.869 389.36 Tm [<0067>]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 121.813 389.36 Tm [(1.1.1.1.1.1)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 172.097 389.36 Tm [<0067>]TJ +1 0 0 1 172.097 389.36 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf 1 0 0 1 183.554 389.36 Tm [(Subparagraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 253.617 389.36 Tm [<0067>]TJ @@ -358,13 +378,13 @@ EMC EMC endstream endobj -85 0 obj -<< /Type /Page /Contents 86 0 R /Resources 84 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 21 0 R >> +81 0 obj +<< /Type /Page /Contents 82 0 R /Resources 80 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 20 0 R >> endobj -84 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F15 46 0 R /F17 45 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +80 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F15 44 0 R /F17 43 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj -89 0 obj +85 0 obj << /Length 407 >> stream /opacity1 gs @@ -390,19 +410,19 @@ EMC EMC endstream endobj -88 0 obj -<< /Type /Page /Contents 89 0 R /Resources 87 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 21 0 R >> +84 0 obj +<< /Type /Page /Contents 85 0 R /Resources 83 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 20 0 R >> endobj -87 0 obj -<< /ExtGState 1 0 R /Font << /F16 20 0 R /F24 50 0 R /F15 46 0 R >> /ProcSet [ /PDF /Text ] >> +83 0 obj +<< /ExtGState 1 0 R /Font << /F16 19 0 R /F24 48 0 R /F15 44 0 R >> /ProcSet [ /PDF /Text ] >> endobj -95 0 obj +90 0 obj << /Length 231 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 458.912 Tm [(P)31(art)]TJ @@ -420,13 +440,13 @@ EMC EMC endstream endobj -94 0 obj -<< /Type /Page /Contents 95 0 R /Resources 93 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 21 0 R >> +89 0 obj +<< /Type /Page /Contents 90 0 R /Resources 88 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 20 0 R >> endobj -93 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +88 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj -98 0 obj +93 0 obj << /Length 31 >> stream /opacity1 gs @@ -434,19 +454,19 @@ stream EMC endstream endobj -97 0 obj -<< /Type /Page /Contents 98 0 R /Resources 96 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 21 0 R >> +92 0 obj +<< /Type /Page /Contents 93 0 R /Resources 91 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 20 0 R >> endobj -96 0 obj +91 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -119 0 obj -<< /Length 1298 >> +113 0 obj +<< /Length 1301 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Chapter)]TJ @@ -522,11 +542,11 @@ EMC EMC endstream endobj -118 0 obj -<< /Type /Page /Contents 119 0 R /Resources 117 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 120 0 R >> +112 0 obj +<< /Type /Page /Contents 113 0 R /Resources 111 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 114 0 R >> endobj -117 0 obj -<< /ExtGState 1 0 R /Font << /F19 19 0 R /F17 45 0 R /F15 46 0 R /F16 20 0 R >> /ProcSet [ /PDF /Text ] >> +111 0 obj +<< /ExtGState 1 0 R /Font << /F19 18 0 R /F17 43 0 R /F15 44 0 R /F16 19 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1 0 obj << /opacity1 <> >> @@ -540,46 +560,44 @@ endobj 4 0 obj << >> endobj -121 0 obj +115 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [15 0 R] +<< /Nums [0 [14 0 R] 1 [] -2 [ 27 0 R 29 0 R 31 0 R 33 0 R 35 0 R 37 0 R 39 0 R 41 0 R] +2 [ 25 0 R 27 0 R 29 0 R 31 0 R 33 0 R 35 0 R 37 0 R 39 0 R] 3 [] -4 [ 53 0 R 54 0 R] +4 [ 50 0 R 51 0 R 50 0 R] 5 [] -6 [ 63 0 R 64 0 R 67 0 R 66 0 R 70 0 R 69 0 R 73 0 R 72 0 R 76 0 R 75 0 R 78 0 R 80 0 R 81 0 R 80 0 R 83 0 R] +6 [ 59 0 R 60 0 R 59 0 R 63 0 R 62 0 R 62 0 R 66 0 R 65 0 R 65 0 R 69 0 R 68 0 R 68 0 R 72 0 R 71 0 R 74 0 R 76 0 R 77 0 R 76 0 R 79 0 R] 7 [] -8 [92 0 R] +8 [87 0 R] 9 [] -10 [ 101 0 R 103 0 R 105 0 R 107 0 R 109 0 R 111 0 R 113 0 R 115 0 R] +10 [ 95 0 R 97 0 R 99 0 R 101 0 R 103 0 R 105 0 R 107 0 R 109 0 R] ] >> endobj -122 0 obj -<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 25 0 R (ID.010) 26 0 R (ID.011) 27 0 R (ID.012) 28 0 R (ID.013) 29 0 R (ID.014) 30 0 R (ID.015) 31 0 R (ID.016) 32 0 R (ID.017) 33 0 R (ID.018) 34 0 R (ID.019) 35 0 R (ID.020) 36 0 R (ID.021) 37 0 R (ID.022) 38 0 R (ID.023) 39 0 R (ID.024) 40 0 R (ID.025) 41 0 R (ID.026) 51 0 R (ID.027) 52 0 R (ID.028) 53 0 R (ID.029) 54 0 R (ID.030) 61 0 R (ID.031) 62 0 R (ID.032) 63 0 R (ID.033) 64 0 R (ID.034) 65 0 R (ID.035) 66 0 R (ID.036) 67 0 R (ID.037) 68 0 R (ID.038) 69 0 R (ID.039) 70 0 R (ID.040) 71 0 R (ID.041) 72 0 R (ID.042) 73 0 R (ID.043) 74 0 R (ID.044) 75 0 R (ID.045) 76 0 R (ID.046) 77 0 R (ID.047) 78 0 R (ID.048) 79 0 R (ID.049) 80 0 R (ID.050) 81 0 R (ID.051) 82 0 R ] >> +116 0 obj +<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 24 0 R (ID.009) 25 0 R (ID.010) 26 0 R (ID.011) 27 0 R (ID.012) 28 0 R (ID.013) 29 0 R (ID.014) 30 0 R (ID.015) 31 0 R (ID.016) 32 0 R (ID.017) 33 0 R (ID.018) 34 0 R (ID.019) 35 0 R (ID.020) 36 0 R (ID.021) 37 0 R (ID.022) 38 0 R (ID.023) 39 0 R (ID.024) 49 0 R (ID.025) 50 0 R (ID.026) 51 0 R (ID.027) 58 0 R (ID.028) 59 0 R (ID.029) 60 0 R (ID.030) 61 0 R (ID.031) 62 0 R (ID.032) 63 0 R (ID.033) 64 0 R (ID.034) 65 0 R (ID.035) 66 0 R (ID.036) 67 0 R (ID.037) 68 0 R (ID.038) 69 0 R (ID.039) 70 0 R (ID.040) 71 0 R (ID.041) 72 0 R (ID.042) 73 0 R (ID.043) 74 0 R (ID.044) 75 0 R (ID.045) 76 0 R (ID.046) 77 0 R (ID.047) 78 0 R (ID.048) 79 0 R (ID.049) 86 0 R (ID.050) 87 0 R (ID.051) 94 0 R ] >> endobj -123 0 obj -<< /Limits [(ID.052) (ID.072)]/Names [(ID.052) 83 0 R (ID.053) 90 0 R (ID.054) 91 0 R (ID.055) 92 0 R (ID.056) 99 0 R (ID.057) 100 0 R (ID.058) 101 0 R (ID.059) 102 0 R (ID.060) 103 0 R (ID.061) 104 0 R (ID.062) 105 0 R (ID.063) 106 0 R (ID.064) 107 0 R (ID.065) 108 0 R (ID.066) 109 0 R (ID.067) 110 0 R (ID.068) 111 0 R (ID.069) 112 0 R (ID.070) 113 0 R (ID.071) 114 0 R (ID.072) 115 0 R ] >> +117 0 obj +<< /Limits [(ID.052) (ID.066)]/Names [(ID.052) 95 0 R (ID.053) 96 0 R (ID.054) 97 0 R (ID.055) 98 0 R (ID.056) 99 0 R (ID.057) 100 0 R (ID.058) 101 0 R (ID.059) 102 0 R (ID.060) 103 0 R (ID.061) 104 0 R (ID.062) 105 0 R (ID.063) 106 0 R (ID.064) 107 0 R (ID.065) 108 0 R (ID.066) 109 0 R ] >> endobj -124 0 obj -<< /Kids [122 0 R 123 0 R] >> +118 0 obj +<< /Kids [116 0 R 117 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -125 0 obj -<< /center <> -/raggedright <> -/justify <> +119 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 51 0 R 90 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 49 0 R 86 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -591,210 +609,192 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [14 0 R 25 0 R] /ID (ID.006) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [14 0 R 24 0 R] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /T /S /part /P 13 0 R /K 15 0 R /ID (ID.007) >> +<< /Type /StructElem /T /S /part /P 13 0 R /K <> /ID (ID.007) >> endobj -15 0 obj -<< /Type /StructElem /C /center /S /Span /P 14 0 R /K <> /ID (ID.008) >> +24 0 obj +<< /Type /StructElem /S /Sect /P 13 0 R /K [25 0 R 26 0 R] /ID (ID.008) >> endobj 25 0 obj -<< /Type /StructElem /S /Sect /P 13 0 R /K [26 0 R 28 0 R] /ID (ID.009) >> +<< /Type /StructElem /T /S /chapter /P 24 0 R /K <> /ID (ID.009) >> endobj 26 0 obj -<< /Type /StructElem /T /S /chapter /P 25 0 R /K 27 0 R /ID (ID.010) >> +<< /Type /StructElem /S /Sect /P 24 0 R /K [27 0 R 28 0 R] /ID (ID.010) >> endobj 27 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 26 0 R /K <> /ID (ID.011) >> +<< /Type /StructElem /T /S /section /P 26 0 R /K <> /ID (ID.011) >> endobj 28 0 obj -<< /Type /StructElem /S /Sect /P 25 0 R /K [29 0 R 30 0 R] /ID (ID.012) >> +<< /Type /StructElem /S /Sect /P 26 0 R /K [29 0 R 30 0 R] /ID (ID.012) >> endobj 29 0 obj -<< /Type /StructElem /T /S /section /P 28 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /T /S /subsection /P 28 0 R /K <> /ID (ID.013) >> endobj 30 0 obj << /Type /StructElem /S /Sect /P 28 0 R /K [31 0 R 32 0 R] /ID (ID.014) >> endobj 31 0 obj -<< /Type /StructElem /T /S /subsection /P 30 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /T /S /subsubsection /P 30 0 R /K <> /ID (ID.015) >> endobj 32 0 obj -<< /Type /StructElem /S /Sect /P 30 0 R /K [33 0 R 34 0 R] /ID (ID.016) >> +<< /Type /StructElem /S /Sect /P 30 0 R /K [33 0 R 34 0 R 36 0 R] /ID (ID.016) >> endobj 33 0 obj -<< /Type /StructElem /T /S /subsubsection /P 32 0 R /K <> /ID (ID.017) >> +<< /Type /StructElem /C /justify /S /paragraph /P 32 0 R /K <> /ID (ID.017) >> endobj 34 0 obj -<< /Type /StructElem /S /Sect /P 32 0 R /K [35 0 R 36 0 R 38 0 R] /ID (ID.018) >> +<< /Type /StructElem /S /semantic-para /P 32 0 R /K 35 0 R /ID (ID.018) >> endobj 35 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 34 0 R /K <> /ID (ID.019) >> +<< /Type /StructElem /C /justify /S /text-block /P 34 0 R /K <> /ID (ID.019) >> endobj 36 0 obj -<< /Type /StructElem /S /semantic-para /P 34 0 R /K 37 0 R /ID (ID.020) >> +<< /Type /StructElem /S /Sect /P 32 0 R /K [37 0 R 38 0 R] /ID (ID.020) >> endobj 37 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 36 0 R /K <> /ID (ID.021) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 36 0 R /K <> /ID (ID.021) >> endobj 38 0 obj -<< /Type /StructElem /S /Sect /P 34 0 R /K [39 0 R 40 0 R] /ID (ID.022) >> +<< /Type /StructElem /S /semantic-para /P 36 0 R /K 39 0 R /ID (ID.022) >> endobj 39 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 38 0 R /K <> /ID (ID.023) >> +<< /Type /StructElem /C /justify /S /text-block /P 38 0 R /K <> /ID (ID.023) >> endobj -40 0 obj -<< /Type /StructElem /S /semantic-para /P 38 0 R /K 41 0 R /ID (ID.024) >> +49 0 obj +<< /Type /StructElem /S /Part /P 9 0 R /K [50 0 R 58 0 R] /ID (ID.024) >> endobj -41 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 40 0 R /K <> /ID (ID.025) >> +50 0 obj +<< /Type /StructElem /T /S /part /P 49 0 R /K [<> 51 0 R <> ] /ID (ID.025) >> endobj 51 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [52 0 R 61 0 R] /ID (ID.026) >> +<< /Type /StructElem /S /heading-number /P 50 0 R /K <> /ID (ID.026) >> endobj -52 0 obj -<< /Type /StructElem /T /S /part /P 51 0 R /K [53 0 R 54 0 R] /ID (ID.027) >> +58 0 obj +<< /Type /StructElem /S /Sect /P 49 0 R /K [59 0 R 61 0 R] /ID (ID.027) >> endobj -53 0 obj -<< /Type /StructElem /C /center /S /Span /P 52 0 R /K <> /ID (ID.028) >> +59 0 obj +<< /Type /StructElem /T /S /chapter /P 58 0 R /K [<> 60 0 R <> ] /ID (ID.028) >> endobj -54 0 obj -<< /Type /StructElem /C /center /S /Span /P 52 0 R /K <> /ID (ID.029) >> +60 0 obj +<< /Type /StructElem /S /heading-number /P 59 0 R /K <> /ID (ID.029) >> endobj 61 0 obj -<< /Type /StructElem /S /Sect /P 51 0 R /K [62 0 R 65 0 R] /ID (ID.030) >> +<< /Type /StructElem /S /Sect /P 58 0 R /K [62 0 R 64 0 R] /ID (ID.030) >> endobj 62 0 obj -<< /Type /StructElem /T /S /chapter /P 61 0 R /K [63 0 R 64 0 R] /ID (ID.031) >> +<< /Type /StructElem /T /S /section /P 61 0 R /K [63 0 R <> <> ] /ID (ID.031) >> endobj 63 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 62 0 R /K <> /ID (ID.032) >> +<< /Type /StructElem /S /heading-number /P 62 0 R /K <> /ID (ID.032) >> endobj 64 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 62 0 R /K <> /ID (ID.033) >> +<< /Type /StructElem /S /Sect /P 61 0 R /K [65 0 R 67 0 R] /ID (ID.033) >> endobj 65 0 obj -<< /Type /StructElem /S /Sect /P 61 0 R /K [66 0 R 68 0 R] /ID (ID.034) >> +<< /Type /StructElem /T /S /subsection /P 64 0 R /K [66 0 R <> <> ] /ID (ID.034) >> endobj 66 0 obj -<< /Type /StructElem /T /S /section /P 65 0 R /K [67 0 R <> ] /ID (ID.035) >> +<< /Type /StructElem /S /heading-number /P 65 0 R /K <> /ID (ID.035) >> endobj 67 0 obj -<< /Type /StructElem /S /section-number /P 66 0 R /K <> /ID (ID.036) >> +<< /Type /StructElem /S /Sect /P 64 0 R /K [68 0 R 70 0 R] /ID (ID.036) >> endobj 68 0 obj -<< /Type /StructElem /S /Sect /P 65 0 R /K [69 0 R 71 0 R] /ID (ID.037) >> +<< /Type /StructElem /T /S /subsubsection /P 67 0 R /K [69 0 R <> <> ] /ID (ID.037) >> endobj 69 0 obj -<< /Type /StructElem /T /S /subsection /P 68 0 R /K [70 0 R <> ] /ID (ID.038) >> +<< /Type /StructElem /S /heading-number /P 68 0 R /K <> /ID (ID.038) >> endobj 70 0 obj -<< /Type /StructElem /S /section-number /P 69 0 R /K <> /ID (ID.039) >> +<< /Type /StructElem /S /Sect /P 67 0 R /K [71 0 R 73 0 R 75 0 R] /ID (ID.039) >> endobj 71 0 obj -<< /Type /StructElem /S /Sect /P 68 0 R /K [72 0 R 74 0 R] /ID (ID.040) >> +<< /Type /StructElem /C /justify /S /paragraph /P 70 0 R /K [ 72 0 R <> ] /ID (ID.040) >> endobj 72 0 obj -<< /Type /StructElem /T /S /subsubsection /P 71 0 R /K [73 0 R <> ] /ID (ID.041) >> +<< /Type /StructElem /S /heading-number /P 71 0 R /K <> /ID (ID.041) >> endobj 73 0 obj -<< /Type /StructElem /S /section-number /P 72 0 R /K <> /ID (ID.042) >> +<< /Type /StructElem /S /semantic-para /P 70 0 R /K 74 0 R /ID (ID.042) >> endobj 74 0 obj -<< /Type /StructElem /S /Sect /P 71 0 R /K [75 0 R 77 0 R 79 0 R] /ID (ID.043) >> +<< /Type /StructElem /C /justify /S /text-block /P 73 0 R /K <> /ID (ID.043) >> endobj 75 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 74 0 R /K [ 76 0 R <> ] /ID (ID.044) >> +<< /Type /StructElem /S /Sect /P 70 0 R /K [76 0 R 78 0 R] /ID (ID.044) >> endobj 76 0 obj -<< /Type /StructElem /S /section-number /P 75 0 R /K <> /ID (ID.045) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 75 0 R /K [<> 77 0 R <> ] /ID (ID.045) >> endobj 77 0 obj -<< /Type /StructElem /S /semantic-para /P 74 0 R /K 78 0 R /ID (ID.046) >> +<< /Type /StructElem /S /heading-number /P 76 0 R /K <> /ID (ID.046) >> endobj 78 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 77 0 R /K <> /ID (ID.047) >> +<< /Type /StructElem /S /semantic-para /P 75 0 R /K 79 0 R /ID (ID.047) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /P 74 0 R /K [80 0 R 82 0 R] /ID (ID.048) >> +<< /Type /StructElem /C /justify /S /text-block /P 78 0 R /K <> /ID (ID.048) >> endobj -80 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 79 0 R /K [<> 81 0 R <> ] /ID (ID.049) >> +86 0 obj +<< /Type /StructElem /S /Part /P 9 0 R /K [87 0 R 94 0 R] /ID (ID.049) >> endobj -81 0 obj -<< /Type /StructElem /S /section-number /P 80 0 R /K <> /ID (ID.050) >> +87 0 obj +<< /Type /StructElem /T /S /part /P 86 0 R /K <> /ID (ID.050) >> endobj -82 0 obj -<< /Type /StructElem /S /semantic-para /P 79 0 R /K 83 0 R /ID (ID.051) >> +94 0 obj +<< /Type /StructElem /S /Sect /P 86 0 R /K [95 0 R 96 0 R] /ID (ID.051) >> endobj -83 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 82 0 R /K <> /ID (ID.052) >> +95 0 obj +<< /Type /StructElem /T /S /chapter /P 94 0 R /K <> /ID (ID.052) >> endobj -90 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [91 0 R 99 0 R] /ID (ID.053) >> +96 0 obj +<< /Type /StructElem /S /Sect /P 94 0 R /K [97 0 R 98 0 R] /ID (ID.053) >> endobj -91 0 obj -<< /Type /StructElem /T /S /part /P 90 0 R /K 92 0 R /ID (ID.054) >> +97 0 obj +<< /Type /StructElem /T /S /section /P 96 0 R /K <> /ID (ID.054) >> endobj -92 0 obj -<< /Type /StructElem /C /center /S /Span /P 91 0 R /K <> /ID (ID.055) >> +98 0 obj +<< /Type /StructElem /S /Sect /P 96 0 R /K [99 0 R 100 0 R] /ID (ID.055) >> endobj 99 0 obj -<< /Type /StructElem /S /Sect /P 90 0 R /K [100 0 R 102 0 R] /ID (ID.056) >> +<< /Type /StructElem /T /S /subsection /P 98 0 R /K <> /ID (ID.056) >> endobj 100 0 obj -<< /Type /StructElem /T /S /chapter /P 99 0 R /K 101 0 R /ID (ID.057) >> +<< /Type /StructElem /S /Sect /P 98 0 R /K [101 0 R 102 0 R] /ID (ID.057) >> endobj 101 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 100 0 R /K <> /ID (ID.058) >> +<< /Type /StructElem /T /S /subsubsection /P 100 0 R /K <> /ID (ID.058) >> endobj 102 0 obj -<< /Type /StructElem /S /Sect /P 99 0 R /K [103 0 R 104 0 R] /ID (ID.059) >> +<< /Type /StructElem /S /Sect /P 100 0 R /K [103 0 R 104 0 R 106 0 R] /ID (ID.059) >> endobj 103 0 obj -<< /Type /StructElem /T /S /section /P 102 0 R /K <> /ID (ID.060) >> +<< /Type /StructElem /C /justify /S /paragraph /P 102 0 R /K <> /ID (ID.060) >> endobj 104 0 obj -<< /Type /StructElem /S /Sect /P 102 0 R /K [105 0 R 106 0 R] /ID (ID.061) >> +<< /Type /StructElem /S /semantic-para /P 102 0 R /K 105 0 R /ID (ID.061) >> endobj 105 0 obj -<< /Type /StructElem /T /S /subsection /P 104 0 R /K <> /ID (ID.062) >> +<< /Type /StructElem /C /justify /S /text-block /P 104 0 R /K <> /ID (ID.062) >> endobj 106 0 obj -<< /Type /StructElem /S /Sect /P 104 0 R /K [107 0 R 108 0 R] /ID (ID.063) >> +<< /Type /StructElem /S /Sect /P 102 0 R /K [107 0 R 108 0 R] /ID (ID.063) >> endobj 107 0 obj -<< /Type /StructElem /T /S /subsubsection /P 106 0 R /K <> /ID (ID.064) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 106 0 R /K <> /ID (ID.064) >> endobj 108 0 obj -<< /Type /StructElem /S /Sect /P 106 0 R /K [109 0 R 110 0 R 112 0 R] /ID (ID.065) >> +<< /Type /StructElem /S /semantic-para /P 106 0 R /K 109 0 R /ID (ID.065) >> endobj 109 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 108 0 R /K <> /ID (ID.066) >> -endobj -110 0 obj -<< /Type /StructElem /S /semantic-para /P 108 0 R /K 111 0 R /ID (ID.067) >> -endobj -111 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 110 0 R /K <> /ID (ID.068) >> -endobj -112 0 obj -<< /Type /StructElem /S /Sect /P 108 0 R /K [113 0 R 114 0 R] /ID (ID.069) >> -endobj -113 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 112 0 R /K <> /ID (ID.070) >> -endobj -114 0 obj -<< /Type /StructElem /S /semantic-para /P 112 0 R /K 115 0 R /ID (ID.071) >> -endobj -115 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 114 0 R /K <> /ID (ID.072) >> +<< /Type /StructElem /C /justify /S /text-block /P 108 0 R /K <> /ID (ID.066) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 124 0 R /ClassMap 125 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 118 0 R /ClassMap 119 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -116 0 obj +110 0 obj << /Type /Metadata /Subtype /XML /Length 12073 >> stream @@ -1034,24 +1034,24 @@ stream endstream endobj -126 0 obj +120 0 obj [277.8 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 0 722.2 0 680.6 0 0 750 0 0 0 0 0 0 0 680.6 0 736.1 0 722.2 ] endobj -127 0 obj +121 0 obj [ 103 [ 333 ] ] endobj -129 0 obj +123 0 obj << /Length 13 >> [BINARY STREAM] endobj -130 0 obj +124 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -128 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 130 0 R /CIDSet 129 0 R >> +122 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 124 0 R /CIDSet 123 0 R >> endobj -131 0 obj +125 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1085,50 +1085,50 @@ end %%EOF endstream endobj -46 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 132 0 R ] /ToUnicode 131 0 R >> +44 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 126 0 R ] /ToUnicode 125 0 R >> endobj -132 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 128 0 R /W 127 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +126 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 122 0 R /W 121 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -133 0 obj +127 0 obj [319.4 0 0 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 786.1 0 0 638.9 0 0 0 0 0 0 0 0 0 0 0 0 0 559 638.9 511.1 0 527.1 0 575 638.9 319.4 0 0 0 0 638.9 575 638.9 0 473.6 453.6 447.2 638.9 ] endobj -134 0 obj +128 0 obj [500 0 500 500 500 0 500 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444.4 0 0 0 0 0 0 0 833.3 0 500 0 0 0 394.4 388.9 0 0 0 527.8 ] endobj -135 0 obj +129 0 obj [312.5 0 0 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 812.5 0 0 0 0 0 419 0 0 0 0 0 0 768.5 0 0 625 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 625 500 0 513.3 0 0 625 312.5 0 0 0 0 625 562.5 625 0 459.5 443.8 437.5 625 ] endobj -137 0 obj +131 0 obj << /Length1 1647 /Length2 10662 /Length3 0 /Length 12309 >> [BINARY STREAM] endobj -136 0 obj -<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /P /S /a /b /c /e /g /h /i /n /o /one /p /period /r /s /t /u) /FontFile 137 0 R >> +130 0 obj +<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /P /S /a /b /c /e /g /h /i /n /o /one /p /period /r /s /t /u) /FontFile 131 0 R >> endobj -139 0 obj +133 0 obj << /Length1 1660 /Length2 8897 /Length3 0 /Length 10557 >> [BINARY STREAM] endobj -138 0 obj -<< /Type /FontDescriptor /FontName /LNVUPG+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /C /I /P /S /a /b /c /e /h /i /n /o /one /p /period /r /s /t /u) /FontFile 139 0 R >> +132 0 obj +<< /Type /FontDescriptor /FontName /LNVUPG+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /C /I /P /S /a /b /c /e /h /i /n /o /one /p /period /r /s /t /u) /FontFile 133 0 R >> endobj -141 0 obj +135 0 obj << /Length1 1582 /Length2 10467 /Length3 0 /Length 12049 >> [BINARY STREAM] endobj -140 0 obj -<< /Type /FontDescriptor /FontName /SHBKOV+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /e /eight /five /four /m /nine /o /one /s /seven /t /three /x) /FontFile 141 0 R >> +134 0 obj +<< /Type /FontDescriptor /FontName /SHBKOV+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /e /eight /five /four /m /nine /o /one /s /seven /t /three /x) /FontFile 135 0 R >> endobj -143 0 obj +137 0 obj << /Length1 1516 /Length2 7864 /Length3 0 /Length 9380 >> [BINARY STREAM] endobj -142 0 obj -<< /Type /FontDescriptor /FontName /YCIOPU+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /A /C /E /H /P /R /T /one /period) /FontFile 143 0 R >> +136 0 obj +<< /Type /FontDescriptor /FontName /YCIOPU+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /A /C /E /H /P /R /T /one /period) /FontFile 137 0 R >> endobj -144 0 obj +138 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1248,10 +1248,10 @@ end %%EOF endstream endobj -45 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 136 0 R /FirstChar 46 /LastChar 117 /Widths 133 0 R /ToUnicode 144 0 R >> +43 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 130 0 R /FirstChar 46 /LastChar 117 /Widths 127 0 R /ToUnicode 138 0 R >> endobj -145 0 obj +139 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1371,10 +1371,10 @@ end %%EOF endstream endobj -19 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /LNVUPG+CMBX12 /FontDescriptor 138 0 R /FirstChar 46 /LastChar 117 /Widths 135 0 R /ToUnicode 145 0 R >> +18 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /LNVUPG+CMBX12 /FontDescriptor 132 0 R /FirstChar 46 /LastChar 117 /Widths 129 0 R /ToUnicode 139 0 R >> endobj -146 0 obj +140 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1494,10 +1494,10 @@ end %%EOF endstream endobj -20 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /SHBKOV+CMR10 /FontDescriptor 140 0 R /FirstChar 49 /LastChar 120 /Widths 134 0 R /ToUnicode 146 0 R >> +19 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /SHBKOV+CMR10 /FontDescriptor 134 0 R /FirstChar 49 /LastChar 120 /Widths 128 0 R /ToUnicode 140 0 R >> endobj -147 0 obj +141 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1617,179 +1617,173 @@ end %%EOF endstream endobj -50 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /YCIOPU+CMSL10 /FontDescriptor 142 0 R /FirstChar 46 /LastChar 84 /Widths 126 0 R /ToUnicode 147 0 R >> +48 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /YCIOPU+CMSL10 /FontDescriptor 136 0 R /FirstChar 46 /LastChar 84 /Widths 120 0 R /ToUnicode 141 0 R >> endobj -21 0 obj -<< /Type /Pages /Parent 148 0 R /Count 10 /Kids [ 17 0 R 23 0 R 43 0 R 48 0 R 56 0 R 59 0 R 85 0 R 88 0 R 94 0 R 97 0 R ] >> +20 0 obj +<< /Type /Pages /Parent 142 0 R /Count 10 /Kids [ 16 0 R 22 0 R 41 0 R 46 0 R 53 0 R 56 0 R 81 0 R 84 0 R 89 0 R 92 0 R ] >> endobj -120 0 obj -<< /Type /Pages /Parent 148 0 R /Count 1 /Kids [ 118 0 R ] >> +114 0 obj +<< /Type /Pages /Parent 142 0 R /Count 1 /Kids [ 112 0 R ] >> endobj -148 0 obj -<< /Type /Pages /Count 11 /Kids [ 21 0 R 120 0 R ] >> +142 0 obj +<< /Type /Pages /Count 11 /Kids [ 20 0 R 114 0 R ] >> endobj -149 0 obj -<< /Type /Catalog /Pages 148 0 R /MarkInfo 121 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 116 0 R >> +143 0 obj +<< /Type /Catalog /Pages 142 0 R /MarkInfo 115 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 110 0 R >> endobj -150 0 obj +144 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 151 +0 145 0000000008 65535 f -0000009794 00000 n -0000009841 00000 n -0000009863 00000 n -0000009885 00000 n -0000020863 00000 n -0000009944 00000 n -0000011603 00000 n +0000010075 00000 n +0000010122 00000 n +0000010144 00000 n +0000010166 00000 n +0000020675 00000 n +0000010225 00000 n +0000011814 00000 n 0000000000 00000 f -0000012520 00000 n -0000012621 00000 n -0000012697 00000 n -0000012773 00000 n -0000012849 00000 n -0000012940 00000 n -0000013049 00000 n +0000012756 00000 n +0000012857 00000 n +0000012933 00000 n +0000013009 00000 n +0000013085 00000 n +0000013176 00000 n 0000000446 00000 n 0000000311 00000 n 0000000020 00000 n -0000085488 00000 n -0000087435 00000 n -0000089547 00000 n +0000085300 00000 n +0000087247 00000 n +0000089359 00000 n 0000000771 00000 n 0000000636 00000 n 0000000545 00000 n -0000013171 00000 n -0000013263 00000 n -0000013387 00000 n -0000013514 00000 n -0000013606 00000 n -0000013758 00000 n -0000013850 00000 n -0000014017 00000 n -0000014109 00000 n -0000014291 00000 n -0000014390 00000 n -0000014518 00000 n -0000014610 00000 n -0000014739 00000 n -0000014831 00000 n -0000014962 00000 n -0000015054 00000 n -0000002374 00000 n -0000002239 00000 n +0000013313 00000 n +0000013405 00000 n +0000013557 00000 n +0000013649 00000 n +0000013801 00000 n +0000013893 00000 n +0000014060 00000 n +0000014152 00000 n +0000014334 00000 n +0000014433 00000 n +0000014561 00000 n +0000014653 00000 n +0000014782 00000 n +0000014874 00000 n +0000015005 00000 n +0000015097 00000 n +0000002377 00000 n +0000002242 00000 n 0000000828 00000 n -0000083536 00000 n -0000034939 00000 n -0000002872 00000 n -0000002737 00000 n -0000002497 00000 n -0000089386 00000 n -0000015183 00000 n -0000015274 00000 n -0000015392 00000 n -0000015514 00000 n -0000003593 00000 n -0000003458 00000 n -0000002971 00000 n -0000003930 00000 n -0000003795 00000 n -0000003704 00000 n -0000015636 00000 n -0000015728 00000 n -0000015861 00000 n -0000015988 00000 n -0000016115 00000 n -0000016207 00000 n -0000016368 00000 n -0000016489 00000 n -0000016581 00000 n -0000016757 00000 n -0000016878 00000 n -0000016970 00000 n -0000017161 00000 n -0000017282 00000 n -0000017381 00000 n -0000017519 00000 n -0000017640 00000 n -0000017732 00000 n -0000017862 00000 n -0000017954 00000 n -0000018131 00000 n -0000018253 00000 n -0000018345 00000 n -0000006527 00000 n -0000006392 00000 n -0000003987 00000 n -0000007252 00000 n -0000007117 00000 n -0000006650 00000 n -0000018475 00000 n -0000018566 00000 n -0000018675 00000 n -0000007789 00000 n -0000007654 00000 n -0000007363 00000 n -0000008114 00000 n -0000007979 00000 n -0000007888 00000 n -0000018797 00000 n -0000018891 00000 n -0000019017 00000 n -0000019147 00000 n -0000019242 00000 n -0000019397 00000 n -0000019493 00000 n -0000019663 00000 n -0000019759 00000 n -0000019944 00000 n -0000020048 00000 n -0000020179 00000 n -0000020274 00000 n -0000020406 00000 n -0000020502 00000 n -0000020636 00000 n -0000020731 00000 n -0000020983 00000 n -0000009670 00000 n -0000009530 00000 n -0000008171 00000 n -0000089688 00000 n -0000009907 00000 n -0000010285 00000 n -0000011144 00000 n -0000011556 00000 n -0000012275 00000 n -0000033147 00000 n -0000033275 00000 n -0000033973 00000 n -0000033308 00000 n -0000033382 00000 n -0000034212 00000 n -0000035095 00000 n -0000035298 00000 n -0000035526 00000 n -0000035726 00000 n -0000048360 00000 n -0000035950 00000 n -0000059298 00000 n -0000048641 00000 n -0000071732 00000 n -0000059582 00000 n -0000081492 00000 n -0000072012 00000 n -0000081746 00000 n -0000083698 00000 n -0000085650 00000 n -0000087596 00000 n -0000089767 00000 n -0000089839 00000 n -0000089958 00000 n +0000083348 00000 n +0000034751 00000 n +0000002875 00000 n +0000002740 00000 n +0000002500 00000 n +0000089198 00000 n +0000015226 00000 n +0000015317 00000 n +0000015498 00000 n +0000003647 00000 n +0000003512 00000 n +0000002974 00000 n +0000003984 00000 n +0000003849 00000 n +0000003758 00000 n +0000015619 00000 n +0000015711 00000 n +0000015907 00000 n +0000016028 00000 n +0000016120 00000 n +0000016316 00000 n +0000016437 00000 n +0000016529 00000 n +0000016740 00000 n +0000016861 00000 n +0000016953 00000 n +0000017181 00000 n +0000017302 00000 n +0000017401 00000 n +0000017540 00000 n +0000017662 00000 n +0000017754 00000 n +0000017884 00000 n +0000017976 00000 n +0000018153 00000 n +0000018275 00000 n +0000018367 00000 n +0000006805 00000 n +0000006670 00000 n +0000004041 00000 n +0000007530 00000 n +0000007395 00000 n +0000006928 00000 n +0000018497 00000 n +0000018588 00000 n +0000008067 00000 n +0000007932 00000 n +0000007641 00000 n +0000008392 00000 n +0000008257 00000 n +0000008166 00000 n +0000018725 00000 n +0000018817 00000 n +0000018970 00000 n +0000019062 00000 n +0000019215 00000 n +0000019308 00000 n +0000019476 00000 n +0000019571 00000 n +0000019756 00000 n +0000019860 00000 n +0000019991 00000 n +0000020086 00000 n +0000020218 00000 n +0000020314 00000 n +0000020448 00000 n +0000020543 00000 n +0000020795 00000 n +0000009951 00000 n +0000009811 00000 n +0000008449 00000 n +0000089500 00000 n +0000010188 00000 n +0000010598 00000 n +0000011457 00000 n +0000011767 00000 n +0000012593 00000 n +0000032959 00000 n +0000033087 00000 n +0000033785 00000 n +0000033120 00000 n +0000033194 00000 n +0000034024 00000 n +0000034907 00000 n +0000035110 00000 n +0000035338 00000 n +0000035538 00000 n +0000048172 00000 n +0000035762 00000 n +0000059110 00000 n +0000048453 00000 n +0000071544 00000 n +0000059394 00000 n +0000081304 00000 n +0000071824 00000 n +0000081558 00000 n +0000083510 00000 n +0000085462 00000 n +0000087408 00000 n +0000089579 00000 n +0000089651 00000 n +0000089770 00000 n trailer -<< /Size 151 /Root 149 0 R /Info 150 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 145 /Root 143 0 R /Info 144 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -90091 +89903 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-1.tpf b/required/latex-lab/testfiles-sec/test-book-1.tpf index fba5ab898..2b41defbc 100644 --- a/required/latex-lab/testfiles-sec/test-book-1.tpf +++ b/required/latex-lab/testfiles-sec/test-book-1.tpf @@ -1,6 +1,6 @@ %PDF-1.7 %ÐÔÅØ -17 0 obj +16 0 obj << /Length 179 >> @@ -8,7 +8,7 @@ stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 458.912 Td [(P)29(art)]TJ ET @@ -20,24 +20,24 @@ ET EMC endstream endobj -15 0 obj +14 0 obj << /Type /Page -/Contents 17 0 R -/Resources 16 0 R +/Contents 16 0 R +/Resources 15 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 20 0 R +/Parent 19 0 R >> endobj -16 0 obj +15 0 obj << /ExtGState 1 0 R -/Font << /F48 18 0 R /F45 19 0 R >> +/Font << /F48 17 0 R /F45 18 0 R >> /ProcSet [ /PDF /Text ] >> endobj -23 0 obj +22 0 obj << /Length 49 >> @@ -49,31 +49,31 @@ EMC EMC endstream endobj -22 0 obj +21 0 obj << /Type /Page -/Contents 23 0 R -/Resources 21 0 R +/Contents 22 0 R +/Resources 20 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 20 0 R +/Parent 19 0 R >> endobj -21 0 obj +20 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -43 0 obj +41 0 obj << -/Length 914 +/Length 917 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Chapter)]TJ ET @@ -120,24 +120,24 @@ ET EMC endstream endobj -27 0 obj +25 0 obj << /Type /Page -/Contents 43 0 R -/Resources 42 0 R +/Contents 41 0 R +/Resources 40 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 20 0 R +/Parent 19 0 R >> endobj -42 0 obj +40 0 obj << /ExtGState 1 0 R -/Font << /F48 18 0 R /F50 44 0 R /F52 45 0 R /F46 46 0 R /F45 19 0 R /F53 47 0 R >> +/Font << /F48 17 0 R /F50 42 0 R /F52 43 0 R /F46 44 0 R /F45 18 0 R /F53 45 0 R >> /ProcSet [ /PDF /Text ] >> endobj -50 0 obj +48 0 obj << /Length 171 >> @@ -152,37 +152,42 @@ EMC EMC endstream endobj -49 0 obj +47 0 obj << /Type /Page -/Contents 50 0 R -/Resources 48 0 R +/Contents 48 0 R +/Resources 46 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 20 0 R +/Parent 19 0 R >> endobj -48 0 obj +46 0 obj << /ExtGState 1 0 R -/Font << /F45 19 0 R /F54 51 0 R /F53 47 0 R >> +/Font << /F45 18 0 R /F54 49 0 R /F53 45 0 R >> /ProcSet [ /PDF /Text ] >> endobj -58 0 obj +55 0 obj << -/Length 316 +/Length 374 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC +BT +/F47 20.6625 Tf 249.721 478.837 Td [(P)29(art)]TJ/F53 9.9626 Tf [-733( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 249.721 478.837 Td [(P)29(art)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 49.987 0 Td [(I)]TJ +/F47 20.6625 Tf 299.708 478.837 Td [(I)]TJ ET EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 429.024 Td [(P)29(art)]TJ ET @@ -194,24 +199,24 @@ ET EMC endstream endobj -55 0 obj +52 0 obj << /Type /Page -/Contents 58 0 R -/Resources 57 0 R +/Contents 55 0 R +/Resources 54 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 20 0 R +/Parent 19 0 R >> endobj -57 0 obj +54 0 obj << /ExtGState 1 0 R -/Font << /F47 59 0 R /F53 47 0 R /F48 18 0 R /F45 19 0 R >> +/Font << /F47 56 0 R /F53 45 0 R /F48 17 0 R /F45 18 0 R >> /ProcSet [ /PDF /Text ] >> endobj -62 0 obj +59 0 obj << /Length 49 >> @@ -223,100 +228,122 @@ EMC EMC endstream endobj -61 0 obj +58 0 obj << /Type /Page -/Contents 62 0 R -/Resources 60 0 R +/Contents 59 0 R +/Resources 57 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 20 0 R +/Parent 19 0 R >> endobj -60 0 obj +57 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -88 0 obj +84 0 obj << -/Length 1582 +/Length 1945 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Chapter)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 14.3462 Tf 106.869 475.848 Td [(1.1)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F53 9.9626 Tf 142.806 475.848 Td [( )]TJ +ET +EMC +/section <> BDC BT /F50 14.3462 Tf 142.806 475.848 Td [(Section)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F52 11.9552 Tf 106.869 452.037 Td [(1.1.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 147.955 452.037 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F52 11.9552 Tf 147.955 452.037 Td [(Subsection)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 106.869 433.649 Td [(1.1.1.1)]TJ ET EMC -/subsubsection <> BDC +/subsubsection <> BDC +BT +/F53 9.9626 Tf 150.777 433.649 Td [( )]TJ +ET +EMC +/subsubsection <> BDC BT /F46 9.9626 Tf 150.777 433.649 Td [(Subsubsection)]TJ ET EMC -/paragraph <> BDC +/paragraph <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 106.869 415.261 Td [(1.1.1.1.1)]TJ ET EMC -/paragraph <> BDC +/paragraph <> BDC BT -/F46 9.9626 Tf 159.686 415.261 Td [(P)32(aragraph)]TJ +/F53 9.9626 Tf 159.686 415.261 Td [( )]TJ +/F46 9.9626 Tf [333(P)32(aragraph)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 221.751 415.261 Td [(some)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 24.955 0 Td [(text)]TJ ET EMC -/subparagraph <> BDC +/subparagraph <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 121.813 389.369 Td [(1.1.1.1.1.1)]TJ ET EMC -/subparagraph <> BDC +/subparagraph <> BDC BT -/F46 9.9626 Tf 183.539 389.369 Td [(Subparagraph)]TJ +/F53 9.9626 Tf 183.539 389.369 Td [( )]TJ +/F46 9.9626 Tf [333(Subparagraph)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 263.546 389.369 Td [(some)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 24.955 0 Td [(text)]TJ ET @@ -328,24 +355,24 @@ ET EMC endstream endobj -66 0 obj +62 0 obj << /Type /Page -/Contents 88 0 R -/Resources 87 0 R +/Contents 84 0 R +/Resources 83 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 89 0 R +/Parent 85 0 R >> endobj -87 0 obj +83 0 obj << /ExtGState 1 0 R -/Font << /F47 59 0 R /F53 47 0 R /F48 18 0 R /F50 44 0 R /F52 45 0 R /F46 46 0 R /F45 19 0 R >> +/Font << /F47 56 0 R /F53 45 0 R /F48 17 0 R /F50 42 0 R /F52 43 0 R /F46 44 0 R /F45 18 0 R >> /ProcSet [ /PDF /Text ] >> endobj -92 0 obj +88 0 obj << /Length 270 >> @@ -360,24 +387,24 @@ EMC EMC endstream endobj -91 0 obj +87 0 obj << /Type /Page -/Contents 92 0 R -/Resources 90 0 R +/Contents 88 0 R +/Resources 86 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 7 -/Parent 89 0 R +/Parent 85 0 R >> endobj -90 0 obj +86 0 obj << /ExtGState 1 0 R -/Font << /F45 19 0 R /F53 47 0 R /F54 51 0 R >> +/Font << /F45 18 0 R /F53 45 0 R /F54 49 0 R >> /ProcSet [ /PDF /Text ] >> endobj -98 0 obj +93 0 obj << /Length 179 >> @@ -385,7 +412,7 @@ stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 458.912 Td [(P)29(art)]TJ ET @@ -397,24 +424,24 @@ ET EMC endstream endobj -96 0 obj +91 0 obj << /Type /Page -/Contents 98 0 R -/Resources 97 0 R +/Contents 93 0 R +/Resources 92 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 8 -/Parent 89 0 R +/Parent 85 0 R >> endobj -97 0 obj +92 0 obj << /ExtGState 1 0 R -/Font << /F48 18 0 R /F45 19 0 R >> +/Font << /F48 17 0 R /F45 18 0 R >> /ProcSet [ /PDF /Text ] >> endobj -101 0 obj +96 0 obj << /Length 49 >> @@ -426,23 +453,23 @@ EMC EMC endstream endobj -100 0 obj +95 0 obj << /Type /Page -/Contents 101 0 R -/Resources 99 0 R +/Contents 96 0 R +/Resources 94 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 9 -/Parent 89 0 R +/Parent 85 0 R >> endobj -99 0 obj +94 0 obj << /ExtGState 1 0 R /ProcSet [ /PDF ] >> endobj -120 0 obj +114 0 obj << /Type /Metadata /Subtype /XML /Length 12071 @@ -685,15 +712,15 @@ stream endstream endobj -122 0 obj +116 0 obj << -/Length 915 +/Length 918 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Chapter)]TJ ET @@ -740,20 +767,20 @@ ET EMC endstream endobj -105 0 obj +99 0 obj << /Type /Page -/Contents 122 0 R -/Resources 121 0 R +/Contents 116 0 R +/Resources 115 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 10 -/Parent 89 0 R +/Parent 85 0 R >> endobj -121 0 obj +115 0 obj << /ExtGState 1 0 R -/Font << /F48 18 0 R /F50 44 0 R /F52 45 0 R /F46 46 0 R /F45 19 0 R /F53 47 0 R >> +/Font << /F48 17 0 R /F50 42 0 R /F52 43 0 R /F46 44 0 R /F45 18 0 R /F53 45 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -769,46 +796,44 @@ endobj 4 0 obj << >> endobj -123 0 obj +117 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R ] +<< /Nums [0 [ 13 0 R ] 1 [ ] -2 [ 26 0 R 29 0 R 31 0 R 33 0 R 35 0 R 37 0 R 39 0 R 41 0 R ] +2 [ 24 0 R 27 0 R 29 0 R 31 0 R 33 0 R 35 0 R 37 0 R 39 0 R ] 3 [ ] -4 [ 54 0 R 56 0 R ] +4 [ 51 0 R 53 0 R 51 0 R ] 5 [ ] -6 [ 65 0 R 67 0 R 70 0 R 69 0 R 73 0 R 72 0 R 76 0 R 75 0 R 78 0 R 79 0 R 78 0 R 81 0 R 83 0 R 84 0 R 83 0 R 86 0 R ] +6 [ 61 0 R 63 0 R 61 0 R 66 0 R 65 0 R 65 0 R 69 0 R 68 0 R 68 0 R 72 0 R 71 0 R 71 0 R 74 0 R 75 0 R 74 0 R 77 0 R 79 0 R 80 0 R 79 0 R 82 0 R ] 7 [ ] -8 [ 95 0 R ] +8 [ 90 0 R ] 9 [ ] -10 [ 104 0 R 107 0 R 109 0 R 111 0 R 113 0 R 115 0 R 117 0 R 119 0 R ] +10 [ 98 0 R 101 0 R 103 0 R 105 0 R 107 0 R 109 0 R 111 0 R 113 0 R ] ] >> endobj -124 0 obj -<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 24 0 R (ID.009) 25 0 R (ID.010) 26 0 R (ID.011) 28 0 R (ID.012) 29 0 R (ID.013) 30 0 R (ID.014) 31 0 R (ID.015) 32 0 R (ID.016) 33 0 R (ID.017) 34 0 R (ID.018) 35 0 R (ID.019) 36 0 R (ID.020) 37 0 R (ID.021) 38 0 R (ID.022) 39 0 R (ID.023) 40 0 R (ID.024) 41 0 R (ID.025) 52 0 R (ID.026) 53 0 R (ID.027) 54 0 R (ID.028) 56 0 R (ID.029) 63 0 R (ID.030) 64 0 R (ID.031) 65 0 R (ID.032) 67 0 R (ID.033) 68 0 R (ID.034) 69 0 R (ID.035) 70 0 R (ID.036) 71 0 R (ID.037) 72 0 R (ID.038) 73 0 R (ID.039) 74 0 R (ID.040) 75 0 R (ID.041) 76 0 R (ID.042) 77 0 R (ID.043) 78 0 R (ID.044) 79 0 R (ID.045) 80 0 R (ID.046) 81 0 R (ID.047) 82 0 R (ID.048) 83 0 R (ID.049) 84 0 R (ID.050) 85 0 R (ID.051) 86 0 R ] >> +118 0 obj +<< /Limits [(ID.002) (ID.051)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 23 0 R (ID.008) 24 0 R (ID.009) 26 0 R (ID.010) 27 0 R (ID.011) 28 0 R (ID.012) 29 0 R (ID.013) 30 0 R (ID.014) 31 0 R (ID.015) 32 0 R (ID.016) 33 0 R (ID.017) 34 0 R (ID.018) 35 0 R (ID.019) 36 0 R (ID.020) 37 0 R (ID.021) 38 0 R (ID.022) 39 0 R (ID.023) 50 0 R (ID.024) 51 0 R (ID.025) 53 0 R (ID.026) 60 0 R (ID.027) 61 0 R (ID.028) 63 0 R (ID.029) 64 0 R (ID.030) 65 0 R (ID.031) 66 0 R (ID.032) 67 0 R (ID.033) 68 0 R (ID.034) 69 0 R (ID.035) 70 0 R (ID.036) 71 0 R (ID.037) 72 0 R (ID.038) 73 0 R (ID.039) 74 0 R (ID.040) 75 0 R (ID.041) 76 0 R (ID.042) 77 0 R (ID.043) 78 0 R (ID.044) 79 0 R (ID.045) 80 0 R (ID.046) 81 0 R (ID.047) 82 0 R (ID.048) 89 0 R (ID.049) 90 0 R (ID.050) 97 0 R (ID.051) 98 0 R ] >> endobj -125 0 obj -<< /Limits [(ID.052) (ID.071)]/Names [(ID.052) 93 0 R (ID.053) 94 0 R (ID.054) 95 0 R (ID.055) 102 0 R (ID.056) 103 0 R (ID.057) 104 0 R (ID.058) 106 0 R (ID.059) 107 0 R (ID.060) 108 0 R (ID.061) 109 0 R (ID.062) 110 0 R (ID.063) 111 0 R (ID.064) 112 0 R (ID.065) 113 0 R (ID.066) 114 0 R (ID.067) 115 0 R (ID.068) 116 0 R (ID.069) 117 0 R (ID.070) 118 0 R (ID.071) 119 0 R ] >> +119 0 obj +<< /Limits [(ID.052) (ID.065)]/Names [(ID.052) 100 0 R (ID.053) 101 0 R (ID.054) 102 0 R (ID.055) 103 0 R (ID.056) 104 0 R (ID.057) 105 0 R (ID.058) 106 0 R (ID.059) 107 0 R (ID.060) 108 0 R (ID.061) 109 0 R (ID.062) 110 0 R (ID.063) 111 0 R (ID.064) 112 0 R (ID.065) 113 0 R ] >> endobj -126 0 obj -<< /Kids [124 0 R 125 0 R] >> +120 0 obj +<< /Kids [118 0 R 119 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -127 0 obj -<< /center <> -/raggedright <> -/justify <> +121 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 52 0 R 93 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 50 0 R 89 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -817,234 +842,216 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.004) >> endobj 12 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [13 0 R 24 0 R] /ID (ID.005) >> +<< /Type /StructElem /S /Part /P 9 0 R /K [13 0 R 23 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /part /P 12 0 R /K 14 0 R /ID (ID.006) >> +<< /Type /StructElem /T /S /part /P 12 0 R /K <> /ID (ID.006) >> endobj -14 0 obj -<< /Type /StructElem /C /center /S /Span /P 13 0 R /K <> /ID (ID.007) >> +23 0 obj +<< /Type /StructElem /S /Sect /P 12 0 R /K [24 0 R 26 0 R] /ID (ID.007) >> endobj 24 0 obj -<< /Type /StructElem /S /Sect /P 12 0 R /K [25 0 R 28 0 R] /ID (ID.008) >> -endobj -25 0 obj -<< /Type /StructElem /T /S /chapter /P 24 0 R /K 26 0 R /ID (ID.009) >> +<< /Type /StructElem /T /S /chapter /P 23 0 R /K <> /ID (ID.008) >> endobj 26 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 25 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /S /Sect /P 23 0 R /K [27 0 R 28 0 R] /ID (ID.009) >> +endobj +27 0 obj +<< /Type /StructElem /T /S /section /P 26 0 R /K <> /ID (ID.010) >> endobj 28 0 obj -<< /Type /StructElem /S /Sect /P 24 0 R /K [29 0 R 30 0 R] /ID (ID.011) >> +<< /Type /StructElem /S /Sect /P 26 0 R /K [29 0 R 30 0 R] /ID (ID.011) >> endobj 29 0 obj -<< /Type /StructElem /T /S /section /P 28 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /T /S /subsection /P 28 0 R /K <> /ID (ID.012) >> endobj 30 0 obj << /Type /StructElem /S /Sect /P 28 0 R /K [31 0 R 32 0 R] /ID (ID.013) >> endobj 31 0 obj -<< /Type /StructElem /T /S /subsection /P 30 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /T /S /subsubsection /P 30 0 R /K <> /ID (ID.014) >> endobj 32 0 obj -<< /Type /StructElem /S /Sect /P 30 0 R /K [33 0 R 34 0 R] /ID (ID.015) >> +<< /Type /StructElem /S /Sect /P 30 0 R /K [33 0 R 34 0 R 36 0 R] /ID (ID.015) >> endobj 33 0 obj -<< /Type /StructElem /T /S /subsubsection /P 32 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /C /justify /S /paragraph /P 32 0 R /K <> /ID (ID.016) >> endobj 34 0 obj -<< /Type /StructElem /S /Sect /P 32 0 R /K [35 0 R 36 0 R 38 0 R] /ID (ID.017) >> +<< /Type /StructElem /S /semantic-para /P 32 0 R /K 35 0 R /ID (ID.017) >> endobj 35 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 34 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /C /justify /S /text-block /P 34 0 R /K <> /ID (ID.018) >> endobj 36 0 obj -<< /Type /StructElem /S /semantic-para /P 34 0 R /K 37 0 R /ID (ID.019) >> +<< /Type /StructElem /S /Sect /P 32 0 R /K [37 0 R 38 0 R] /ID (ID.019) >> endobj 37 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 36 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 36 0 R /K <> /ID (ID.020) >> endobj 38 0 obj -<< /Type /StructElem /S /Sect /P 34 0 R /K [39 0 R 40 0 R] /ID (ID.021) >> +<< /Type /StructElem /S /semantic-para /P 36 0 R /K 39 0 R /ID (ID.021) >> endobj 39 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 38 0 R /K <> /ID (ID.022) >> -endobj -40 0 obj -<< /Type /StructElem /S /semantic-para /P 38 0 R /K 41 0 R /ID (ID.023) >> +<< /Type /StructElem /C /justify /S /text-block /P 38 0 R /K <> /ID (ID.022) >> endobj -41 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 40 0 R /K <> /ID (ID.024) >> +50 0 obj +<< /Type /StructElem /S /Part /P 9 0 R /K [51 0 R 60 0 R] /ID (ID.023) >> endobj -52 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [53 0 R 63 0 R] /ID (ID.025) >> +51 0 obj +<< /Type /StructElem /T /S /part /P 50 0 R /K [<> 53 0 R <>] /ID (ID.024) >> endobj 53 0 obj -<< /Type /StructElem /T /S /part /P 52 0 R /K [54 0 R 56 0 R] /ID (ID.026) >> +<< /Type /StructElem /S /heading-number /P 51 0 R /K <> /ID (ID.025) >> endobj -54 0 obj -<< /Type /StructElem /C /center /S /Span /P 53 0 R /K <> /ID (ID.027) >> +60 0 obj +<< /Type /StructElem /S /Sect /P 50 0 R /K [61 0 R 64 0 R] /ID (ID.026) >> endobj -56 0 obj -<< /Type /StructElem /C /center /S /Span /P 53 0 R /K <> /ID (ID.028) >> +61 0 obj +<< /Type /StructElem /T /S /chapter /P 60 0 R /K [<> 63 0 R <>] /ID (ID.027) >> endobj 63 0 obj -<< /Type /StructElem /S /Sect /P 52 0 R /K [64 0 R 68 0 R] /ID (ID.029) >> +<< /Type /StructElem /S /heading-number /P 61 0 R /K <> /ID (ID.028) >> endobj 64 0 obj -<< /Type /StructElem /T /S /chapter /P 63 0 R /K [65 0 R 67 0 R] /ID (ID.030) >> +<< /Type /StructElem /S /Sect /P 60 0 R /K [65 0 R 67 0 R] /ID (ID.029) >> endobj 65 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 64 0 R /K <> /ID (ID.031) >> +<< /Type /StructElem /T /S /section /P 64 0 R /K [66 0 R <> <>] /ID (ID.030) >> +endobj +66 0 obj +<< /Type /StructElem /S /heading-number /P 65 0 R /K <> /ID (ID.031) >> endobj 67 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 64 0 R /K <> /ID (ID.032) >> +<< /Type /StructElem /S /Sect /P 64 0 R /K [68 0 R 70 0 R] /ID (ID.032) >> endobj 68 0 obj -<< /Type /StructElem /S /Sect /P 63 0 R /K [69 0 R 71 0 R] /ID (ID.033) >> +<< /Type /StructElem /T /S /subsection /P 67 0 R /K [69 0 R <> <>] /ID (ID.033) >> endobj 69 0 obj -<< /Type /StructElem /T /S /section /P 68 0 R /K [70 0 R <>] /ID (ID.034) >> +<< /Type /StructElem /S /heading-number /P 68 0 R /K <> /ID (ID.034) >> endobj 70 0 obj -<< /Type /StructElem /S /section-number /P 69 0 R /K <> /ID (ID.035) >> +<< /Type /StructElem /S /Sect /P 67 0 R /K [71 0 R 73 0 R] /ID (ID.035) >> endobj 71 0 obj -<< /Type /StructElem /S /Sect /P 68 0 R /K [72 0 R 74 0 R] /ID (ID.036) >> +<< /Type /StructElem /T /S /subsubsection /P 70 0 R /K [72 0 R <> <>] /ID (ID.036) >> endobj 72 0 obj -<< /Type /StructElem /T /S /subsection /P 71 0 R /K [73 0 R <>] /ID (ID.037) >> +<< /Type /StructElem /S /heading-number /P 71 0 R /K <> /ID (ID.037) >> endobj 73 0 obj -<< /Type /StructElem /S /section-number /P 72 0 R /K <> /ID (ID.038) >> +<< /Type /StructElem /S /Sect /P 70 0 R /K [74 0 R 76 0 R 78 0 R] /ID (ID.038) >> endobj 74 0 obj -<< /Type /StructElem /S /Sect /P 71 0 R /K [75 0 R 77 0 R] /ID (ID.039) >> +<< /Type /StructElem /C /justify /S /paragraph /P 73 0 R /K [<> 75 0 R <>] /ID (ID.039) >> endobj 75 0 obj -<< /Type /StructElem /T /S /subsubsection /P 74 0 R /K [76 0 R <>] /ID (ID.040) >> +<< /Type /StructElem /S /heading-number /P 74 0 R /K <> /ID (ID.040) >> endobj 76 0 obj -<< /Type /StructElem /S /section-number /P 75 0 R /K <> /ID (ID.041) >> +<< /Type /StructElem /S /semantic-para /P 73 0 R /K 77 0 R /ID (ID.041) >> endobj 77 0 obj -<< /Type /StructElem /S /Sect /P 74 0 R /K [78 0 R 80 0 R 82 0 R] /ID (ID.042) >> +<< /Type /StructElem /C /justify /S /text-block /P 76 0 R /K <> /ID (ID.042) >> endobj 78 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 77 0 R /K [<> 79 0 R <>] /ID (ID.043) >> +<< /Type /StructElem /S /Sect /P 73 0 R /K [79 0 R 81 0 R] /ID (ID.043) >> endobj 79 0 obj -<< /Type /StructElem /S /section-number /P 78 0 R /K <> /ID (ID.044) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 78 0 R /K [<> 80 0 R <>] /ID (ID.044) >> endobj 80 0 obj -<< /Type /StructElem /S /semantic-para /P 77 0 R /K 81 0 R /ID (ID.045) >> +<< /Type /StructElem /S /heading-number /P 79 0 R /K <> /ID (ID.045) >> endobj 81 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 80 0 R /K <> /ID (ID.046) >> +<< /Type /StructElem /S /semantic-para /P 78 0 R /K 82 0 R /ID (ID.046) >> endobj 82 0 obj -<< /Type /StructElem /S /Sect /P 77 0 R /K [83 0 R 85 0 R] /ID (ID.047) >> -endobj -83 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 82 0 R /K [<> 84 0 R <>] /ID (ID.048) >> +<< /Type /StructElem /C /justify /S /text-block /P 81 0 R /K <> /ID (ID.047) >> endobj -84 0 obj -<< /Type /StructElem /S /section-number /P 83 0 R /K <> /ID (ID.049) >> +89 0 obj +<< /Type /StructElem /S /Part /P 9 0 R /K [90 0 R 97 0 R] /ID (ID.048) >> endobj -85 0 obj -<< /Type /StructElem /S /semantic-para /P 82 0 R /K 86 0 R /ID (ID.050) >> +90 0 obj +<< /Type /StructElem /T /S /part /P 89 0 R /K <> /ID (ID.049) >> endobj -86 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 85 0 R /K <> /ID (ID.051) >> +97 0 obj +<< /Type /StructElem /S /Sect /P 89 0 R /K [98 0 R 100 0 R] /ID (ID.050) >> endobj -93 0 obj -<< /Type /StructElem /S /Part /P 9 0 R /K [94 0 R 102 0 R] /ID (ID.052) >> +98 0 obj +<< /Type /StructElem /T /S /chapter /P 97 0 R /K <> /ID (ID.051) >> endobj -94 0 obj -<< /Type /StructElem /T /S /part /P 93 0 R /K 95 0 R /ID (ID.053) >> +100 0 obj +<< /Type /StructElem /S /Sect /P 97 0 R /K [101 0 R 102 0 R] /ID (ID.052) >> endobj -95 0 obj -<< /Type /StructElem /C /center /S /Span /P 94 0 R /K <> /ID (ID.054) >> +101 0 obj +<< /Type /StructElem /T /S /section /P 100 0 R /K <> /ID (ID.053) >> endobj 102 0 obj -<< /Type /StructElem /S /Sect /P 93 0 R /K [103 0 R 106 0 R] /ID (ID.055) >> +<< /Type /StructElem /S /Sect /P 100 0 R /K [103 0 R 104 0 R] /ID (ID.054) >> endobj 103 0 obj -<< /Type /StructElem /T /S /chapter /P 102 0 R /K 104 0 R /ID (ID.056) >> +<< /Type /StructElem /T /S /subsection /P 102 0 R /K <> /ID (ID.055) >> endobj 104 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 103 0 R /K <> /ID (ID.057) >> +<< /Type /StructElem /S /Sect /P 102 0 R /K [105 0 R 106 0 R] /ID (ID.056) >> +endobj +105 0 obj +<< /Type /StructElem /T /S /subsubsection /P 104 0 R /K <> /ID (ID.057) >> endobj 106 0 obj -<< /Type /StructElem /S /Sect /P 102 0 R /K [107 0 R 108 0 R] /ID (ID.058) >> +<< /Type /StructElem /S /Sect /P 104 0 R /K [107 0 R 108 0 R 110 0 R] /ID (ID.058) >> endobj 107 0 obj -<< /Type /StructElem /T /S /section /P 106 0 R /K <> /ID (ID.059) >> +<< /Type /StructElem /C /justify /S /paragraph /P 106 0 R /K <> /ID (ID.059) >> endobj 108 0 obj -<< /Type /StructElem /S /Sect /P 106 0 R /K [109 0 R 110 0 R] /ID (ID.060) >> +<< /Type /StructElem /S /semantic-para /P 106 0 R /K 109 0 R /ID (ID.060) >> endobj 109 0 obj -<< /Type /StructElem /T /S /subsection /P 108 0 R /K <> /ID (ID.061) >> +<< /Type /StructElem /C /justify /S /text-block /P 108 0 R /K <> /ID (ID.061) >> endobj 110 0 obj -<< /Type /StructElem /S /Sect /P 108 0 R /K [111 0 R 112 0 R] /ID (ID.062) >> +<< /Type /StructElem /S /Sect /P 106 0 R /K [111 0 R 112 0 R] /ID (ID.062) >> endobj 111 0 obj -<< /Type /StructElem /T /S /subsubsection /P 110 0 R /K <> /ID (ID.063) >> +<< /Type /StructElem /C /justify /S /subparagraph /P 110 0 R /K <> /ID (ID.063) >> endobj 112 0 obj -<< /Type /StructElem /S /Sect /P 110 0 R /K [113 0 R 114 0 R 116 0 R] /ID (ID.064) >> +<< /Type /StructElem /S /semantic-para /P 110 0 R /K 113 0 R /ID (ID.064) >> endobj 113 0 obj -<< /Type /StructElem /C /justify /S /paragraph /P 112 0 R /K <> /ID (ID.065) >> -endobj -114 0 obj -<< /Type /StructElem /S /semantic-para /P 112 0 R /K 115 0 R /ID (ID.066) >> -endobj -115 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 114 0 R /K <> /ID (ID.067) >> -endobj -116 0 obj -<< /Type /StructElem /S /Sect /P 112 0 R /K [117 0 R 118 0 R] /ID (ID.068) >> -endobj -117 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /P 116 0 R /K <> /ID (ID.069) >> -endobj -118 0 obj -<< /Type /StructElem /S /semantic-para /P 116 0 R /K 119 0 R /ID (ID.070) >> -endobj -119 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 118 0 R /K <> /ID (ID.071) >> +<< /Type /StructElem /C /justify /S /text-block /P 112 0 R /K <> /ID (ID.065) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 126 0 R /ClassMap 127 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 120 0 R /ClassMap 121 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -129 0 obj +123 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -130 0 obj +124 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -131 0 obj +125 0 obj [333] endobj -132 0 obj +126 0 obj [319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7] endobj -133 0 obj +127 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -134 0 obj +128 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -135 0 obj +129 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj -136 0 obj +130 0 obj [756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2] endobj -137 0 obj +131 0 obj << /Length1 1144 /Length2 1422 @@ -1053,7 +1060,7 @@ endobj >> [BINARY STREAM] endobj -138 0 obj +132 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -1066,10 +1073,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 137 0 R +/FontFile 131 0 R >> endobj -139 0 obj +133 0 obj << /Length1 727 /Length2 13927 @@ -1078,7 +1085,7 @@ endobj >> [BINARY STREAM] endobj -140 0 obj +134 0 obj << /Type /FontDescriptor /FontName /QYLLPC+SFBX1000 @@ -1091,10 +1098,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/P/S/a/b/c/e/g/h/i/n/o/one/p/period/r/s/t/u) -/FontFile 139 0 R +/FontFile 133 0 R >> endobj -141 0 obj +135 0 obj << /Length1 727 /Length2 11166 @@ -1103,7 +1110,7 @@ endobj >> [BINARY STREAM] endobj -142 0 obj +136 0 obj << /Type /FontDescriptor /FontName /PWWOHF+SFBX1200 @@ -1116,10 +1123,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/S/b/c/e/i/n/o/one/period/s/t/u) -/FontFile 141 0 R +/FontFile 135 0 R >> endobj -143 0 obj +137 0 obj << /Length1 727 /Length2 9726 @@ -1128,7 +1135,7 @@ endobj >> [BINARY STREAM] endobj -144 0 obj +138 0 obj << /Type /FontDescriptor /FontName /CZSLAP+SFBX1440 @@ -1141,10 +1148,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/S/c/e/i/n/o/one/period/t) -/FontFile 143 0 R +/FontFile 137 0 R >> endobj -145 0 obj +139 0 obj << /Length1 727 /Length2 9969 @@ -1153,7 +1160,7 @@ endobj >> [BINARY STREAM] endobj -146 0 obj +140 0 obj << /Type /FontDescriptor /FontName /TULYZY+SFBX2074 @@ -1166,10 +1173,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/I/P/a/e/h/one/p/r/t) -/FontFile 145 0 R +/FontFile 139 0 R >> endobj -147 0 obj +141 0 obj << /Length1 727 /Length2 9537 @@ -1178,7 +1185,7 @@ endobj >> [BINARY STREAM] endobj -148 0 obj +142 0 obj << /Type /FontDescriptor /FontName /NEYDAH+SFBX2488 @@ -1191,10 +1198,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/P/a/e/h/p/r/t) -/FontFile 147 0 R +/FontFile 141 0 R >> endobj -149 0 obj +143 0 obj << /Length1 721 /Length2 11032 @@ -1203,7 +1210,7 @@ endobj >> [BINARY STREAM] endobj -150 0 obj +144 0 obj << /Type /FontDescriptor /FontName /BFEMNJ+SFRM1000 @@ -1216,10 +1223,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/e/eight/five/four/m/nine/o/one/s/seven/t/three/x) -/FontFile 149 0 R +/FontFile 143 0 R >> endobj -151 0 obj +145 0 obj << /Length1 727 /Length2 4321 @@ -1228,7 +1235,7 @@ endobj >> [BINARY STREAM] endobj -152 0 obj +146 0 obj << /Type /FontDescriptor /FontName /CHEGWC+SFSL1000 @@ -1241,16 +1248,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/C/E/H/P/R/T/one/period) -/FontFile 151 0 R +/FontFile 145 0 R >> endobj -128 0 obj +122 0 obj << /Type /Encoding /Differences [46/period 49/one 51/three/four/five 55/seven/eight/nine 65/A 67/C 69/E 72/H/I 80/P 82/R/S/T 97/a/b/c 101/e 103/g/h/i 109/m/n/o/p 114/r/s/t/u 120/x] >> endobj -153 0 obj +147 0 obj << /Length 2030 >> @@ -1394,20 +1401,20 @@ end %%EOF endstream endobj -46 0 obj +44 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QYLLPC+SFBX1000 -/FontDescriptor 140 0 R +/FontDescriptor 134 0 R /FirstChar 46 /LastChar 117 -/Widths 132 0 R -/Encoding 128 0 R -/ToUnicode 153 0 R +/Widths 126 0 R +/Encoding 122 0 R +/ToUnicode 147 0 R >> endobj -154 0 obj +148 0 obj << /Length 2030 >> @@ -1551,20 +1558,20 @@ end %%EOF endstream endobj -45 0 obj +43 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PWWOHF+SFBX1200 -/FontDescriptor 142 0 R +/FontDescriptor 136 0 R /FirstChar 46 /LastChar 117 -/Widths 133 0 R -/Encoding 128 0 R -/ToUnicode 154 0 R +/Widths 127 0 R +/Encoding 122 0 R +/ToUnicode 148 0 R >> endobj -155 0 obj +149 0 obj << /Length 2030 >> @@ -1708,20 +1715,20 @@ end %%EOF endstream endobj -44 0 obj +42 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CZSLAP+SFBX1440 -/FontDescriptor 144 0 R +/FontDescriptor 138 0 R /FirstChar 46 /LastChar 116 -/Widths 134 0 R -/Encoding 128 0 R -/ToUnicode 155 0 R +/Widths 128 0 R +/Encoding 122 0 R +/ToUnicode 149 0 R >> endobj -156 0 obj +150 0 obj << /Length 2030 >> @@ -1865,20 +1872,20 @@ end %%EOF endstream endobj -59 0 obj +56 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TULYZY+SFBX2074 -/FontDescriptor 146 0 R +/FontDescriptor 140 0 R /FirstChar 49 /LastChar 116 -/Widths 129 0 R -/Encoding 128 0 R -/ToUnicode 156 0 R +/Widths 123 0 R +/Encoding 122 0 R +/ToUnicode 150 0 R >> endobj -157 0 obj +151 0 obj << /Length 2030 >> @@ -2022,20 +2029,20 @@ end %%EOF endstream endobj -18 0 obj +17 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NEYDAH+SFBX2488 -/FontDescriptor 148 0 R +/FontDescriptor 142 0 R /FirstChar 67 /LastChar 116 -/Widths 136 0 R -/Encoding 128 0 R -/ToUnicode 157 0 R +/Widths 130 0 R +/Encoding 122 0 R +/ToUnicode 151 0 R >> endobj -158 0 obj +152 0 obj << /Length 2030 >> @@ -2179,20 +2186,20 @@ end %%EOF endstream endobj -19 0 obj +18 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BFEMNJ+SFRM1000 -/FontDescriptor 150 0 R +/FontDescriptor 144 0 R /FirstChar 49 /LastChar 120 -/Widths 135 0 R -/Encoding 128 0 R -/ToUnicode 158 0 R +/Widths 129 0 R +/Encoding 122 0 R +/ToUnicode 152 0 R >> endobj -159 0 obj +153 0 obj << /Length 2030 >> @@ -2336,20 +2343,20 @@ end %%EOF endstream endobj -51 0 obj +49 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CHEGWC+SFSL1000 -/FontDescriptor 152 0 R +/FontDescriptor 146 0 R /FirstChar 46 /LastChar 84 -/Widths 130 0 R -/Encoding 128 0 R -/ToUnicode 159 0 R +/Widths 124 0 R +/Encoding 122 0 R +/ToUnicode 153 0 R >> endobj -160 0 obj +154 0 obj << /Length 654 >> @@ -2387,225 +2394,219 @@ end %%EOF endstream endobj -47 0 obj +45 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 138 0 R +/FontDescriptor 132 0 R /FirstChar 32 /LastChar 32 -/Widths 131 0 R -/ToUnicode 160 0 R +/Widths 125 0 R +/ToUnicode 154 0 R >> endobj -20 0 obj +19 0 obj << /Type /Pages /Count 6 -/Parent 161 0 R -/Kids [15 0 R 22 0 R 27 0 R 49 0 R 55 0 R 61 0 R] +/Parent 155 0 R +/Kids [14 0 R 21 0 R 25 0 R 47 0 R 52 0 R 58 0 R] >> endobj -89 0 obj +85 0 obj << /Type /Pages /Count 5 -/Parent 161 0 R -/Kids [66 0 R 91 0 R 96 0 R 100 0 R 105 0 R] +/Parent 155 0 R +/Kids [62 0 R 87 0 R 91 0 R 95 0 R 99 0 R] >> endobj -161 0 obj +155 0 obj << /Type /Pages /Count 11 -/Kids [20 0 R 89 0 R] +/Kids [19 0 R 85 0 R] >> endobj -162 0 obj +156 0 obj << /Type /Catalog -/Pages 161 0 R -/MarkInfo 123 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 120 0 R +/Pages 155 0 R +/MarkInfo 117 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 114 0 R >> endobj -163 0 obj +157 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 164 +0 158 0000000008 65535 f -0000020170 00000 n -0000020217 00000 n -0000020239 00000 n -0000020261 00000 n -0000031131 00000 n -0000020320 00000 n -0000021980 00000 n +0000020593 00000 n +0000020640 00000 n +0000020662 00000 n +0000020684 00000 n +0000031080 00000 n +0000020743 00000 n +0000022338 00000 n 0000000000 00000 f -0000022897 00000 n -0000022998 00000 n -0000023074 00000 n -0000023150 00000 n -0000023241 00000 n -0000023350 00000 n +0000023280 00000 n +0000023381 00000 n +0000023457 00000 n +0000023533 00000 n +0000023624 00000 n 0000000253 00000 n 0000000388 00000 n 0000000015 00000 n -0000125486 00000 n -0000127758 00000 n -0000131092 00000 n +0000125435 00000 n +0000127707 00000 n +0000131041 00000 n 0000000731 00000 n 0000000596 00000 n 0000000488 00000 n -0000023470 00000 n -0000023562 00000 n -0000023686 00000 n -0000001762 00000 n -0000023811 00000 n -0000023903 00000 n -0000024053 00000 n -0000024145 00000 n -0000024310 00000 n -0000024402 00000 n -0000024582 00000 n -0000024681 00000 n -0000024807 00000 n -0000024899 00000 n -0000025026 00000 n -0000025118 00000 n -0000025247 00000 n -0000025339 00000 n -0000001897 00000 n +0000023759 00000 n +0000023851 00000 n +0000001765 00000 n +0000024001 00000 n +0000024093 00000 n +0000024243 00000 n +0000024335 00000 n +0000024500 00000 n +0000024592 00000 n +0000024772 00000 n +0000024871 00000 n +0000024997 00000 n +0000025089 00000 n +0000025216 00000 n +0000025308 00000 n +0000025437 00000 n +0000025529 00000 n +0000001900 00000 n 0000000789 00000 n -0000120942 00000 n -0000118670 00000 n -0000116398 00000 n -0000130925 00000 n -0000002410 00000 n -0000002275 00000 n -0000002045 00000 n -0000130030 00000 n -0000025466 00000 n -0000025557 00000 n -0000025675 00000 n -0000002897 00000 n -0000025795 00000 n -0000003032 00000 n -0000002522 00000 n -0000123214 00000 n -0000003399 00000 n -0000003264 00000 n -0000003156 00000 n -0000025915 00000 n -0000026007 00000 n -0000026140 00000 n -0000005098 00000 n -0000026265 00000 n -0000026390 00000 n -0000026482 00000 n -0000026641 00000 n -0000026760 00000 n -0000026852 00000 n -0000027026 00000 n -0000027145 00000 n -0000027237 00000 n -0000027426 00000 n -0000027545 00000 n -0000027644 00000 n -0000027813 00000 n -0000027932 00000 n -0000028024 00000 n -0000028152 00000 n -0000028244 00000 n -0000028417 00000 n -0000028537 00000 n -0000028629 00000 n -0000005233 00000 n -0000003457 00000 n -0000131202 00000 n -0000005857 00000 n -0000005722 00000 n -0000005393 00000 n -0000028757 00000 n -0000028849 00000 n -0000028958 00000 n -0000006207 00000 n -0000006342 00000 n -0000005969 00000 n -0000006688 00000 n -0000006551 00000 n -0000006442 00000 n -0000029078 00000 n -0000029173 00000 n -0000029300 00000 n -0000019882 00000 n -0000029428 00000 n -0000029524 00000 n -0000029677 00000 n -0000029773 00000 n -0000029941 00000 n -0000030037 00000 n -0000030220 00000 n -0000030324 00000 n -0000030453 00000 n -0000030548 00000 n -0000030678 00000 n -0000030774 00000 n -0000030906 00000 n -0000031001 00000 n -0000006746 00000 n -0000020021 00000 n -0000018907 00000 n -0000020283 00000 n -0000020677 00000 n -0000021536 00000 n -0000021933 00000 n -0000022652 00000 n -0000114107 00000 n -0000031251 00000 n -0000031672 00000 n -0000031919 00000 n -0000031942 00000 n -0000032389 00000 n -0000032838 00000 n -0000033261 00000 n -0000033701 00000 n -0000034013 00000 n -0000036678 00000 n -0000036898 00000 n -0000051651 00000 n -0000051915 00000 n -0000063907 00000 n -0000064159 00000 n -0000074710 00000 n -0000074956 00000 n -0000085750 00000 n -0000085993 00000 n -0000096355 00000 n -0000096592 00000 n -0000108444 00000 n -0000108714 00000 n -0000113860 00000 n -0000114308 00000 n -0000116580 00000 n -0000118852 00000 n -0000121124 00000 n -0000123396 00000 n -0000125668 00000 n -0000127940 00000 n -0000130211 00000 n -0000131307 00000 n -0000131375 00000 n -0000131494 00000 n +0000120891 00000 n +0000118619 00000 n +0000116347 00000 n +0000130874 00000 n +0000002413 00000 n +0000002278 00000 n +0000002048 00000 n +0000129979 00000 n +0000025656 00000 n +0000025747 00000 n +0000002958 00000 n +0000025924 00000 n +0000003093 00000 n +0000002525 00000 n +0000123163 00000 n +0000003460 00000 n +0000003325 00000 n +0000003217 00000 n +0000026043 00000 n +0000026135 00000 n +0000005522 00000 n +0000026327 00000 n +0000026446 00000 n +0000026538 00000 n +0000026730 00000 n +0000026849 00000 n +0000026941 00000 n +0000027148 00000 n +0000027267 00000 n +0000027359 00000 n +0000027583 00000 n +0000027702 00000 n +0000027801 00000 n +0000027971 00000 n +0000028091 00000 n +0000028183 00000 n +0000028311 00000 n +0000028403 00000 n +0000028576 00000 n +0000028696 00000 n +0000028788 00000 n +0000005657 00000 n +0000003518 00000 n +0000131151 00000 n +0000006281 00000 n +0000006146 00000 n +0000005817 00000 n +0000028916 00000 n +0000029007 00000 n +0000006631 00000 n +0000006766 00000 n +0000006393 00000 n +0000007109 00000 n +0000006974 00000 n +0000006866 00000 n +0000029142 00000 n +0000029235 00000 n +0000020306 00000 n +0000029385 00000 n +0000029480 00000 n +0000029632 00000 n +0000029728 00000 n +0000029895 00000 n +0000029991 00000 n +0000030173 00000 n +0000030277 00000 n +0000030405 00000 n +0000030500 00000 n +0000030629 00000 n +0000030725 00000 n +0000030856 00000 n +0000030951 00000 n +0000007167 00000 n +0000020444 00000 n +0000019328 00000 n +0000020706 00000 n +0000021134 00000 n +0000021993 00000 n +0000022291 00000 n +0000023117 00000 n +0000114056 00000 n +0000031200 00000 n +0000031621 00000 n +0000031868 00000 n +0000031891 00000 n +0000032338 00000 n +0000032787 00000 n +0000033210 00000 n +0000033650 00000 n +0000033962 00000 n +0000036627 00000 n +0000036847 00000 n +0000051600 00000 n +0000051864 00000 n +0000063856 00000 n +0000064108 00000 n +0000074659 00000 n +0000074905 00000 n +0000085699 00000 n +0000085942 00000 n +0000096304 00000 n +0000096541 00000 n +0000108393 00000 n +0000108663 00000 n +0000113809 00000 n +0000114257 00000 n +0000116529 00000 n +0000118801 00000 n +0000121073 00000 n +0000123345 00000 n +0000125617 00000 n +0000127889 00000 n +0000130160 00000 n +0000131254 00000 n +0000131322 00000 n +0000131441 00000 n trailer -<< /Size 164 -/Root 162 0 R -/Info 163 0 R +<< /Size 158 +/Root 156 0 R +/Info 157 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -131627 +131574 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-2.luatex.tpf b/required/latex-lab/testfiles-sec/test-book-2.luatex.tpf index e4ee5b520..f51ffc960 100644 --- a/required/latex-lab/testfiles-sec/test-book-2.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-book-2.luatex.tpf @@ -1,12 +1,12 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ -20 0 obj -<< /Length 337 >> +19 0 obj +<< /Length 340 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(A)]TJ @@ -32,13 +32,13 @@ EMC EMC endstream endobj -19 0 obj -<< /Type /Page /Contents 20 0 R /Resources 18 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 23 0 R >> -endobj 18 0 obj -<< /ExtGState 1 0 R /Font << /F19 21 0 R /F16 22 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 19 0 R /Resources 17 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 22 0 R >> endobj -26 0 obj +17 0 obj +<< /ExtGState 1 0 R /Font << /F19 20 0 R /F16 21 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +25 0 obj << /Length 176 >> stream /opacity1 gs @@ -56,13 +56,13 @@ EMC EMC endstream endobj -25 0 obj -<< /Type /Page /Contents 26 0 R /Resources 24 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 23 0 R >> -endobj 24 0 obj -<< /ExtGState 1 0 R /Font << /F16 22 0 R /F20 27 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 25 0 R /Resources 23 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 22 0 R >> endobj -32 0 obj +23 0 obj +<< /ExtGState 1 0 R /Font << /F16 21 0 R /F20 26 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +31 0 obj << /Length 341 >> stream /opacity1 gs @@ -90,13 +90,13 @@ EMC EMC endstream endobj -31 0 obj -<< /Type /Page /Contents 32 0 R /Resources 30 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 23 0 R >> -endobj 30 0 obj -<< /ExtGState 1 0 R /Font << /F16 22 0 R /F15 33 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 31 0 R /Resources 29 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 22 0 R >> endobj -36 0 obj +29 0 obj +<< /ExtGState 1 0 R /Font << /F16 21 0 R /F15 32 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +35 0 obj << /Length 175 >> stream /opacity1 gs @@ -114,29 +114,33 @@ EMC EMC endstream endobj -35 0 obj -<< /Type /Page /Contents 36 0 R /Resources 34 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 23 0 R >> -endobj 34 0 obj -<< /ExtGState 1 0 R /Font << /F16 22 0 R /F20 27 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 35 0 R /Resources 33 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 22 0 R >> endobj -45 0 obj -<< /Length 635 >> +33 0 obj +<< /ExtGState 1 0 R /Font << /F16 21 0 R /F20 26 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +43 0 obj +<< /Length 692 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(B)]TJ @@ -144,7 +148,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(some)]TJ @@ -166,13 +170,13 @@ EMC EMC endstream endobj -44 0 obj -<< /Type /Page /Contents 45 0 R /Resources 43 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 23 0 R >> +42 0 obj +<< /Type /Page /Contents 43 0 R /Resources 41 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 22 0 R >> endobj -43 0 obj -<< /ExtGState 1 0 R /Font << /F19 21 0 R /F15 33 0 R /F16 22 0 R >> /ProcSet [ /PDF /Text ] >> +41 0 obj +<< /ExtGState 1 0 R /Font << /F19 20 0 R /F15 32 0 R /F16 21 0 R >> /ProcSet [ /PDF /Text ] >> endobj -48 0 obj +46 0 obj << /Length 402 >> stream /opacity1 gs @@ -198,14 +202,14 @@ EMC EMC endstream endobj -47 0 obj -<< /Type /Page /Contents 48 0 R /Resources 46 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 23 0 R >> +45 0 obj +<< /Type /Page /Contents 46 0 R /Resources 44 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 22 0 R >> endobj -46 0 obj -<< /ExtGState 1 0 R /Font << /F16 22 0 R /F20 27 0 R /F15 33 0 R >> /ProcSet [ /PDF /Text ] >> +44 0 obj +<< /ExtGState 1 0 R /Font << /F16 21 0 R /F20 26 0 R /F15 32 0 R >> /ProcSet [ /PDF /Text ] >> endobj -57 0 obj -<< /Length 755 >> +55 0 obj +<< /Length 800 >> stream /opacity1 gs /Artifact BMC @@ -234,16 +238,20 @@ BT 1 0 0 1 146.775 658.164 Tm [(text)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 106.869 625.219 Tm [(1.1)]TJ -/F15 9.96264 Tf -1 0 0 1 127.492 625.219 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 127.492 625.219 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 143.631 625.219 Tm [(section)]TJ ET @@ -252,11 +260,11 @@ EMC EMC endstream endobj -56 0 obj -<< /Type /Page /Contents 57 0 R /Resources 55 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 23 0 R >> +54 0 obj +<< /Type /Page /Contents 55 0 R /Resources 53 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 22 0 R >> endobj -55 0 obj -<< /ExtGState 1 0 R /Font << /F20 27 0 R /F15 33 0 R /F16 22 0 R /F19 21 0 R >> /ProcSet [ /PDF /Text ] >> +53 0 obj +<< /ExtGState 1 0 R /Font << /F20 26 0 R /F15 32 0 R /F16 21 0 R /F19 20 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1 0 obj << /opacity1 <> >> @@ -270,38 +278,37 @@ endobj 4 0 obj << >> endobj -58 0 obj +56 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 15 0 R 17 0 R] +<< /Nums [0 [ 14 0 R 16 0 R] 1 [] -2 [29 0 R] +2 [28 0 R] 3 [] -4 [ 39 0 R 40 0 R 42 0 R] +4 [ 37 0 R 38 0 R 37 0 R 40 0 R] 5 [] -6 [ 50 0 R 53 0 R 52 0 R] +6 [ 48 0 R 51 0 R 50 0 R 50 0 R] ] >> endobj -59 0 obj -<< /Limits [(ID.002) (ID.023)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 16 0 R (ID.010) 17 0 R (ID.011) 28 0 R (ID.012) 29 0 R (ID.013) 37 0 R (ID.014) 38 0 R (ID.015) 39 0 R (ID.016) 40 0 R (ID.017) 41 0 R (ID.018) 42 0 R (ID.019) 49 0 R (ID.020) 50 0 R (ID.021) 51 0 R (ID.022) 52 0 R (ID.023) 53 0 R ] >> +57 0 obj +<< /Limits [(ID.002) (ID.021)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 16 0 R (ID.010) 27 0 R (ID.011) 28 0 R (ID.012) 36 0 R (ID.013) 37 0 R (ID.014) 38 0 R (ID.015) 39 0 R (ID.016) 40 0 R (ID.017) 47 0 R (ID.018) 48 0 R (ID.019) 49 0 R (ID.020) 50 0 R (ID.021) 51 0 R ] >> endobj -60 0 obj -<< /Kids [59 0 R] >> +58 0 obj +<< /Kids [57 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -61 0 obj -<< /raggedright <> -/justify <> +59 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 28 0 R 37 0 R 49 0 R 51 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 27 0 R 36 0 R 47 0 R 49 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -313,63 +320,57 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [14 0 R 16 0 R] /ID (ID.006) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K [14 0 R 15 0 R] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /T /S /chapter /P 13 0 R /K 15 0 R /ID (ID.007) >> +<< /Type /StructElem /T /S /chapter /P 13 0 R /K <> /ID (ID.007) >> endobj 15 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 14 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /semantic-para /P 13 0 R /K 16 0 R /ID (ID.008) >> endobj 16 0 obj -<< /Type /StructElem /S /semantic-para /P 13 0 R /K 17 0 R /ID (ID.009) >> +<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.009) >> endobj -17 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.010) >> +27 0 obj +<< /Type /StructElem /S /semantic-para /P 9 0 R /K 28 0 R /ID (ID.010) >> endobj 28 0 obj -<< /Type /StructElem /S /semantic-para /P 9 0 R /K 29 0 R /ID (ID.011) >> +<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.011) >> endobj -29 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.012) >> +36 0 obj +<< /Type /StructElem /S /Sect /P 9 0 R /K [37 0 R 39 0 R] /ID (ID.012) >> endobj 37 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [38 0 R 41 0 R] /ID (ID.013) >> +<< /Type /StructElem /T /S /chapter /P 36 0 R /K [<> 38 0 R <> ] /ID (ID.013) >> endobj 38 0 obj -<< /Type /StructElem /T /S /chapter /P 37 0 R /K [39 0 R 40 0 R] /ID (ID.014) >> +<< /Type /StructElem /S /heading-number /P 37 0 R /K <> /ID (ID.014) >> endobj 39 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 38 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /S /semantic-para /P 36 0 R /K 40 0 R /ID (ID.015) >> endobj 40 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 38 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /C /justify /S /text-block /P 39 0 R /K <> /ID (ID.016) >> endobj -41 0 obj -<< /Type /StructElem /S /semantic-para /P 37 0 R /K 42 0 R /ID (ID.017) >> +47 0 obj +<< /Type /StructElem /S /semantic-para /P 9 0 R /K 48 0 R /ID (ID.017) >> endobj -42 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 41 0 R /K <> /ID (ID.018) >> +48 0 obj +<< /Type /StructElem /C /justify /S /text-block /P 47 0 R /K <> /ID (ID.018) >> endobj 49 0 obj -<< /Type /StructElem /S /semantic-para /P 9 0 R /K 50 0 R /ID (ID.019) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K 50 0 R /ID (ID.019) >> endobj 50 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 49 0 R /K <> /ID (ID.020) >> +<< /Type /StructElem /T /S /section /P 49 0 R /K [51 0 R <> <> ] /ID (ID.020) >> endobj 51 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K 52 0 R /ID (ID.021) >> -endobj -52 0 obj -<< /Type /StructElem /T /S /section /P 51 0 R /K [53 0 R <> ] /ID (ID.022) >> -endobj -53 0 obj -<< /Type /StructElem /S /section-number /P 52 0 R /K <> /ID (ID.023) >> +<< /Type /StructElem /S /heading-number /P 50 0 R /K <> /ID (ID.021) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 60 0 R /ClassMap 61 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 58 0 R /ClassMap 59 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -54 0 obj +52 0 obj << /Type /Metadata /Subtype /XML /Length 12072 >> stream @@ -609,21 +610,21 @@ stream endstream endobj -62 0 obj +60 0 obj [ 103 [ 333 ] ] endobj -64 0 obj +62 0 obj << /Length 13 >> [BINARY STREAM] endobj -65 0 obj +63 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -63 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 65 0 R /CIDSet 64 0 R >> +61 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 63 0 R /CIDSet 62 0 R >> endobj -66 0 obj +64 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -657,43 +658,43 @@ end %%EOF endstream endobj -33 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 67 0 R ] /ToUnicode 66 0 R >> +32 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 65 0 R ] /ToUnicode 64 0 R >> endobj -67 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 63 0 R /W 62 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +65 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 61 0 R /W 60 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -68 0 obj +66 0 obj [277.8 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 708.3 722.2 0 680.6 0 0 750 361.1 0 0 0 0 750 777.8 680.6 0 736.1 555.6 722.2 ] endobj -69 0 obj +67 0 obj [500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 555.6 444.4 0 444.4 0 0 0 277.8 0 0 0 833.3 0 500 0 0 0 394.4 388.9 0 0 0 527.8 ] endobj -70 0 obj +68 0 obj [312.5 0 0 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 849.5 799.8 812.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 0 500 0 513.3 0 0 625 312.5 0 0 0 0 625 562.5 625 0 459.5 443.8 437.5 ] endobj -72 0 obj +70 0 obj << /Length1 1617 /Length2 8489 /Length3 0 /Length 10106 >> [BINARY STREAM] endobj -71 0 obj -<< /Type /FontDescriptor /FontName /SCUNLL+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /A /B /C /a /c /e /h /i /n /o /one /p /period /r /s /t) /FontFile 72 0 R >> +69 0 obj +<< /Type /FontDescriptor /FontName /SCUNLL+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /A /B /C /a /c /e /h /i /n /o /one /p /period /r /s /t) /FontFile 70 0 R >> endobj -74 0 obj +72 0 obj << /Length1 1602 /Length2 10830 /Length3 0 /Length 12432 >> [BINARY STREAM] endobj -73 0 obj -<< /Type /FontDescriptor /FontName /GSRFGL+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /a /b /c /e /five /four /i /m /o /one /s /t /three /two /x) /FontFile 74 0 R >> +71 0 obj +<< /Type /FontDescriptor /FontName /GSRFGL+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /a /b /c /e /five /four /i /m /o /one /s /t /three /two /x) /FontFile 72 0 R >> endobj -76 0 obj +74 0 obj << /Length1 1586 /Length2 8860 /Length3 0 /Length 10446 >> [BINARY STREAM] endobj -75 0 obj -<< /Type /FontDescriptor /FontName /DDNRGU+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /A /B /C /E /H /I /N /O /P /R /S /T /one /period) /FontFile 76 0 R >> +73 0 obj +<< /Type /FontDescriptor /FontName /DDNRGU+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /A /B /C /E /H /I /N /O /P /R /S /T /one /period) /FontFile 74 0 R >> endobj -77 0 obj +75 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -813,10 +814,10 @@ end %%EOF endstream endobj -21 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /SCUNLL+CMBX12 /FontDescriptor 71 0 R /FirstChar 46 /LastChar 116 /Widths 70 0 R /ToUnicode 77 0 R >> +20 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /SCUNLL+CMBX12 /FontDescriptor 69 0 R /FirstChar 46 /LastChar 116 /Widths 68 0 R /ToUnicode 75 0 R >> endobj -78 0 obj +76 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -936,10 +937,10 @@ end %%EOF endstream endobj -22 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /GSRFGL+CMR10 /FontDescriptor 73 0 R /FirstChar 49 /LastChar 120 /Widths 69 0 R /ToUnicode 78 0 R >> +21 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /GSRFGL+CMR10 /FontDescriptor 71 0 R /FirstChar 49 /LastChar 120 /Widths 67 0 R /ToUnicode 76 0 R >> endobj -79 0 obj +77 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1059,104 +1060,102 @@ end %%EOF endstream endobj -27 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /DDNRGU+CMSL10 /FontDescriptor 75 0 R /FirstChar 46 /LastChar 84 /Widths 68 0 R /ToUnicode 79 0 R >> +26 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /DDNRGU+CMSL10 /FontDescriptor 73 0 R /FirstChar 46 /LastChar 84 /Widths 66 0 R /ToUnicode 77 0 R >> endobj -23 0 obj -<< /Type /Pages /Count 7 /Kids [ 19 0 R 25 0 R 31 0 R 35 0 R 44 0 R 47 0 R 56 0 R ] >> +22 0 obj +<< /Type /Pages /Count 7 /Kids [ 18 0 R 24 0 R 30 0 R 34 0 R 42 0 R 45 0 R 54 0 R ] >> endobj -80 0 obj -<< /Type /Catalog /Pages 23 0 R /MarkInfo 58 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 54 0 R >> +78 0 obj +<< /Type /Catalog /Pages 22 0 R /MarkInfo 56 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 52 0 R >> endobj -81 0 obj +79 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 82 +0 80 0000000008 65535 f -0000004947 00000 n -0000004994 00000 n -0000005016 00000 n -0000005038 00000 n -0000008911 00000 n -0000005096 00000 n -0000005673 00000 n +0000005052 00000 n +0000005099 00000 n +0000005121 00000 n +0000005143 00000 n +0000008928 00000 n +0000005201 00000 n +0000005760 00000 n 0000000000 00000 f -0000006550 00000 n -0000006665 00000 n -0000006741 00000 n -0000006817 00000 n -0000006893 00000 n -0000006984 00000 n -0000007084 00000 n -0000007211 00000 n -0000007303 00000 n -0000000552 00000 n -0000000417 00000 n +0000006701 00000 n +0000006816 00000 n +0000006892 00000 n +0000006968 00000 n +0000007044 00000 n +0000007135 00000 n +0000007263 00000 n +0000007355 00000 n +0000000555 00000 n +0000000420 00000 n 0000000020 00000 n -0000059659 00000 n -0000061602 00000 n -0000063707 00000 n -0000001022 00000 n -0000000887 00000 n -0000000651 00000 n -0000063549 00000 n -0000007432 00000 n -0000007523 00000 n -0000001657 00000 n -0000001522 00000 n -0000001121 00000 n -0000022848 00000 n -0000002126 00000 n -0000001991 00000 n -0000001756 00000 n -0000007652 00000 n -0000007743 00000 n -0000007852 00000 n -0000007979 00000 n -0000008106 00000 n -0000008198 00000 n -0000003055 00000 n -0000002920 00000 n -0000002225 00000 n -0000003763 00000 n -0000003628 00000 n -0000003166 00000 n -0000008327 00000 n -0000008418 00000 n -0000008547 00000 n -0000008629 00000 n -0000008790 00000 n -0000009029 00000 n -0000004824 00000 n -0000004689 00000 n -0000003874 00000 n -0000005060 00000 n -0000005226 00000 n -0000005636 00000 n -0000006345 00000 n -0000021191 00000 n -0000021886 00000 n -0000021223 00000 n -0000021296 00000 n -0000022122 00000 n -0000023002 00000 n -0000023202 00000 n -0000023347 00000 n -0000023556 00000 n -0000033978 00000 n -0000023773 00000 n -0000046783 00000 n -0000034251 00000 n -0000057603 00000 n -0000047058 00000 n -0000057870 00000 n -0000059818 00000 n -0000061760 00000 n -0000063811 00000 n -0000063926 00000 n +0000059676 00000 n +0000061619 00000 n +0000063724 00000 n +0000001025 00000 n +0000000890 00000 n +0000000654 00000 n +0000063566 00000 n +0000007484 00000 n +0000007575 00000 n +0000001660 00000 n +0000001525 00000 n +0000001124 00000 n +0000022865 00000 n +0000002129 00000 n +0000001994 00000 n +0000001759 00000 n +0000007704 00000 n +0000007795 00000 n +0000007967 00000 n +0000008088 00000 n +0000008180 00000 n +0000003115 00000 n +0000002980 00000 n +0000002228 00000 n +0000003823 00000 n +0000003688 00000 n +0000003226 00000 n +0000008309 00000 n +0000008400 00000 n +0000008529 00000 n +0000008611 00000 n +0000008807 00000 n +0000009046 00000 n +0000004929 00000 n +0000004794 00000 n +0000003934 00000 n +0000005165 00000 n +0000005345 00000 n +0000005723 00000 n +0000006539 00000 n +0000021208 00000 n +0000021903 00000 n +0000021240 00000 n +0000021313 00000 n +0000022139 00000 n +0000023019 00000 n +0000023219 00000 n +0000023364 00000 n +0000023573 00000 n +0000033995 00000 n +0000023790 00000 n +0000046800 00000 n +0000034268 00000 n +0000057620 00000 n +0000047075 00000 n +0000057887 00000 n +0000059835 00000 n +0000061777 00000 n +0000063828 00000 n +0000063943 00000 n trailer -<< /Size 82 /Root 80 0 R /Info 81 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 80 /Root 78 0 R /Info 79 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -64058 +64075 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-2.tpf b/required/latex-lab/testfiles-sec/test-book-2.tpf index 4c761678b..410d074a4 100644 --- a/required/latex-lab/testfiles-sec/test-book-2.tpf +++ b/required/latex-lab/testfiles-sec/test-book-2.tpf @@ -1,14 +1,14 @@ %PDF-1.7 %ÐÔÅØ -19 0 obj +18 0 obj << -/Length 260 +/Length 263 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(A)]TJ ET @@ -25,24 +25,24 @@ ET EMC endstream endobj -15 0 obj +14 0 obj << /Type /Page -/Contents 19 0 R -/Resources 18 0 R +/Contents 18 0 R +/Resources 17 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 22 0 R +/Parent 21 0 R >> endobj -18 0 obj +17 0 obj << /ExtGState 1 0 R -/Font << /F48 20 0 R /F45 21 0 R >> +/Font << /F48 19 0 R /F45 20 0 R >> /ProcSet [ /PDF /Text ] >> endobj -25 0 obj +24 0 obj << /Length 166 >> @@ -57,24 +57,24 @@ EMC EMC endstream endobj -24 0 obj +23 0 obj << /Type /Page -/Contents 25 0 R -/Resources 23 0 R +/Contents 24 0 R +/Resources 22 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 22 0 R +/Parent 21 0 R >> endobj -23 0 obj +22 0 obj << /ExtGState 1 0 R -/Font << /F45 21 0 R /F49 26 0 R /F50 27 0 R >> +/Font << /F45 20 0 R /F49 25 0 R /F50 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj -32 0 obj +31 0 obj << /Length 235 >> @@ -94,24 +94,24 @@ EMC EMC endstream endobj -30 0 obj +29 0 obj << /Type /Page -/Contents 32 0 R -/Resources 31 0 R +/Contents 31 0 R +/Resources 30 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 22 0 R +/Parent 21 0 R >> endobj -31 0 obj +30 0 obj << /ExtGState 1 0 R -/Font << /F45 21 0 R /F50 27 0 R >> +/Font << /F45 20 0 R /F50 26 0 R >> /ProcSet [ /PDF /Text ] >> endobj -35 0 obj +34 0 obj << /Length 151 >> @@ -126,42 +126,47 @@ EMC EMC endstream endobj -34 0 obj +33 0 obj << /Type /Page -/Contents 35 0 R -/Resources 33 0 R +/Contents 34 0 R +/Resources 32 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 22 0 R +/Parent 21 0 R >> endobj -33 0 obj +32 0 obj << /ExtGState 1 0 R -/Font << /F45 21 0 R /F50 27 0 R /F49 26 0 R >> +/Font << /F45 20 0 R /F50 26 0 R /F49 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj -44 0 obj +42 0 obj << -/Length 448 +/Length 512 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(B)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET @@ -173,24 +178,24 @@ ET EMC endstream endobj -39 0 obj +37 0 obj << /Type /Page -/Contents 44 0 R -/Resources 43 0 R +/Contents 42 0 R +/Resources 41 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 22 0 R +/Parent 21 0 R >> endobj -43 0 obj +41 0 obj << /ExtGState 1 0 R -/Font << /F47 45 0 R /F50 27 0 R /F48 20 0 R /F45 21 0 R >> +/Font << /F47 43 0 R /F50 26 0 R /F48 19 0 R /F45 20 0 R >> /ProcSet [ /PDF /Text ] >> endobj -48 0 obj +46 0 obj << /Length 264 >> @@ -205,24 +210,24 @@ EMC EMC endstream endobj -47 0 obj +45 0 obj << /Type /Page -/Contents 48 0 R -/Resources 46 0 R +/Contents 46 0 R +/Resources 44 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 22 0 R +/Parent 21 0 R >> endobj -46 0 obj +44 0 obj << /ExtGState 1 0 R -/Font << /F45 21 0 R /F50 27 0 R /F49 26 0 R >> +/Font << /F45 20 0 R /F50 26 0 R /F49 25 0 R >> /ProcSet [ /PDF /Text ] >> endobj -55 0 obj +53 0 obj << /Type /Metadata /Subtype /XML /Length 12070 @@ -465,9 +470,9 @@ stream endstream endobj -57 0 obj +55 0 obj << -/Length 525 +/Length 603 >> stream /opacity1 gs @@ -481,13 +486,18 @@ BT /F45 9.9626 Tf 121.813 658.164 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F52 14.3462 Tf 106.869 625.222 Td [(1.1)]TJ ET EMC /section <> BDC BT +/F50 9.9626 Tf 142.806 625.222 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F52 14.3462 Tf 142.806 625.222 Td [(section)]TJ ET EMC @@ -495,20 +505,20 @@ EMC EMC endstream endobj -51 0 obj +49 0 obj << /Type /Page -/Contents 57 0 R -/Resources 56 0 R +/Contents 55 0 R +/Resources 54 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 59 0 R +/Parent 57 0 R >> endobj -56 0 obj +54 0 obj << /ExtGState 1 0 R -/Font << /F49 26 0 R /F50 27 0 R /F45 21 0 R /F52 58 0 R >> +/Font << /F49 25 0 R /F50 26 0 R /F45 20 0 R /F52 56 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -524,38 +534,37 @@ endobj 4 0 obj << >> endobj -60 0 obj +58 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 17 0 R ] +<< /Nums [0 [ 13 0 R 16 0 R ] 1 [ ] -2 [ 29 0 R ] +2 [ 28 0 R ] 3 [ ] -4 [ 38 0 R 40 0 R 42 0 R ] +4 [ 36 0 R 38 0 R 36 0 R 40 0 R ] 5 [ ] -6 [ 50 0 R 54 0 R 53 0 R ] +6 [ 48 0 R 52 0 R 51 0 R 51 0 R ] ] >> endobj -61 0 obj -<< /Limits [(ID.002) (ID.022)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 28 0 R (ID.011) 29 0 R (ID.012) 36 0 R (ID.013) 37 0 R (ID.014) 38 0 R (ID.015) 40 0 R (ID.016) 41 0 R (ID.017) 42 0 R (ID.018) 49 0 R (ID.019) 50 0 R (ID.020) 52 0 R (ID.021) 53 0 R (ID.022) 54 0 R ] >> +59 0 obj +<< /Limits [(ID.002) (ID.020)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 15 0 R (ID.008) 16 0 R (ID.009) 27 0 R (ID.010) 28 0 R (ID.011) 35 0 R (ID.012) 36 0 R (ID.013) 38 0 R (ID.014) 39 0 R (ID.015) 40 0 R (ID.016) 47 0 R (ID.017) 48 0 R (ID.018) 50 0 R (ID.019) 51 0 R (ID.020) 52 0 R ] >> endobj -62 0 obj -<< /Kids [61 0 R] >> +60 0 obj +<< /Kids [59 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -63 0 obj -<< /raggedright <> -/justify <> +61 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 28 0 R 36 0 R 49 0 R 52 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 27 0 R 35 0 R 47 0 R 50 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -564,81 +573,75 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.004) >> endobj 12 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 16 0 R] /ID (ID.005) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 15 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /chapter /P 12 0 R /K 14 0 R /ID (ID.006) >> +<< /Type /StructElem /T /S /chapter /P 12 0 R /K <> /ID (ID.006) >> endobj -14 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 13 0 R /K <> /ID (ID.007) >> +15 0 obj +<< /Type /StructElem /S /semantic-para /P 12 0 R /K 16 0 R /ID (ID.007) >> endobj 16 0 obj -<< /Type /StructElem /S /semantic-para /P 12 0 R /K 17 0 R /ID (ID.008) >> +<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.008) >> endobj -17 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.009) >> +27 0 obj +<< /Type /StructElem /S /semantic-para /P 9 0 R /K 28 0 R /ID (ID.009) >> endobj 28 0 obj -<< /Type /StructElem /S /semantic-para /P 9 0 R /K 29 0 R /ID (ID.010) >> +<< /Type /StructElem /C /justify /S /text-block /P 27 0 R /K <> /ID (ID.010) >> endobj -29 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 28 0 R /K <> /ID (ID.011) >> +35 0 obj +<< /Type /StructElem /S /Sect /P 9 0 R /K [36 0 R 39 0 R] /ID (ID.011) >> endobj 36 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [37 0 R 41 0 R] /ID (ID.012) >> -endobj -37 0 obj -<< /Type /StructElem /T /S /chapter /P 36 0 R /K [38 0 R 40 0 R] /ID (ID.013) >> +<< /Type /StructElem /T /S /chapter /P 35 0 R /K [<> 38 0 R <>] /ID (ID.012) >> endobj 38 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 37 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /S /heading-number /P 36 0 R /K <> /ID (ID.013) >> endobj -40 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 37 0 R /K <> /ID (ID.015) >> +39 0 obj +<< /Type /StructElem /S /semantic-para /P 35 0 R /K 40 0 R /ID (ID.014) >> endobj -41 0 obj -<< /Type /StructElem /S /semantic-para /P 36 0 R /K 42 0 R /ID (ID.016) >> +40 0 obj +<< /Type /StructElem /C /justify /S /text-block /P 39 0 R /K <> /ID (ID.015) >> endobj -42 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 41 0 R /K <> /ID (ID.017) >> +47 0 obj +<< /Type /StructElem /S /semantic-para /P 9 0 R /K 48 0 R /ID (ID.016) >> endobj -49 0 obj -<< /Type /StructElem /S /semantic-para /P 9 0 R /K 50 0 R /ID (ID.018) >> +48 0 obj +<< /Type /StructElem /C /justify /S /text-block /P 47 0 R /K <> /ID (ID.017) >> endobj 50 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 49 0 R /K <> /ID (ID.019) >> -endobj -52 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K 53 0 R /ID (ID.020) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K 51 0 R /ID (ID.018) >> endobj -53 0 obj -<< /Type /StructElem /T /S /section /P 52 0 R /K [54 0 R <>] /ID (ID.021) >> +51 0 obj +<< /Type /StructElem /T /S /section /P 50 0 R /K [52 0 R <> <>] /ID (ID.019) >> endobj -54 0 obj -<< /Type /StructElem /S /section-number /P 53 0 R /K <> /ID (ID.022) >> +52 0 obj +<< /Type /StructElem /S /heading-number /P 51 0 R /K <> /ID (ID.020) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 62 0 R /ClassMap 63 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 60 0 R /ClassMap 61 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -65 0 obj +63 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -66 0 obj +64 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -67 0 obj +65 0 obj [333] endobj -68 0 obj +66 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -69 0 obj +67 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj -70 0 obj +68 0 obj [789.9 744] endobj -71 0 obj +69 0 obj << /Length1 1144 /Length2 1422 @@ -647,7 +650,7 @@ endobj >> [BINARY STREAM] endobj -72 0 obj +70 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -660,10 +663,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 71 0 R +/FontFile 69 0 R >> endobj -73 0 obj +71 0 obj << /Length1 727 /Length2 9738 @@ -672,7 +675,7 @@ endobj >> [BINARY STREAM] endobj -74 0 obj +72 0 obj << /Type /FontDescriptor /FontName /TFNKMQ+SFBX1440 @@ -685,10 +688,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/c/e/i/n/o/one/period/s/t) -/FontFile 73 0 R +/FontFile 71 0 R >> endobj -75 0 obj +73 0 obj << /Length1 727 /Length2 9724 @@ -697,7 +700,7 @@ endobj >> [BINARY STREAM] endobj -76 0 obj +74 0 obj << /Type /FontDescriptor /FontName /LYNCJF+SFBX2074 @@ -710,10 +713,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/h/one/p/r/t) -/FontFile 75 0 R +/FontFile 73 0 R >> endobj -77 0 obj +75 0 obj << /Length1 727 /Length2 1503 @@ -722,7 +725,7 @@ endobj >> [BINARY STREAM] endobj -78 0 obj +76 0 obj << /Type /FontDescriptor /FontName /GYACJK+SFBX2488 @@ -735,10 +738,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/A/B) -/FontFile 77 0 R +/FontFile 75 0 R >> endobj -79 0 obj +77 0 obj << /Length1 721 /Length2 11266 @@ -747,7 +750,7 @@ endobj >> [BINARY STREAM] endobj -80 0 obj +78 0 obj << /Type /FontDescriptor /FontName /XLQZEX+SFRM1000 @@ -760,10 +763,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/b/c/e/five/four/i/m/o/one/s/t/three/two/x) -/FontFile 79 0 R +/FontFile 77 0 R >> endobj -81 0 obj +79 0 obj << /Length1 727 /Length2 5470 @@ -772,7 +775,7 @@ endobj >> [BINARY STREAM] endobj -82 0 obj +80 0 obj << /Type /FontDescriptor /FontName /KUSFJX+SFSL1000 @@ -785,16 +788,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/C/E/H/I/N/O/P/R/S/T/one/period) -/FontFile 81 0 R +/FontFile 79 0 R >> endobj -64 0 obj +62 0 obj << /Type /Encoding /Differences [46/period 49/one/two/three/four/five 65/A/B/C 69/E 72/H/I 78/N/O/P 82/R/S/T 97/a/b/c 101/e 104/h/i 109/m/n/o/p 114/r/s/t 120/x] >> endobj -83 0 obj +81 0 obj << /Length 2030 >> @@ -938,20 +941,20 @@ end %%EOF endstream endobj -58 0 obj +56 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TFNKMQ+SFBX1440 -/FontDescriptor 74 0 R +/FontDescriptor 72 0 R /FirstChar 46 /LastChar 116 -/Widths 65 0 R -/Encoding 64 0 R -/ToUnicode 83 0 R +/Widths 63 0 R +/Encoding 62 0 R +/ToUnicode 81 0 R >> endobj -84 0 obj +82 0 obj << /Length 2030 >> @@ -1095,20 +1098,20 @@ end %%EOF endstream endobj -45 0 obj +43 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LYNCJF+SFBX2074 -/FontDescriptor 76 0 R +/FontDescriptor 74 0 R /FirstChar 49 /LastChar 116 -/Widths 66 0 R -/Encoding 64 0 R -/ToUnicode 84 0 R +/Widths 64 0 R +/Encoding 62 0 R +/ToUnicode 82 0 R >> endobj -85 0 obj +83 0 obj << /Length 2030 >> @@ -1252,20 +1255,20 @@ end %%EOF endstream endobj -20 0 obj +19 0 obj << /Type /Font /Subtype /Type1 /BaseFont /GYACJK+SFBX2488 -/FontDescriptor 78 0 R +/FontDescriptor 76 0 R /FirstChar 65 /LastChar 66 -/Widths 70 0 R -/Encoding 64 0 R -/ToUnicode 85 0 R +/Widths 68 0 R +/Encoding 62 0 R +/ToUnicode 83 0 R >> endobj -86 0 obj +84 0 obj << /Length 2030 >> @@ -1409,20 +1412,20 @@ end %%EOF endstream endobj -21 0 obj +20 0 obj << /Type /Font /Subtype /Type1 /BaseFont /XLQZEX+SFRM1000 -/FontDescriptor 80 0 R +/FontDescriptor 78 0 R /FirstChar 49 /LastChar 120 -/Widths 69 0 R -/Encoding 64 0 R -/ToUnicode 86 0 R +/Widths 67 0 R +/Encoding 62 0 R +/ToUnicode 84 0 R >> endobj -87 0 obj +85 0 obj << /Length 2030 >> @@ -1566,20 +1569,20 @@ end %%EOF endstream endobj -26 0 obj +25 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KUSFJX+SFSL1000 -/FontDescriptor 82 0 R +/FontDescriptor 80 0 R /FirstChar 46 /LastChar 84 -/Widths 68 0 R -/Encoding 64 0 R -/ToUnicode 87 0 R +/Widths 66 0 R +/Encoding 62 0 R +/ToUnicode 85 0 R >> endobj -88 0 obj +86 0 obj << /Length 654 >> @@ -1617,153 +1620,151 @@ end %%EOF endstream endobj -27 0 obj +26 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 72 0 R +/FontDescriptor 70 0 R /FirstChar 32 /LastChar 32 -/Widths 67 0 R -/ToUnicode 88 0 R +/Widths 65 0 R +/ToUnicode 86 0 R >> endobj -22 0 obj +21 0 obj << /Type /Pages /Count 6 -/Parent 89 0 R -/Kids [15 0 R 24 0 R 30 0 R 34 0 R 39 0 R 47 0 R] +/Parent 87 0 R +/Kids [14 0 R 23 0 R 29 0 R 33 0 R 37 0 R 45 0 R] >> endobj -59 0 obj +57 0 obj << /Type /Pages /Count 1 -/Parent 89 0 R -/Kids [51 0 R] +/Parent 87 0 R +/Kids [49 0 R] >> endobj -89 0 obj +87 0 obj << /Type /Pages /Count 7 -/Kids [22 0 R 59 0 R] +/Kids [21 0 R 57 0 R] >> endobj -90 0 obj +88 0 obj << /Type /Catalog -/Pages 89 0 R -/MarkInfo 60 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 55 0 R +/Pages 87 0 R +/MarkInfo 58 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 53 0 R >> endobj -91 0 obj +89 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 92 +0 90 0000000008 65535 f -0000016365 00000 n -0000016412 00000 n -0000016434 00000 n -0000016456 00000 n -0000020224 00000 n -0000016514 00000 n -0000017080 00000 n +0000016510 00000 n +0000016557 00000 n +0000016579 00000 n +0000016601 00000 n +0000020277 00000 n +0000016659 00000 n +0000017207 00000 n 0000000000 00000 f -0000017957 00000 n -0000018072 00000 n 0000018148 00000 n -0000018224 00000 n -0000018315 00000 n +0000018263 00000 n +0000018339 00000 n 0000018415 00000 n -0000000334 00000 n -0000018540 00000 n +0000018506 00000 n +0000000337 00000 n 0000018632 00000 n -0000000469 00000 n +0000018724 00000 n +0000000472 00000 n 0000000015 00000 n -0000074642 00000 n -0000076908 00000 n -0000080229 00000 n -0000000929 00000 n -0000000794 00000 n -0000000569 00000 n -0000079175 00000 n -0000080065 00000 n -0000018759 00000 n -0000018850 00000 n -0000001335 00000 n -0000001470 00000 n -0000001041 00000 n -0000001915 00000 n -0000001780 00000 n -0000001570 00000 n -0000018977 00000 n -0000019068 00000 n -0000019177 00000 n -0000002534 00000 n -0000019302 00000 n -0000019427 00000 n -0000019519 00000 n -0000002669 00000 n -0000002027 00000 n -0000072375 00000 n -0000003251 00000 n -0000003116 00000 n -0000002793 00000 n -0000019646 00000 n -0000019737 00000 n -0000016106 00000 n -0000019864 00000 n -0000019946 00000 n -0000020105 00000 n -0000003363 00000 n -0000016241 00000 n -0000015522 00000 n -0000070108 00000 n -0000080338 00000 n -0000016478 00000 n -0000016649 00000 n -0000017043 00000 n -0000017752 00000 n -0000067839 00000 n -0000020342 00000 n -0000020764 00000 n -0000021184 00000 n -0000021206 00000 n -0000021452 00000 n -0000021891 00000 n -0000021919 00000 n -0000024583 00000 n -0000024801 00000 n -0000035363 00000 n -0000035607 00000 n -0000046155 00000 n -0000046392 00000 n -0000048719 00000 n -0000048942 00000 n -0000061027 00000 n -0000061290 00000 n -0000067584 00000 n -0000068019 00000 n -0000070286 00000 n -0000072553 00000 n -0000074819 00000 n -0000077086 00000 n -0000079352 00000 n -0000080412 00000 n -0000080478 00000 n -0000080593 00000 n +0000074695 00000 n +0000076961 00000 n +0000080282 00000 n +0000000932 00000 n +0000000797 00000 n +0000000572 00000 n +0000079228 00000 n +0000080118 00000 n +0000018851 00000 n +0000018942 00000 n +0000001338 00000 n +0000001473 00000 n +0000001044 00000 n +0000001918 00000 n +0000001783 00000 n +0000001573 00000 n +0000019069 00000 n +0000019160 00000 n +0000002601 00000 n +0000019328 00000 n +0000019447 00000 n +0000019539 00000 n +0000002736 00000 n +0000002030 00000 n +0000072428 00000 n +0000003318 00000 n +0000003183 00000 n +0000002860 00000 n +0000019666 00000 n +0000019757 00000 n +0000016251 00000 n +0000019884 00000 n +0000019966 00000 n +0000020158 00000 n +0000003430 00000 n +0000016386 00000 n +0000015589 00000 n +0000070161 00000 n +0000080391 00000 n +0000016623 00000 n +0000016808 00000 n +0000017170 00000 n +0000017986 00000 n +0000067892 00000 n +0000020395 00000 n +0000020817 00000 n +0000021237 00000 n +0000021259 00000 n +0000021505 00000 n +0000021944 00000 n +0000021972 00000 n +0000024636 00000 n +0000024854 00000 n +0000035416 00000 n +0000035660 00000 n +0000046208 00000 n +0000046445 00000 n +0000048772 00000 n +0000048995 00000 n +0000061080 00000 n +0000061343 00000 n +0000067637 00000 n +0000068072 00000 n +0000070339 00000 n +0000072606 00000 n +0000074872 00000 n +0000077139 00000 n +0000079405 00000 n +0000080465 00000 n +0000080531 00000 n +0000080646 00000 n trailer -<< /Size 92 -/Root 90 0 R -/Info 91 0 R +<< /Size 90 +/Root 88 0 R +/Info 89 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -80725 +80778 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-3.luatex.tpf b/required/latex-lab/testfiles-sec/test-book-3.luatex.tpf index 23acc1fc8..1e57d2050 100644 --- a/required/latex-lab/testfiles-sec/test-book-3.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-book-3.luatex.tpf @@ -1,12 +1,12 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ -41 0 obj -<< /Length 1162 >> +40 0 obj +<< /Length 1165 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Con)31(ten)31(ts)]TJ @@ -86,13 +86,13 @@ EMC EMC endstream endobj -40 0 obj -<< /Type /Page /Contents 41 0 R /Resources 39 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 45 0 R >> -endobj 39 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F17 43 0 R /F16 44 0 R >> >> +<< /Type /Page /Contents 40 0 R /Resources 38 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 44 0 R >> endobj -48 0 obj +38 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F17 42 0 R /F16 43 0 R >> >> +endobj +47 0 obj << /Length 182 >> stream /opacity1 gs @@ -110,19 +110,19 @@ EMC EMC endstream endobj -47 0 obj -<< /Type /Page /Contents 48 0 R /Resources 46 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 45 0 R >> -endobj 46 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R >> >> +<< /Type /Page /Contents 47 0 R /Resources 45 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 44 0 R >> endobj -55 0 obj -<< /Length 238 >> +45 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R >> >> +endobj +53 0 obj +<< /Length 241 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(fron)31(tnormal)]TJ @@ -140,13 +140,13 @@ EMC EMC endstream endobj -54 0 obj -<< /Type /Page /Contents 55 0 R /Resources 53 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 45 0 R >> +52 0 obj +<< /Type /Page /Contents 53 0 R /Resources 51 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 44 0 R >> endobj -53 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F16 44 0 R >> >> +51 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F16 43 0 R >> >> endobj -58 0 obj +56 0 obj << /Length 190 >> stream /opacity1 gs @@ -164,19 +164,19 @@ EMC EMC endstream endobj -57 0 obj -<< /Type /Page /Contents 58 0 R /Resources 56 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 45 0 R >> +55 0 obj +<< /Type /Page /Contents 56 0 R /Resources 54 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 44 0 R >> endobj -56 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R >> >> +54 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R >> >> endobj -64 0 obj -<< /Length 244 >> +61 0 obj +<< /Length 247 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(fron)31(tshorttitle)]TJ @@ -194,13 +194,13 @@ EMC EMC endstream endobj -63 0 obj -<< /Type /Page /Contents 64 0 R /Resources 62 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 45 0 R >> +60 0 obj +<< /Type /Page /Contents 61 0 R /Resources 59 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 44 0 R >> endobj -62 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F16 44 0 R >> >> +59 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F16 43 0 R >> >> endobj -67 0 obj +64 0 obj << /Length 193 >> stream /opacity1 gs @@ -218,19 +218,19 @@ EMC EMC endstream endobj -66 0 obj -<< /Type /Page /Contents 67 0 R /Resources 65 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 45 0 R >> +63 0 obj +<< /Type /Page /Contents 64 0 R /Resources 62 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 44 0 R >> endobj -65 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R >> >> +62 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R >> >> endobj -73 0 obj -<< /Length 239 >> +69 0 obj +<< /Length 242 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(fron)31(tstarred)]TJ @@ -248,13 +248,13 @@ EMC EMC endstream endobj -72 0 obj -<< /Type /Page /Contents 73 0 R /Resources 71 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 45 0 R >> +68 0 obj +<< /Type /Page /Contents 69 0 R /Resources 67 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 44 0 R >> endobj -71 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F16 44 0 R >> >> +67 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F16 43 0 R >> >> endobj -76 0 obj +72 0 obj << /Length 193 >> stream /opacity1 gs @@ -272,29 +272,33 @@ EMC EMC endstream endobj -75 0 obj -<< /Type /Page /Contents 76 0 R /Resources 74 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 45 0 R >> +71 0 obj +<< /Type /Page /Contents 72 0 R /Resources 70 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 44 0 R >> endobj -74 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R >> >> +70 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R >> >> endobj -83 0 obj -<< /Length 428 >> +78 0 obj +<< /Length 485 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(mainnormal)]TJ @@ -312,13 +316,13 @@ EMC EMC endstream endobj -82 0 obj -<< /Type /Page /Contents 83 0 R /Resources 81 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 45 0 R >> +77 0 obj +<< /Type /Page /Contents 78 0 R /Resources 76 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 44 0 R >> endobj -81 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F15 84 0 R /F16 44 0 R >> >> +76 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F15 79 0 R /F16 43 0 R >> >> endobj -87 0 obj +82 0 obj << /Length 410 >> stream /opacity1 gs @@ -344,29 +348,33 @@ EMC EMC endstream endobj -86 0 obj -<< /Type /Page /Contents 87 0 R /Resources 85 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 45 0 R >> +81 0 obj +<< /Type /Page /Contents 82 0 R /Resources 80 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 44 0 R >> endobj -85 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R /F15 84 0 R >> >> +80 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R /F15 79 0 R >> >> endobj -94 0 obj -<< /Length 432 >> +88 0 obj +<< /Length 489 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(2)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(mainshorttitle)]TJ @@ -384,13 +392,13 @@ EMC EMC endstream endobj -93 0 obj -<< /Type /Page /Contents 94 0 R /Resources 92 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 95 0 R >> +87 0 obj +<< /Type /Page /Contents 88 0 R /Resources 86 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 89 0 R >> endobj -92 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F15 84 0 R /F16 44 0 R >> >> +86 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F15 79 0 R /F16 43 0 R >> >> endobj -98 0 obj +92 0 obj << /Length 413 >> stream /opacity1 gs @@ -416,19 +424,19 @@ EMC EMC endstream endobj -97 0 obj -<< /Type /Page /Contents 98 0 R /Resources 96 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 95 0 R >> +91 0 obj +<< /Type /Page /Contents 92 0 R /Resources 90 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 89 0 R >> endobj -96 0 obj -<< /ExtGState 1 0 R /Font << /F16 44 0 R /F20 49 0 R /F15 84 0 R >> >> +90 0 obj +<< /ExtGState 1 0 R /Font << /F16 43 0 R /F20 48 0 R /F15 79 0 R >> >> endobj -107 0 obj -<< /Length 342 >> +100 0 obj +<< /Length 345 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(mainstarred)]TJ @@ -454,11 +462,11 @@ EMC EMC endstream endobj -106 0 obj -<< /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 95 0 R >> +99 0 obj +<< /Type /Page /Contents 100 0 R /Resources 98 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 89 0 R >> endobj -105 0 obj -<< /ExtGState 1 0 R /Font << /F19 42 0 R /F16 44 0 R >> >> +98 0 obj +<< /ExtGState 1 0 R /Font << /F19 41 0 R /F16 43 0 R >> >> endobj 1 0 obj << /opacity1 <> >> @@ -472,37 +480,36 @@ endobj 4 0 obj << >> endobj -108 0 obj +101 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 27 0 R 30 0 R 30 0 R 32 0 R 32 0 R 35 0 R 34 0 R 34 0 R 38 0 R 37 0 R 37 0 R] +<< /Nums [0 [ 26 0 R 29 0 R 29 0 R 31 0 R 31 0 R 34 0 R 33 0 R 33 0 R 37 0 R 36 0 R 36 0 R] 1 [] -2 [52 0 R] +2 [50 0 R] 3 [] -4 [61 0 R] +4 [58 0 R] 5 [] -6 [70 0 R] +6 [66 0 R] 7 [] -8 [ 79 0 R 80 0 R] +8 [ 74 0 R 75 0 R 74 0 R] 9 [] -10 [ 90 0 R 91 0 R] +10 [ 84 0 R 85 0 R 84 0 R] 11 [] -12 [ 101 0 R 103 0 R] +12 [ 94 0 R 96 0 R] ] >> endobj -109 0 obj -<< /Limits [(ID.002) (ID.041)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 26 0 R (ID.008) 27 0 R (ID.009) 28 0 R (ID.010) 29 0 R (ID.011) 30 0 R (ID.012) 31 0 R (ID.013) 32 0 R (ID.014) 33 0 R (ID.015) 34 0 R (ID.016) 35 0 R (ID.017) 36 0 R (ID.018) 37 0 R (ID.019) 38 0 R (ID.020) 50 0 R (ID.021) 51 0 R (ID.022) 52 0 R (ID.023) 59 0 R (ID.024) 60 0 R (ID.025) 61 0 R (ID.026) 68 0 R (ID.027) 69 0 R (ID.028) 70 0 R (ID.029) 77 0 R (ID.030) 78 0 R (ID.031) 79 0 R (ID.032) 80 0 R (ID.033) 88 0 R (ID.034) 89 0 R (ID.035) 90 0 R (ID.036) 91 0 R (ID.037) 99 0 R (ID.038) 100 0 R (ID.039) 101 0 R (ID.040) 102 0 R (ID.041) 103 0 R ] >> +102 0 obj +<< /Limits [(ID.002) (ID.034)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 26 0 R (ID.008) 27 0 R (ID.009) 28 0 R (ID.010) 29 0 R (ID.011) 30 0 R (ID.012) 31 0 R (ID.013) 32 0 R (ID.014) 33 0 R (ID.015) 34 0 R (ID.016) 35 0 R (ID.017) 36 0 R (ID.018) 37 0 R (ID.019) 49 0 R (ID.020) 50 0 R (ID.021) 57 0 R (ID.022) 58 0 R (ID.023) 65 0 R (ID.024) 66 0 R (ID.025) 73 0 R (ID.026) 74 0 R (ID.027) 75 0 R (ID.028) 83 0 R (ID.029) 84 0 R (ID.030) 85 0 R (ID.031) 93 0 R (ID.032) 94 0 R (ID.033) 95 0 R (ID.034) 96 0 R ] >> endobj -110 0 obj -<< /Kids [109 0 R] >> +103 0 obj +<< /Kids [102 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -111 0 obj -<< /raggedright <> -/justify <> +104 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -518,7 +525,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -536,7 +543,7 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 50 0 R 59 0 R 68 0 R 77 0 R 88 0 R 99 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 49 0 R 57 0 R 65 0 R 73 0 R 83 0 R 93 0 R] /ID (ID.002) >> endobj 22 0 obj << /Type /StructElem /S /Artifact /NS 11 0 R /P 21 0 R /ID (ID.003) >> @@ -548,117 +555,96 @@ endobj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 28 0 R] /ID (ID.006) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 27 0 R] /ID (ID.006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K 27 0 R /ID (ID.007) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K <> /ID (ID.007) >> endobj 27 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 26 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 30 0 R 32 0 R 35 0 R] /ID (ID.008) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [29 0 R 31 0 R 33 0 R 36 0 R] /ID (ID.009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 50 0 R ] /K 29 0 R /ID (ID.009) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 51 0 R ] /K 30 0 R /ID (ID.010) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> <> ] /ID (ID.010) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [<> <> ] /ID (ID.011) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 58 0 R ] /K 31 0 R /ID (ID.011) >> endobj 31 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 60 0 R ] /K 32 0 R /ID (ID.012) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 30 0 R /K [<> <> ] /ID (ID.012) >> endobj 32 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <> ] /ID (ID.013) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 74 0 R ] /K 33 0 R /ID (ID.013) >> endobj 33 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 78 0 R ] /K 34 0 R /ID (ID.014) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [ 34 0 R <> <> ] /ID (ID.014) >> endobj 34 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 33 0 R /K [ 35 0 R <> <> ] /ID (ID.015) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 33 0 R /K <> /ID (ID.015) >> endobj 35 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 34 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 84 0 R ] /K 36 0 R /ID (ID.016) >> endobj 36 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 89 0 R ] /K 37 0 R /ID (ID.017) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [ 37 0 R <> <> ] /ID (ID.017) >> endobj 37 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 36 0 R /K [ 38 0 R <> <> ] /ID (ID.018) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.018) >> endobj -38 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 37 0 R /K <> /ID (ID.019) >> +49 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 50 0 R /ID (ID.019) >> endobj 50 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 51 0 R /ID (ID.020) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 49 0 R /K <> /ID (ID.020) >> endobj -51 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 50 0 R /K 52 0 R /ID (ID.021) >> -endobj -52 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 51 0 R /K <> /ID (ID.022) >> -endobj -59 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 60 0 R /ID (ID.023) >> -endobj -60 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 59 0 R /K 61 0 R /ID (ID.024) >> -endobj -61 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 60 0 R /K <> /ID (ID.025) >> -endobj -68 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 69 0 R /ID (ID.026) >> -endobj -69 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 68 0 R /K 70 0 R /ID (ID.027) >> -endobj -70 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 69 0 R /K <> /ID (ID.028) >> +57 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 58 0 R /ID (ID.021) >> endobj -77 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 78 0 R /ID (ID.029) >> +58 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 57 0 R /K <> /ID (ID.022) >> endobj -78 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 77 0 R /K [79 0 R 80 0 R] /ID (ID.030) >> +65 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 66 0 R /ID (ID.023) >> endobj -79 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 78 0 R /K <> /ID (ID.031) >> +66 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 65 0 R /K <> /ID (ID.024) >> endobj -80 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 78 0 R /K <> /ID (ID.032) >> +73 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 74 0 R /ID (ID.025) >> endobj -88 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 89 0 R /ID (ID.033) >> +74 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 73 0 R /K [<> 75 0 R <> ] /ID (ID.026) >> endobj -89 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 88 0 R /K [90 0 R 91 0 R] /ID (ID.034) >> +75 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 74 0 R /K <> /ID (ID.027) >> endobj -90 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 89 0 R /K <> /ID (ID.035) >> +83 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 84 0 R /ID (ID.028) >> endobj -91 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 89 0 R /K <> /ID (ID.036) >> +84 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 83 0 R /K [<> 85 0 R <> ] /ID (ID.029) >> endobj -99 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [100 0 R 102 0 R] /ID (ID.037) >> +85 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 84 0 R /K <> /ID (ID.030) >> endobj -100 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 99 0 R /K 101 0 R /ID (ID.038) >> +93 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [94 0 R 95 0 R] /ID (ID.031) >> endobj -101 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 100 0 R /K <> /ID (ID.039) >> +94 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 93 0 R /K <> /ID (ID.032) >> endobj -102 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 99 0 R /K 103 0 R /ID (ID.040) >> +95 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 93 0 R /K 96 0 R /ID (ID.033) >> endobj -103 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 102 0 R /K <> /ID (ID.041) >> +96 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 95 0 R /K <> /ID (ID.034) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 110 0 R /ClassMap 111 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 103 0 R /ClassMap 104 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -104 0 obj +97 0 obj << /Type /Metadata /Subtype /XML /Length 12073 >> stream @@ -898,17 +884,17 @@ stream endstream endobj -112 0 obj +105 0 obj [ 103 [ 333 ] ] endobj -114 0 obj +107 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -113 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 114 0 R >> +106 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 107 0 R >> endobj -115 0 obj +108 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -942,53 +928,53 @@ end %%EOF endstream endobj -84 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 116 0 R ] /ToUnicode 115 0 R >> +79 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 109 0 R ] /ToUnicode 108 0 R >> endobj -116 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 113 0 R /W 112 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +109 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 106 0 R /W 105 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -117 0 obj +110 0 obj [277.8 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 0 722.2 0 680.6 652.8 0 750 361.1 0 0 625 916.7 750 777.8 680.6 0 736.1 555.6 722.2 ] endobj -118 0 obj +111 0 obj [500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 277.8 0 0 0 0 0 0 0 0 0 0 0 0 527.8 ] endobj -119 0 obj +112 0 obj [575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 559 0 0 0 0 351.4 0 638.9 319.4 0 0 319.4 958.3 638.9 575 0 0 473.6 453.6 447.2 ] endobj -120 0 obj +113 0 obj [562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 812.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 0 0 625 513.3 343.7 0 625 312.5 0 0 312.5 937.5 625 562.5 625 0 459.5 443.8 437.5 ] endobj -122 0 obj +115 0 obj << /Length1 1591 /Length2 10087 /Length3 0 /Length 11678 >> [BINARY STREAM] endobj -121 0 obj -<< /Type /FontDescriptor /FontName /RLYTET+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 122 0 R >> +114 0 obj +<< /Type /FontDescriptor /FontName /RLYTET+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 115 0 R >> endobj -124 0 obj +117 0 obj << /Length1 1632 /Length2 8540 /Length3 0 /Length 10172 >> [BINARY STREAM] endobj -123 0 obj -<< /Type /FontDescriptor /FontName /UNVZHF+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 124 0 R >> +116 0 obj +<< /Type /FontDescriptor /FontName /UNVZHF+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 117 0 R >> endobj -126 0 obj +119 0 obj << /Length1 1499 /Length2 9211 /Length3 0 /Length 10710 >> [BINARY STREAM] endobj -125 0 obj -<< /Type /FontDescriptor /FontName /SETXHT+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 126 0 R >> +118 0 obj +<< /Type /FontDescriptor /FontName /SETXHT+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 119 0 R >> endobj -128 0 obj +121 0 obj << /Length1 1630 /Length2 9507 /Length3 0 /Length 11137 >> [BINARY STREAM] endobj -127 0 obj -<< /Type /FontDescriptor /FontName /CMZOXP+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 128 0 R >> +120 0 obj +<< /Type /FontDescriptor /FontName /CMZOXP+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 121 0 R >> endobj -129 0 obj +122 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1108,10 +1094,10 @@ end %%EOF endstream endobj -43 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /RLYTET+CMBX10 /FontDescriptor 121 0 R /FirstChar 49 /LastChar 116 /Widths 119 0 R /ToUnicode 129 0 R >> +42 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /RLYTET+CMBX10 /FontDescriptor 114 0 R /FirstChar 49 /LastChar 116 /Widths 112 0 R /ToUnicode 122 0 R >> endobj -130 0 obj +123 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1231,10 +1217,10 @@ end %%EOF endstream endobj -42 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /UNVZHF+CMBX12 /FontDescriptor 123 0 R /FirstChar 49 /LastChar 116 /Widths 120 0 R /ToUnicode 130 0 R >> +41 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /UNVZHF+CMBX12 /FontDescriptor 116 0 R /FirstChar 49 /LastChar 116 /Widths 113 0 R /ToUnicode 123 0 R >> endobj -131 0 obj +124 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1354,10 +1340,10 @@ end %%EOF endstream endobj -44 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /SETXHT+CMR10 /FontDescriptor 125 0 R /FirstChar 49 /LastChar 118 /Widths 118 0 R /ToUnicode 131 0 R >> +43 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /SETXHT+CMR10 /FontDescriptor 118 0 R /FirstChar 49 /LastChar 118 /Widths 111 0 R /ToUnicode 124 0 R >> endobj -132 0 obj +125 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1477,164 +1463,157 @@ end %%EOF endstream endobj -49 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /CMZOXP+CMSL10 /FontDescriptor 127 0 R /FirstChar 46 /LastChar 84 /Widths 117 0 R /ToUnicode 132 0 R >> +48 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /CMZOXP+CMSL10 /FontDescriptor 120 0 R /FirstChar 46 /LastChar 84 /Widths 110 0 R /ToUnicode 125 0 R >> endobj -45 0 obj -<< /Type /Pages /Parent 133 0 R /Count 10 /Kids [ 40 0 R 47 0 R 54 0 R 57 0 R 63 0 R 66 0 R 72 0 R 75 0 R 82 0 R 86 0 R ] >> +44 0 obj +<< /Type /Pages /Parent 126 0 R /Count 10 /Kids [ 39 0 R 46 0 R 52 0 R 55 0 R 60 0 R 63 0 R 68 0 R 71 0 R 77 0 R 81 0 R ] >> endobj -95 0 obj -<< /Type /Pages /Parent 133 0 R /Count 3 /Kids [ 93 0 R 97 0 R 106 0 R ] >> +89 0 obj +<< /Type /Pages /Parent 126 0 R /Count 3 /Kids [ 87 0 R 91 0 R 99 0 R ] >> endobj -133 0 obj -<< /Type /Pages /Count 13 /Kids [ 45 0 R 95 0 R ] >> +126 0 obj +<< /Type /Pages /Count 13 /Kids [ 44 0 R 89 0 R ] >> endobj -134 0 obj -<< /Type /Catalog /Pages 133 0 R /MarkInfo 108 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 104 0 R >> +127 0 obj +<< /Type /Catalog /Pages 126 0 R /MarkInfo 101 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 97 0 R >> endobj -135 0 obj +128 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 136 +0 129 0000000010 65535 f -0000008264 00000 n -0000008311 00000 n -0000008333 00000 n -0000008355 00000 n -0000017210 00000 n -0000008414 00000 n -0000009398 00000 n -0000011756 00000 n -0000010276 00000 n +0000008390 00000 n +0000008437 00000 n +0000008459 00000 n +0000008481 00000 n +0000016717 00000 n +0000008540 00000 n +0000009420 00000 n +0000011994 00000 n +0000010362 00000 n 0000000012 00000 f -0000010344 00000 n +0000010430 00000 n 0000000014 00000 f -0000010414 00000 n +0000010500 00000 n 0000000020 00000 f -0000011294 00000 n -0000010495 00000 n -0000011567 00000 n -0000011396 00000 n -0000011669 00000 n +0000011532 00000 n +0000010581 00000 n +0000011805 00000 n +0000011634 00000 n +0000011907 00000 n 0000000000 00000 f -0000011817 00000 n -0000011959 00000 n -0000012048 00000 n -0000012137 00000 n -0000012226 00000 n -0000012330 00000 n -0000012470 00000 n -0000012609 00000 n -0000012747 00000 n -0000012911 00000 n -0000013075 00000 n -0000013235 00000 n -0000013399 00000 n -0000013559 00000 n -0000013731 00000 n -0000013853 00000 n -0000014009 00000 n -0000014182 00000 n -0000001377 00000 n -0000001242 00000 n +0000012055 00000 n +0000012197 00000 n +0000012286 00000 n +0000012375 00000 n +0000012464 00000 n +0000012568 00000 n +0000012736 00000 n +0000012874 00000 n +0000013038 00000 n +0000013202 00000 n +0000013362 00000 n +0000013526 00000 n +0000013686 00000 n +0000013858 00000 n +0000013980 00000 n +0000014136 00000 n +0000014309 00000 n +0000001380 00000 n +0000001245 00000 n 0000000020 00000 n -0000080872 00000 n -0000078920 00000 n -0000082819 00000 n -0000084931 00000 n -0000001841 00000 n -0000001706 00000 n -0000001464 00000 n -0000084770 00000 n -0000014304 00000 n -0000014399 00000 n -0000014551 00000 n -0000002349 00000 n -0000002214 00000 n -0000001916 00000 n -0000002809 00000 n -0000002674 00000 n -0000002424 00000 n -0000014690 00000 n -0000014785 00000 n -0000014953 00000 n -0000003323 00000 n -0000003188 00000 n -0000002884 00000 n -0000003786 00000 n -0000003651 00000 n -0000003398 00000 n +0000080378 00000 n +0000078426 00000 n +0000082325 00000 n +0000084437 00000 n +0000001844 00000 n +0000001709 00000 n +0000001467 00000 n +0000084276 00000 n +0000014431 00000 n +0000014526 00000 n +0000002355 00000 n +0000002220 00000 n +0000001919 00000 n +0000002815 00000 n +0000002680 00000 n +0000002430 00000 n +0000014706 00000 n +0000014801 00000 n +0000003332 00000 n +0000003197 00000 n +0000002890 00000 n +0000003795 00000 n +0000003660 00000 n +0000003407 00000 n +0000014997 00000 n 0000015092 00000 n -0000015187 00000 n -0000015343 00000 n -0000004295 00000 n -0000004160 00000 n -0000003861 00000 n -0000004758 00000 n -0000004623 00000 n -0000004370 00000 n -0000015482 00000 n -0000015577 00000 n -0000015734 00000 n -0000015873 00000 n -0000005456 00000 n -0000005321 00000 n -0000004833 00000 n -0000031087 00000 n -0000006148 00000 n -0000006013 00000 n -0000005543 00000 n -0000016012 00000 n -0000016107 00000 n -0000016280 00000 n -0000016419 00000 n -0000006863 00000 n -0000006727 00000 n -0000006235 00000 n -0000085072 00000 n -0000007559 00000 n -0000007423 00000 n -0000006950 00000 n -0000016558 00000 n -0000016664 00000 n -0000016818 00000 n -0000016960 00000 n -0000017066 00000 n -0000017349 00000 n -0000008188 00000 n -0000008049 00000 n -0000007646 00000 n -0000008377 00000 n -0000008655 00000 n -0000009359 00000 n -0000010070 00000 n -0000029513 00000 n -0000030137 00000 n -0000029546 00000 n -0000030360 00000 n -0000031243 00000 n -0000031446 00000 n -0000031600 00000 n -0000031780 00000 n -0000031982 00000 n -0000043977 00000 n -0000032198 00000 n -0000054458 00000 n -0000044186 00000 n -0000065477 00000 n -0000054667 00000 n -0000076921 00000 n -0000065684 00000 n -0000077130 00000 n -0000079082 00000 n -0000081034 00000 n -0000082980 00000 n -0000085164 00000 n -0000085235 00000 n -0000085354 00000 n +0000004307 00000 n +0000004172 00000 n +0000003870 00000 n +0000004770 00000 n +0000004635 00000 n +0000004382 00000 n +0000015276 00000 n +0000015371 00000 n +0000015591 00000 n +0000005525 00000 n +0000005390 00000 n +0000004845 00000 n +0000030593 00000 n +0000006217 00000 n +0000006082 00000 n +0000005612 00000 n +0000015724 00000 n +0000015819 00000 n +0000016055 00000 n +0000006989 00000 n +0000006853 00000 n +0000006304 00000 n +0000084578 00000 n +0000007685 00000 n +0000007549 00000 n +0000007076 00000 n +0000016188 00000 n +0000016292 00000 n +0000016472 00000 n +0000016576 00000 n +0000016856 00000 n +0000008315 00000 n +0000008178 00000 n +0000007772 00000 n +0000008503 00000 n +0000008793 00000 n +0000009381 00000 n +0000010199 00000 n +0000029019 00000 n +0000029643 00000 n +0000029052 00000 n +0000029866 00000 n +0000030749 00000 n +0000030952 00000 n +0000031106 00000 n +0000031286 00000 n +0000031488 00000 n +0000043483 00000 n +0000031704 00000 n +0000053964 00000 n +0000043692 00000 n +0000064983 00000 n +0000054173 00000 n +0000076427 00000 n +0000065190 00000 n +0000076636 00000 n +0000078588 00000 n +0000080540 00000 n +0000082486 00000 n +0000084669 00000 n +0000084740 00000 n +0000084858 00000 n trailer -<< /Size 136 /Root 134 0 R /Info 135 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 129 /Root 127 0 R /Info 128 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -85487 +84991 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-3.tpf b/required/latex-lab/testfiles-sec/test-book-3.tpf index ef0b47c16..fa9d7df48 100644 --- a/required/latex-lab/testfiles-sec/test-book-3.tpf +++ b/required/latex-lab/testfiles-sec/test-book-3.tpf @@ -1,14 +1,14 @@ %PDF-2.0 %ÐÔÅØ -40 0 obj +39 0 obj << -/Length 1086 +/Length 1089 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Con)29(ten)29(ts)]TJ ET @@ -74,23 +74,23 @@ ET EMC endstream endobj -27 0 obj +26 0 obj << /Type /Page -/Contents 40 0 R -/Resources 39 0 R +/Contents 39 0 R +/Resources 38 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 44 0 R +/Parent 43 0 R >> endobj -39 0 obj +38 0 obj << /ExtGState 1 0 R -/Font << /F48 41 0 R /F46 42 0 R /F45 43 0 R >> +/Font << /F48 40 0 R /F46 41 0 R /F45 42 0 R >> >> endobj -47 0 obj +46 0 obj << /Length 172 >> @@ -105,31 +105,31 @@ EMC EMC endstream endobj -46 0 obj +45 0 obj << /Type /Page -/Contents 47 0 R -/Resources 45 0 R +/Contents 46 0 R +/Resources 44 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 44 0 R +/Parent 43 0 R >> endobj -45 0 obj +44 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F49 48 0 R /F50 49 0 R >> +/Font << /F45 42 0 R /F49 47 0 R /F50 48 0 R >> >> endobj -55 0 obj +53 0 obj << -/Length 186 +/Length 189 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(fron)29(tnormal)]TJ ET @@ -141,23 +141,23 @@ ET EMC endstream endobj -53 0 obj +51 0 obj << /Type /Page -/Contents 55 0 R -/Resources 54 0 R +/Contents 53 0 R +/Resources 52 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 44 0 R +/Parent 43 0 R >> endobj -54 0 obj +52 0 obj << /ExtGState 1 0 R -/Font << /F48 41 0 R /F45 43 0 R >> +/Font << /F48 40 0 R /F45 42 0 R >> >> endobj -58 0 obj +56 0 obj << /Length 165 >> @@ -172,31 +172,31 @@ EMC EMC endstream endobj -57 0 obj +55 0 obj << /Type /Page -/Contents 58 0 R -/Resources 56 0 R +/Contents 56 0 R +/Resources 54 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 44 0 R +/Parent 43 0 R >> endobj -56 0 obj +54 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 49 0 R /F49 48 0 R >> +/Font << /F45 42 0 R /F50 48 0 R /F49 47 0 R >> >> endobj -64 0 obj +61 0 obj << -/Length 192 +/Length 195 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(fron)29(tshorttitle)]TJ ET @@ -208,23 +208,23 @@ ET EMC endstream endobj -62 0 obj +59 0 obj << /Type /Page -/Contents 64 0 R -/Resources 63 0 R +/Contents 61 0 R +/Resources 60 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 44 0 R +/Parent 43 0 R >> endobj -63 0 obj +60 0 obj << /ExtGState 1 0 R -/Font << /F48 41 0 R /F45 43 0 R >> +/Font << /F48 40 0 R /F45 42 0 R >> >> endobj -67 0 obj +64 0 obj << /Length 169 >> @@ -239,31 +239,31 @@ EMC EMC endstream endobj -66 0 obj +63 0 obj << /Type /Page -/Contents 67 0 R -/Resources 65 0 R +/Contents 64 0 R +/Resources 62 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 44 0 R +/Parent 43 0 R >> endobj -65 0 obj +62 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 49 0 R /F49 48 0 R >> +/Font << /F45 42 0 R /F50 48 0 R /F49 47 0 R >> >> endobj -73 0 obj +69 0 obj << -/Length 187 +/Length 190 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(fron)29(tstarred)]TJ ET @@ -275,23 +275,23 @@ ET EMC endstream endobj -71 0 obj +67 0 obj << /Type /Page -/Contents 73 0 R -/Resources 72 0 R +/Contents 69 0 R +/Resources 68 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 74 0 R +/Parent 70 0 R >> endobj -72 0 obj +68 0 obj << /ExtGState 1 0 R -/Font << /F48 41 0 R /F45 43 0 R >> +/Font << /F48 40 0 R /F45 42 0 R >> >> endobj -77 0 obj +73 0 obj << /Length 169 >> @@ -306,36 +306,41 @@ EMC EMC endstream endobj -76 0 obj +72 0 obj << /Type /Page -/Contents 77 0 R -/Resources 75 0 R +/Contents 73 0 R +/Resources 71 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 7 -/Parent 74 0 R +/Parent 70 0 R >> endobj -75 0 obj +71 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 49 0 R /F49 48 0 R >> +/Font << /F45 42 0 R /F50 48 0 R /F49 47 0 R >> >> endobj -84 0 obj +79 0 obj << -/Length 317 +/Length 381 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(mainnormal)]TJ ET @@ -347,23 +352,23 @@ ET EMC endstream endobj -81 0 obj +76 0 obj << /Type /Page -/Contents 84 0 R -/Resources 83 0 R +/Contents 79 0 R +/Resources 78 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 8 -/Parent 74 0 R +/Parent 70 0 R >> endobj -83 0 obj +78 0 obj << /ExtGState 1 0 R -/Font << /F47 85 0 R /F50 49 0 R /F48 41 0 R /F45 43 0 R >> +/Font << /F47 80 0 R /F50 48 0 R /F48 40 0 R /F45 42 0 R >> >> endobj -88 0 obj +83 0 obj << /Length 272 >> @@ -378,36 +383,41 @@ EMC EMC endstream endobj -87 0 obj +82 0 obj << /Type /Page -/Contents 88 0 R -/Resources 86 0 R +/Contents 83 0 R +/Resources 81 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 9 -/Parent 74 0 R +/Parent 70 0 R >> endobj -86 0 obj +81 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 49 0 R /F49 48 0 R >> +/Font << /F45 42 0 R /F50 48 0 R /F49 47 0 R >> >> endobj -95 0 obj +89 0 obj << -/Length 321 +/Length 385 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(2)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(2)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(mainshorttitle)]TJ ET @@ -419,23 +429,23 @@ ET EMC endstream endobj -92 0 obj +86 0 obj << /Type /Page -/Contents 95 0 R -/Resources 94 0 R +/Contents 89 0 R +/Resources 88 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 10 -/Parent 74 0 R +/Parent 70 0 R >> endobj -94 0 obj +88 0 obj << /ExtGState 1 0 R -/Font << /F47 85 0 R /F50 49 0 R /F48 41 0 R /F45 43 0 R >> +/Font << /F47 80 0 R /F50 48 0 R /F48 40 0 R /F45 42 0 R >> >> endobj -98 0 obj +92 0 obj << /Length 276 >> @@ -450,23 +460,23 @@ EMC EMC endstream endobj -97 0 obj +91 0 obj << /Type /Page -/Contents 98 0 R -/Resources 96 0 R +/Contents 92 0 R +/Resources 90 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 11 -/Parent 74 0 R +/Parent 70 0 R >> endobj -96 0 obj +90 0 obj << /ExtGState 1 0 R -/Font << /F45 43 0 R /F50 49 0 R /F49 48 0 R >> +/Font << /F45 42 0 R /F50 48 0 R /F49 47 0 R >> >> endobj -105 0 obj +98 0 obj << /Type /Metadata /Subtype /XML /Length 12071 @@ -709,15 +719,15 @@ stream endstream endobj -107 0 obj +100 0 obj << -/Length 265 +/Length 268 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(mainstarred)]TJ ET @@ -734,20 +744,20 @@ ET EMC endstream endobj -102 0 obj +95 0 obj << /Type /Page -/Contents 107 0 R -/Resources 106 0 R +/Contents 100 0 R +/Resources 99 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 12 -/Parent 108 0 R +/Parent 101 0 R >> endobj -106 0 obj +99 0 obj << /ExtGState 1 0 R -/Font << /F48 41 0 R /F45 43 0 R >> +/Font << /F48 40 0 R /F45 42 0 R >> >> endobj 1 0 obj @@ -762,37 +772,36 @@ endobj 4 0 obj << >> endobj -109 0 obj +102 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 26 0 R 30 0 R 30 0 R 32 0 R 32 0 R 34 0 R 35 0 R 34 0 R 34 0 R 37 0 R 38 0 R 37 0 R 37 0 R ] +<< /Nums [0 [ 25 0 R 29 0 R 29 0 R 31 0 R 31 0 R 33 0 R 34 0 R 33 0 R 33 0 R 36 0 R 37 0 R 36 0 R 36 0 R ] 1 [ ] -2 [ 52 0 R ] +2 [ 50 0 R ] 3 [ ] -4 [ 61 0 R ] +4 [ 58 0 R ] 5 [ ] -6 [ 70 0 R ] +6 [ 66 0 R ] 7 [ ] -8 [ 80 0 R 82 0 R ] +8 [ 75 0 R 77 0 R 75 0 R ] 9 [ ] -10 [ 91 0 R 93 0 R ] +10 [ 85 0 R 87 0 R 85 0 R ] 11 [ ] -12 [ 101 0 R 104 0 R ] +12 [ 94 0 R 97 0 R ] ] >> endobj -110 0 obj -<< /Limits [(ID.002) (ID.040)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 26 0 R (ID.008) 28 0 R (ID.009) 29 0 R (ID.010) 30 0 R (ID.011) 31 0 R (ID.012) 32 0 R (ID.013) 33 0 R (ID.014) 34 0 R (ID.015) 35 0 R (ID.016) 36 0 R (ID.017) 37 0 R (ID.018) 38 0 R (ID.019) 50 0 R (ID.020) 51 0 R (ID.021) 52 0 R (ID.022) 59 0 R (ID.023) 60 0 R (ID.024) 61 0 R (ID.025) 68 0 R (ID.026) 69 0 R (ID.027) 70 0 R (ID.028) 78 0 R (ID.029) 79 0 R (ID.030) 80 0 R (ID.031) 82 0 R (ID.032) 89 0 R (ID.033) 90 0 R (ID.034) 91 0 R (ID.035) 93 0 R (ID.036) 99 0 R (ID.037) 100 0 R (ID.038) 101 0 R (ID.039) 103 0 R (ID.040) 104 0 R ] >> +103 0 obj +<< /Limits [(ID.002) (ID.033)]/Names [(ID.002) 21 0 R (ID.003) 22 0 R (ID.004) 23 0 R (ID.005) 24 0 R (ID.006) 25 0 R (ID.007) 27 0 R (ID.008) 28 0 R (ID.009) 29 0 R (ID.010) 30 0 R (ID.011) 31 0 R (ID.012) 32 0 R (ID.013) 33 0 R (ID.014) 34 0 R (ID.015) 35 0 R (ID.016) 36 0 R (ID.017) 37 0 R (ID.018) 49 0 R (ID.019) 50 0 R (ID.020) 57 0 R (ID.021) 58 0 R (ID.022) 65 0 R (ID.023) 66 0 R (ID.024) 74 0 R (ID.025) 75 0 R (ID.026) 77 0 R (ID.027) 84 0 R (ID.028) 85 0 R (ID.029) 87 0 R (ID.030) 93 0 R (ID.031) 94 0 R (ID.032) 96 0 R (ID.033) 97 0 R ] >> endobj -111 0 obj -<< /Kids [110 0 R] >> +104 0 obj +<< /Kids [103 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -112 0 obj -<< /raggedright <> -/justify <> +105 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -808,7 +817,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -826,7 +835,7 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 50 0 R 59 0 R 68 0 R 78 0 R 89 0 R 99 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 49 0 R 57 0 R 65 0 R 74 0 R 84 0 R 93 0 R] /ID (ID.002) >> endobj 22 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.003) >> @@ -835,135 +844,114 @@ endobj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.004) >> endobj 24 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 28 0 R] /ID (ID.005) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 27 0 R] /ID (ID.005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K 26 0 R /ID (ID.006) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K <> /ID (ID.006) >> endobj -26 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 25 0 R /K <> /ID (ID.007) >> +27 0 obj +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [28 0 R 30 0 R 32 0 R 35 0 R] /ID (ID.007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [29 0 R 31 0 R 33 0 R 36 0 R] /ID (ID.008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 50 0 R ] /K 29 0 R /ID (ID.008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 51 0 R ] /K 30 0 R /ID (ID.009) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> <>] /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [<> <>] /ID (ID.010) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 58 0 R ] /K 31 0 R /ID (ID.010) >> endobj 31 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 60 0 R ] /K 32 0 R /ID (ID.011) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 30 0 R /K [<> <>] /ID (ID.011) >> endobj 32 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <>] /ID (ID.012) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 75 0 R ] /K 33 0 R /ID (ID.012) >> endobj 33 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 79 0 R ] /K 34 0 R /ID (ID.013) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [<> 34 0 R <> <>] /ID (ID.013) >> endobj 34 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 33 0 R /K [<> 35 0 R <> <>] /ID (ID.014) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 33 0 R /K <> /ID (ID.014) >> endobj 35 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 34 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 85 0 R ] /K 36 0 R /ID (ID.015) >> endobj 36 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 90 0 R ] /K 37 0 R /ID (ID.016) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [<> 37 0 R <> <>] /ID (ID.016) >> endobj 37 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 36 0 R /K [<> 38 0 R <> <>] /ID (ID.017) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.017) >> endobj -38 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 37 0 R /K <> /ID (ID.018) >> +49 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 50 0 R /ID (ID.018) >> endobj 50 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 51 0 R /ID (ID.019) >> -endobj -51 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 50 0 R /K 52 0 R /ID (ID.020) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 49 0 R /K <> /ID (ID.019) >> endobj -52 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 51 0 R /K <> /ID (ID.021) >> -endobj -59 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 60 0 R /ID (ID.022) >> -endobj -60 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 59 0 R /K 61 0 R /ID (ID.023) >> -endobj -61 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 60 0 R /K <> /ID (ID.024) >> -endobj -68 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 69 0 R /ID (ID.025) >> +57 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 58 0 R /ID (ID.020) >> endobj -69 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 68 0 R /K 70 0 R /ID (ID.026) >> +58 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 57 0 R /K <> /ID (ID.021) >> endobj -70 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 69 0 R /K <> /ID (ID.027) >> +65 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 66 0 R /ID (ID.022) >> endobj -78 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 79 0 R /ID (ID.028) >> +66 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 65 0 R /K <> /ID (ID.023) >> endobj -79 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 78 0 R /K [80 0 R 82 0 R] /ID (ID.029) >> +74 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 75 0 R /ID (ID.024) >> endobj -80 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 79 0 R /K <> /ID (ID.030) >> +75 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 74 0 R /K [<> 77 0 R <>] /ID (ID.025) >> endobj -82 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 79 0 R /K <> /ID (ID.031) >> +77 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 75 0 R /K <> /ID (ID.026) >> endobj -89 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 90 0 R /ID (ID.032) >> +84 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 85 0 R /ID (ID.027) >> endobj -90 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 89 0 R /K [91 0 R 93 0 R] /ID (ID.033) >> +85 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 84 0 R /K [<> 87 0 R <>] /ID (ID.028) >> endobj -91 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 90 0 R /K <> /ID (ID.034) >> +87 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 85 0 R /K <> /ID (ID.029) >> endobj 93 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 90 0 R /K <> /ID (ID.035) >> -endobj -99 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [100 0 R 103 0 R] /ID (ID.036) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [94 0 R 96 0 R] /ID (ID.030) >> endobj -100 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 99 0 R /K 101 0 R /ID (ID.037) >> -endobj -101 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 100 0 R /K <> /ID (ID.038) >> +94 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 93 0 R /K <> /ID (ID.031) >> endobj -103 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 99 0 R /K 104 0 R /ID (ID.039) >> +96 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 93 0 R /K 97 0 R /ID (ID.032) >> endobj -104 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 103 0 R /K <> /ID (ID.040) >> +97 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 96 0 R /K <> /ID (ID.033) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 111 0 R /ClassMap 112 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 104 0 R /ClassMap 105 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -114 0 obj +107 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -115 0 obj +108 0 obj [333] endobj -116 0 obj +109 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -117 0 obj +110 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7] endobj -118 0 obj +111 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1] endobj -119 0 obj +112 0 obj [756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2] endobj -120 0 obj +113 0 obj << /Length1 1144 /Length2 1422 @@ -972,7 +960,7 @@ endobj >> [BINARY STREAM] endobj -121 0 obj +114 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -985,10 +973,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 120 0 R +/FontFile 113 0 R >> endobj -122 0 obj +115 0 obj << /Length1 727 /Length2 13529 @@ -997,7 +985,7 @@ endobj >> [BINARY STREAM] endobj -123 0 obj +116 0 obj << /Type /FontDescriptor /FontName /VJKYXF+SFBX1000 @@ -1010,10 +998,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/a/f/h/i/l/m/n/o/one/r/s/t/three/two) -/FontFile 122 0 R +/FontFile 115 0 R >> endobj -124 0 obj +117 0 obj << /Length1 727 /Length2 9888 @@ -1022,7 +1010,7 @@ endobj >> [BINARY STREAM] endobj -125 0 obj +118 0 obj << /Type /FontDescriptor /FontName /NUBTLU+SFBX2074 @@ -1035,10 +1023,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/h/one/p/r/t/two) -/FontFile 124 0 R +/FontFile 117 0 R >> endobj -126 0 obj +119 0 obj << /Length1 727 /Length2 10578 @@ -1047,7 +1035,7 @@ endobj >> [BINARY STREAM] endobj -127 0 obj +120 0 obj << /Type /FontDescriptor /FontName /HBKYLJ+SFBX2488 @@ -1060,10 +1048,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/d/e/f/h/i/l/m/n/o/r/s/t) -/FontFile 126 0 R +/FontFile 119 0 R >> endobj -128 0 obj +121 0 obj << /Length1 721 /Length2 9808 @@ -1072,7 +1060,7 @@ endobj >> [BINARY STREAM] endobj -129 0 obj +122 0 obj << /Type /FontDescriptor /FontName /IRZBXG+SFRM1000 @@ -1085,10 +1073,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/five/four/i/one/three/two/v) -/FontFile 128 0 R +/FontFile 121 0 R >> endobj -130 0 obj +123 0 obj << /Length1 727 /Length2 6067 @@ -1097,7 +1085,7 @@ endobj >> [BINARY STREAM] endobj -131 0 obj +124 0 obj << /Type /FontDescriptor /FontName /VLIJKN+SFSL1000 @@ -1110,16 +1098,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/C/E/F/H/I/L/M/N/O/P/R/S/T/one/period/two) -/FontFile 130 0 R +/FontFile 123 0 R >> endobj -113 0 obj +106 0 obj << /Type /Encoding /Differences [46/period 49/one/two/three/four/five 65/A 67/C 69/E/F 72/H/I 76/L/M/N/O/P 82/R/S/T 97/a 100/d/e/f 104/h/i 108/l/m/n/o/p 114/r/s/t 118/v] >> endobj -132 0 obj +125 0 obj << /Length 2030 >> @@ -1263,20 +1251,20 @@ end %%EOF endstream endobj -42 0 obj +41 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VJKYXF+SFBX1000 -/FontDescriptor 123 0 R +/FontDescriptor 116 0 R /FirstChar 49 /LastChar 116 -/Widths 118 0 R -/Encoding 113 0 R -/ToUnicode 132 0 R +/Widths 111 0 R +/Encoding 106 0 R +/ToUnicode 125 0 R >> endobj -133 0 obj +126 0 obj << /Length 2030 >> @@ -1420,20 +1408,20 @@ end %%EOF endstream endobj -85 0 obj +80 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NUBTLU+SFBX2074 -/FontDescriptor 125 0 R +/FontDescriptor 118 0 R /FirstChar 49 /LastChar 116 -/Widths 114 0 R -/Encoding 113 0 R -/ToUnicode 133 0 R +/Widths 107 0 R +/Encoding 106 0 R +/ToUnicode 126 0 R >> endobj -134 0 obj +127 0 obj << /Length 2030 >> @@ -1577,20 +1565,20 @@ end %%EOF endstream endobj -41 0 obj +40 0 obj << /Type /Font /Subtype /Type1 /BaseFont /HBKYLJ+SFBX2488 -/FontDescriptor 127 0 R +/FontDescriptor 120 0 R /FirstChar 67 /LastChar 116 -/Widths 119 0 R -/Encoding 113 0 R -/ToUnicode 134 0 R +/Widths 112 0 R +/Encoding 106 0 R +/ToUnicode 127 0 R >> endobj -135 0 obj +128 0 obj << /Length 2030 >> @@ -1734,20 +1722,20 @@ end %%EOF endstream endobj -43 0 obj +42 0 obj << /Type /Font /Subtype /Type1 /BaseFont /IRZBXG+SFRM1000 -/FontDescriptor 129 0 R +/FontDescriptor 122 0 R /FirstChar 49 /LastChar 118 -/Widths 117 0 R -/Encoding 113 0 R -/ToUnicode 135 0 R +/Widths 110 0 R +/Encoding 106 0 R +/ToUnicode 128 0 R >> endobj -136 0 obj +129 0 obj << /Length 2030 >> @@ -1891,20 +1879,20 @@ end %%EOF endstream endobj -48 0 obj +47 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VLIJKN+SFSL1000 -/FontDescriptor 131 0 R +/FontDescriptor 124 0 R /FirstChar 46 /LastChar 84 -/Widths 116 0 R -/Encoding 113 0 R -/ToUnicode 136 0 R +/Widths 109 0 R +/Encoding 106 0 R +/ToUnicode 129 0 R >> endobj -137 0 obj +130 0 obj << /Length 654 >> @@ -1942,210 +1930,203 @@ end %%EOF endstream endobj -49 0 obj +48 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 121 0 R +/FontDescriptor 114 0 R /FirstChar 32 /LastChar 32 -/Widths 115 0 R -/ToUnicode 137 0 R +/Widths 108 0 R +/ToUnicode 130 0 R >> endobj -44 0 obj +43 0 obj << /Type /Pages /Count 6 -/Parent 138 0 R -/Kids [27 0 R 46 0 R 53 0 R 57 0 R 62 0 R 66 0 R] +/Parent 131 0 R +/Kids [26 0 R 45 0 R 51 0 R 55 0 R 59 0 R 63 0 R] >> endobj -74 0 obj +70 0 obj << /Type /Pages /Count 6 -/Parent 138 0 R -/Kids [71 0 R 76 0 R 81 0 R 87 0 R 92 0 R 97 0 R] +/Parent 131 0 R +/Kids [67 0 R 72 0 R 76 0 R 82 0 R 86 0 R 91 0 R] >> endobj -108 0 obj +101 0 obj << /Type /Pages /Count 1 -/Parent 138 0 R -/Kids [102 0 R] +/Parent 131 0 R +/Kids [95 0 R] >> endobj -138 0 obj +131 0 obj << /Type /Pages /Count 13 -/Kids [44 0 R 74 0 R 108 0 R] +/Kids [43 0 R 70 0 R 101 0 R] >> endobj -139 0 obj +132 0 obj << /Type /Catalog -/Pages 138 0 R -/MarkInfo 109 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 105 0 R +/Pages 131 0 R +/MarkInfo 102 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 98 0 R >> endobj -140 0 obj +133 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 141 +0 134 0000000010 65535 f -0000019604 00000 n -0000019651 00000 n -0000019673 00000 n -0000019695 00000 n -0000028497 00000 n -0000019754 00000 n -0000020748 00000 n -0000023106 00000 n -0000021626 00000 n +0000019743 00000 n +0000019790 00000 n +0000019812 00000 n +0000019834 00000 n +0000028013 00000 n +0000019893 00000 n +0000020783 00000 n +0000023357 00000 n +0000021725 00000 n 0000000012 00000 f -0000021694 00000 n +0000021793 00000 n 0000000014 00000 f -0000021764 00000 n +0000021863 00000 n 0000000020 00000 f -0000022644 00000 n -0000021845 00000 n -0000022917 00000 n -0000022746 00000 n -0000023019 00000 n +0000022895 00000 n +0000021944 00000 n +0000023168 00000 n +0000022997 00000 n +0000023270 00000 n 0000000000 00000 f -0000023167 00000 n -0000023309 00000 n -0000023398 00000 n -0000023487 00000 n -0000023591 00000 n -0000023731 00000 n -0000001160 00000 n -0000023868 00000 n -0000024006 00000 n -0000024170 00000 n -0000024330 00000 n -0000024490 00000 n -0000024650 00000 n -0000024810 00000 n -0000025010 00000 n -0000025130 00000 n -0000025286 00000 n -0000025488 00000 n -0000001295 00000 n +0000023418 00000 n +0000023560 00000 n +0000023649 00000 n +0000023738 00000 n +0000023842 00000 n +0000001163 00000 n +0000024008 00000 n +0000024146 00000 n +0000024310 00000 n +0000024470 00000 n +0000024630 00000 n +0000024790 00000 n +0000024950 00000 n +0000025150 00000 n +0000025270 00000 n +0000025426 00000 n +0000025628 00000 n +0000001298 00000 n 0000000015 00000 n -0000095457 00000 n -0000090913 00000 n -0000097729 00000 n -0000101063 00000 n -0000001749 00000 n -0000001614 00000 n -0000001383 00000 n -0000100001 00000 n -0000100896 00000 n -0000025609 00000 n -0000025704 00000 n -0000025856 00000 n -0000002082 00000 n -0000002217 00000 n -0000001837 00000 n -0000002652 00000 n -0000002517 00000 n -0000002293 00000 n -0000025993 00000 n -0000026088 00000 n -0000026256 00000 n -0000002991 00000 n -0000003126 00000 n -0000002740 00000 n -0000003565 00000 n -0000003430 00000 n -0000003202 00000 n -0000026393 00000 n -0000026488 00000 n -0000026644 00000 n -0000003899 00000 n -0000004034 00000 n -0000003653 00000 n -0000101173 00000 n -0000004473 00000 n -0000004338 00000 n -0000004110 00000 n -0000026781 00000 n -0000026876 00000 n -0000027033 00000 n -0000004937 00000 n -0000027170 00000 n -0000005072 00000 n -0000004561 00000 n -0000093185 00000 n -0000005638 00000 n -0000005503 00000 n -0000005172 00000 n -0000027307 00000 n -0000027402 00000 n -0000027575 00000 n -0000006106 00000 n -0000027712 00000 n -0000006242 00000 n -0000005726 00000 n -0000006813 00000 n -0000006677 00000 n -0000006342 00000 n -0000027849 00000 n -0000027955 00000 n -0000028109 00000 n -0000019387 00000 n -0000028249 00000 n -0000028355 00000 n -0000006901 00000 n -0000019527 00000 n -0000019062 00000 n -0000101283 00000 n -0000019717 00000 n -0000020021 00000 n -0000020709 00000 n -0000021420 00000 n -0000088633 00000 n -0000028636 00000 n -0000029057 00000 n -0000029080 00000 n -0000029327 00000 n -0000029757 00000 n -0000030180 00000 n -0000030492 00000 n -0000033157 00000 n -0000033377 00000 n -0000047732 00000 n -0000047989 00000 n -0000058702 00000 n -0000058945 00000 n -0000070349 00000 n -0000070598 00000 n -0000081225 00000 n -0000081476 00000 n -0000088368 00000 n -0000088823 00000 n -0000091095 00000 n -0000093367 00000 n -0000095639 00000 n -0000097911 00000 n -0000100182 00000 n -0000101360 00000 n -0000101436 00000 n -0000101555 00000 n +0000094973 00000 n +0000090429 00000 n +0000097245 00000 n +0000100579 00000 n +0000001752 00000 n +0000001617 00000 n +0000001386 00000 n +0000099517 00000 n +0000100412 00000 n +0000025749 00000 n +0000025844 00000 n +0000002088 00000 n +0000002223 00000 n +0000001840 00000 n +0000002658 00000 n +0000002523 00000 n +0000002299 00000 n +0000026022 00000 n +0000026117 00000 n +0000003000 00000 n +0000003135 00000 n +0000002746 00000 n +0000003574 00000 n +0000003439 00000 n +0000003211 00000 n +0000026311 00000 n +0000026406 00000 n +0000003911 00000 n +0000004046 00000 n +0000003662 00000 n +0000100689 00000 n +0000004485 00000 n +0000004350 00000 n +0000004122 00000 n +0000026588 00000 n +0000026683 00000 n +0000005013 00000 n +0000026899 00000 n +0000005148 00000 n +0000004573 00000 n +0000092701 00000 n +0000005714 00000 n +0000005579 00000 n +0000005248 00000 n +0000027030 00000 n +0000027125 00000 n +0000006246 00000 n +0000027357 00000 n +0000006382 00000 n +0000005802 00000 n +0000006953 00000 n +0000006817 00000 n +0000006482 00000 n +0000027488 00000 n +0000027592 00000 n +0000019529 00000 n +0000027770 00000 n +0000027874 00000 n +0000007041 00000 n +0000019667 00000 n +0000019201 00000 n +0000100799 00000 n +0000019856 00000 n +0000020172 00000 n +0000020744 00000 n +0000021562 00000 n +0000088149 00000 n +0000028152 00000 n +0000028573 00000 n +0000028596 00000 n +0000028843 00000 n +0000029273 00000 n +0000029696 00000 n +0000030008 00000 n +0000032673 00000 n +0000032893 00000 n +0000047248 00000 n +0000047505 00000 n +0000058218 00000 n +0000058461 00000 n +0000069865 00000 n +0000070114 00000 n +0000080741 00000 n +0000080992 00000 n +0000087884 00000 n +0000088339 00000 n +0000090611 00000 n +0000092883 00000 n +0000095155 00000 n +0000097427 00000 n +0000099698 00000 n +0000100875 00000 n +0000100951 00000 n +0000101069 00000 n trailer -<< /Size 141 -/Root 139 0 R -/Info 140 0 R +<< /Size 134 +/Root 132 0 R +/Info 133 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -101688 +101202 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-structure-dest.luatex.tpf b/required/latex-lab/testfiles-sec/test-book-structure-dest.luatex.tpf index f6cc28d17..c31105f00 100644 --- a/required/latex-lab/testfiles-sec/test-book-structure-dest.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-book-structure-dest.luatex.tpf @@ -1,12 +1,12 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ -30 0 obj +29 0 obj << /Length 231 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 458.912 Tm [(P)31(art)]TJ @@ -25,30 +25,30 @@ EMC endstream endobj 21 0 obj -<< /Type /Page /Contents 30 0 R /Resources 29 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 39 0 R >> +<< /Type /Page /Contents 29 0 R /Resources 28 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 38 0 R >> endobj -31 0 obj +30 0 obj << /D [ 21 0 R /XYZ 105.869 699.082 null ] >> endobj -32 0 obj +31 0 obj [ 26 0 R /XYZ 105.869 699.082 null ] endobj -33 0 obj +32 0 obj << /D [ 21 0 R /XYZ 106.869 668.127 null ] >> endobj -34 0 obj +33 0 obj [ 22 0 R /XYZ 106.869 668.127 null ] endobj -35 0 obj +34 0 obj << /D [ 21 0 R /XYZ 106.869 488.8 null ] >> endobj -36 0 obj +35 0 obj [ 27 0 R /XYZ 106.869 488.8 null ] endobj -29 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F16 38 0 R >> >> +28 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F16 37 0 R >> >> endobj -42 0 obj +41 0 obj << /Length 31 >> stream /opacity1 gs @@ -56,19 +56,19 @@ stream EMC endstream endobj -41 0 obj -<< /Type /Page /Contents 42 0 R /Resources 40 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 39 0 R >> +40 0 obj +<< /Type /Page /Contents 41 0 R /Resources 39 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 38 0 R >> endobj -43 0 obj -<< /D [ 41 0 R /XYZ 159.667 699.082 null ] >> +42 0 obj +<< /D [ 40 0 R /XYZ 159.667 699.082 null ] >> endobj -44 0 obj +43 0 obj [ 26 0 R /XYZ 159.667 699.082 null ] endobj -40 0 obj +39 0 obj << /ExtGState 1 0 R >> endobj -49 0 obj +48 0 obj << /Length 451 >> stream /opacity1 gs @@ -100,19 +100,19 @@ EMC EMC endstream endobj -48 0 obj -<< /Type /Page /Contents 49 0 R /Resources 47 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 39 0 R >> +47 0 obj +<< /Type /Page /Contents 48 0 R /Resources 46 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 38 0 R >> endobj -50 0 obj -<< /D [ 48 0 R /XYZ 105.869 699.082 null ] >> +49 0 obj +<< /D [ 47 0 R /XYZ 105.869 699.082 null ] >> endobj -51 0 obj +50 0 obj [ 26 0 R /XYZ 105.869 699.082 null ] endobj -47 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R /F15 52 0 R >> >> +46 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R /F15 51 0 R >> >> endobj -55 0 obj +54 0 obj << /Length 124 >> stream /opacity1 gs @@ -128,25 +128,25 @@ EMC EMC endstream endobj -54 0 obj -<< /Type /Page /Contents 55 0 R /Resources 53 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 39 0 R >> +53 0 obj +<< /Type /Page /Contents 54 0 R /Resources 52 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 38 0 R >> endobj -56 0 obj -<< /D [ 54 0 R /XYZ 159.667 699.082 null ] >> +55 0 obj +<< /D [ 53 0 R /XYZ 159.667 699.082 null ] >> endobj -57 0 obj +56 0 obj [ 26 0 R /XYZ 159.667 699.082 null ] endobj -53 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R >> >> +52 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R >> >> endobj -87 0 obj -<< /Length 3268 >> +85 0 obj +<< /Length 3271 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Chapter)]TJ @@ -316,55 +316,55 @@ EMC EMC endstream endobj +84 0 obj +<< /Type /Page /Contents 85 0 R /Resources 83 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 38 0 R >> +endobj 86 0 obj -<< /Type /Page /Contents 87 0 R /Resources 85 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 39 0 R >> +<< /D [ 84 0 R /XYZ 105.869 699.082 null ] >> +endobj +87 0 obj +[ 77 0 R /XYZ 105.869 699.082 null ] endobj 88 0 obj -<< /D [ 86 0 R /XYZ 105.869 699.082 null ] >> +<< /D [ 84 0 R /XYZ 106.869 608.351 null ] >> endobj 89 0 obj -[ 79 0 R /XYZ 105.869 699.082 null ] +[ 58 0 R /XYZ 106.869 608.351 null ] endobj 90 0 obj -<< /D [ 86 0 R /XYZ 106.869 608.351 null ] >> +<< /D [ 84 0 R /XYZ 106.869 511.644 null ] >> endobj 91 0 obj -[ 59 0 R /XYZ 106.869 608.351 null ] +[ 62 0 R /XYZ 106.869 511.644 null ] endobj 92 0 obj -<< /D [ 86 0 R /XYZ 106.869 511.644 null ] >> +<< /D [ 84 0 R /XYZ 106.869 457.95 null ] >> endobj 93 0 obj -[ 64 0 R /XYZ 106.869 511.644 null ] +[ 66 0 R /XYZ 106.869 457.95 null ] endobj 94 0 obj -<< /D [ 86 0 R /XYZ 106.869 457.95 null ] >> +<< /D [ 84 0 R /XYZ 106.869 411.672 null ] >> endobj 95 0 obj -[ 68 0 R /XYZ 106.869 457.95 null ] -endobj -96 0 obj -<< /D [ 86 0 R /XYZ 106.869 411.672 null ] >> +[ 70 0 R /XYZ 106.869 411.672 null ] endobj 97 0 obj -[ 72 0 R /XYZ 106.869 411.672 null ] +<< /D [ 84 0 R /XYZ 106.869 367.387 null ] >> +endobj +98 0 obj +[ 74 0 R /XYZ 106.869 367.387 null ] endobj 99 0 obj -<< /D [ 86 0 R /XYZ 106.869 367.387 null ] >> +<< /D [ 84 0 R /XYZ 106.869 341.491 null ] >> endobj 100 0 obj -[ 76 0 R /XYZ 106.869 367.387 null ] -endobj -101 0 obj -<< /D [ 86 0 R /XYZ 106.869 341.491 null ] >> +[ 78 0 R /XYZ 106.869 341.491 null ] endobj -102 0 obj -[ 80 0 R /XYZ 106.869 341.491 null ] -endobj -85 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F16 38 0 R /F15 52 0 R /F17 98 0 R >> >> +83 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F16 37 0 R /F15 51 0 R /F17 96 0 R >> >> endobj -105 0 obj +103 0 obj << /Length 180 >> stream /opacity1 gs @@ -382,35 +382,39 @@ EMC EMC endstream endobj -104 0 obj -<< /Type /Page /Contents 105 0 R /Resources 103 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 39 0 R >> +102 0 obj +<< /Type /Page /Contents 103 0 R /Resources 101 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 38 0 R >> endobj -106 0 obj -<< /D [ 104 0 R /XYZ 159.667 699.082 null ] >> +104 0 obj +<< /D [ 102 0 R /XYZ 159.667 699.082 null ] >> endobj -107 0 obj -[ 79 0 R /XYZ 159.667 699.082 null ] +105 0 obj +[ 77 0 R /XYZ 159.667 699.082 null ] endobj -103 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R /F20 108 0 R >> >> +101 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R /F20 106 0 R >> >> endobj -115 0 obj -<< /Length 427 >> +112 0 obj +<< /Length 478 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 20.66252 Tf 1 0 0 1 247.988 478.837 Tm [(P)31(art)]TJ /F15 9.96264 Tf -1 0 0 1 293.056 478.837 Tm [<0067>]TJ +1 0 0 1 293.056 478.837 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 300.804 478.837 Tm [(I)]TJ ET EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 429.024 Tm [(P)31(art)]TJ @@ -428,25 +432,25 @@ EMC EMC endstream endobj -114 0 obj -<< /Type /Page /Contents 115 0 R /Resources 113 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 39 0 R >> +111 0 obj +<< /Type /Page /Contents 112 0 R /Resources 110 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 38 0 R >> endobj -116 0 obj -<< /D [ 114 0 R /XYZ 105.869 699.082 null ] >> +113 0 obj +<< /D [ 111 0 R /XYZ 105.869 699.082 null ] >> endobj -117 0 obj -[ 109 0 R /XYZ 105.869 699.082 null ] +114 0 obj +[ 107 0 R /XYZ 105.869 699.082 null ] endobj -118 0 obj -<< /D [ 114 0 R /XYZ 106.869 503.743 null ] >> +115 0 obj +<< /D [ 111 0 R /XYZ 106.869 503.743 null ] >> endobj -119 0 obj -[ 110 0 R /XYZ 106.869 503.743 null ] +116 0 obj +[ 108 0 R /XYZ 106.869 503.743 null ] endobj -113 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F15 52 0 R /F16 38 0 R >> >> +110 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F15 51 0 R /F16 37 0 R >> >> endobj -122 0 obj +119 0 obj << /Length 31 >> stream /opacity1 gs @@ -454,19 +458,19 @@ stream EMC endstream endobj -121 0 obj -<< /Type /Page /Contents 122 0 R /Resources 120 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 39 0 R >> +118 0 obj +<< /Type /Page /Contents 119 0 R /Resources 117 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 38 0 R >> endobj -123 0 obj -<< /D [ 121 0 R /XYZ 159.667 699.082 null ] >> +120 0 obj +<< /D [ 118 0 R /XYZ 159.667 699.082 null ] >> endobj -124 0 obj -[ 109 0 R /XYZ 159.667 699.082 null ] +121 0 obj +[ 107 0 R /XYZ 159.667 699.082 null ] endobj -120 0 obj +117 0 obj << /ExtGState 1 0 R >> endobj -129 0 obj +126 0 obj << /Length 451 >> stream /opacity1 gs @@ -498,19 +502,19 @@ EMC EMC endstream endobj -128 0 obj -<< /Type /Page /Contents 129 0 R /Resources 127 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 39 0 R >> +125 0 obj +<< /Type /Page /Contents 126 0 R /Resources 124 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 38 0 R >> endobj -130 0 obj -<< /D [ 128 0 R /XYZ 105.869 699.082 null ] >> +127 0 obj +<< /D [ 125 0 R /XYZ 105.869 699.082 null ] >> endobj -131 0 obj -[ 109 0 R /XYZ 105.869 699.082 null ] +128 0 obj +[ 107 0 R /XYZ 105.869 699.082 null ] endobj -127 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R /F15 52 0 R >> >> +124 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R /F15 51 0 R >> >> endobj -134 0 obj +131 0 obj << /Length 125 >> stream /opacity1 gs @@ -526,35 +530,39 @@ EMC EMC endstream endobj -133 0 obj -<< /Type /Page /Contents 134 0 R /Resources 132 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 39 0 R >> +130 0 obj +<< /Type /Page /Contents 131 0 R /Resources 129 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 38 0 R >> endobj -135 0 obj -<< /D [ 133 0 R /XYZ 159.667 699.082 null ] >> +132 0 obj +<< /D [ 130 0 R /XYZ 159.667 699.082 null ] >> endobj -136 0 obj -[ 109 0 R /XYZ 159.667 699.082 null ] +133 0 obj +[ 107 0 R /XYZ 159.667 699.082 null ] endobj -132 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R >> >> +129 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R >> >> endobj -174 0 obj -<< /Length 4213 >> +170 0 obj +<< /Length 4491 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Chapter)]TJ @@ -562,7 +570,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(some)]TJ @@ -576,15 +584,21 @@ BT 1 0 0 1 165.621 481.826 Tm [(text)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 106.869 448.88 Tm [(1.1)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 127.492 448.88 Tm [<0067>]TJ +1 0 0 1 127.492 448.88 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F19 14.3462 Tf 1 0 0 1 143.631 448.88 Tm [(Section)]TJ @@ -592,7 +606,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 427.059 Tm [(some)]TJ @@ -606,15 +620,21 @@ BT 1 0 0 1 165.621 427.059 Tm [(text)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 399.17 Tm [(1.1.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 399.17 Tm [<0067>]TJ +1 0 0 1 134.516 399.17 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 399.17 Tm [(Subsection)]TJ @@ -622,7 +642,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 380.781 Tm [(some)]TJ @@ -636,15 +656,21 @@ BT 1 0 0 1 165.621 380.781 Tm [(text)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 106.869 354.885 Tm [(1.1.1.1)]TJ +ET +EMC +/subsubsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 139.331 354.885 Tm [<0067>]TJ +1 0 0 1 139.331 354.885 Tm [<0067>-817<0067>]TJ ET EMC -/subsubsection<> BDC +/subsubsection<> BDC BT /F17 9.96264 Tf 1 0 0 1 150.788 354.885 Tm [(Subsubsection)]TJ @@ -652,7 +678,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 336.496 Tm [(some)]TJ @@ -666,23 +692,23 @@ BT 1 0 0 1 165.621 336.496 Tm [(text)]TJ ET EMC -/paragraph<> BDC +/paragraph<> BDC EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 106.869 310.6 Tm [(1.1.1.1.1)]TJ ET EMC -/paragraph<> BDC +/paragraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 148.242 310.6 Tm [<0067>]TJ +1 0 0 1 148.242 310.6 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf 1 0 0 1 159.699 310.6 Tm [(P)32(aragraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 211.815 310.6 Tm [<0067>]TJ @@ -694,7 +720,7 @@ BT 1 0 0 1 246.74 310.6 Tm [(text)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 121.813 298.645 Tm [(some)]TJ @@ -708,27 +734,27 @@ BT 1 0 0 1 180.565 298.645 Tm [(text)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf 1 0 0 1 106.869 272.749 Tm [<0067>]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F17 9.96264 Tf 1 0 0 1 121.813 272.749 Tm [(1.1.1.1.1.1)]TJ ET EMC -/subparagraph<> BDC +/subparagraph<> BDC BT /F15 9.96264 Tf -1 0 0 1 172.097 272.749 Tm [<0067>]TJ +1 0 0 1 172.097 272.749 Tm [<0067>-817<0067>]TJ /F17 9.96264 Tf 1 0 0 1 183.554 272.749 Tm [(Subparagraph)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F15 9.96264 Tf 1 0 0 1 253.617 272.749 Tm [<0067>]TJ @@ -740,7 +766,7 @@ BT 1 0 0 1 288.541 272.749 Tm [(text)]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 121.813 260.794 Tm [(some)]TJ @@ -766,55 +792,55 @@ EMC EMC endstream endobj +169 0 obj +<< /Type /Page /Contents 170 0 R /Resources 168 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 185 0 R >> +endobj +171 0 obj +<< /D [ 169 0 R /XYZ 105.869 699.082 null ] >> +endobj +172 0 obj +[ 161 0 R /XYZ 105.869 699.082 null ] +endobj 173 0 obj -<< /Type /Page /Contents 174 0 R /Resources 172 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 189 0 R >> +<< /D [ 169 0 R /XYZ 106.869 608.351 null ] >> +endobj +174 0 obj +[ 135 0 R /XYZ 106.869 608.351 null ] endobj 175 0 obj -<< /D [ 173 0 R /XYZ 105.869 699.082 null ] >> +<< /D [ 169 0 R /XYZ 106.869 466.813 null ] >> endobj 176 0 obj -[ 165 0 R /XYZ 105.869 699.082 null ] +[ 140 0 R /XYZ 106.869 466.813 null ] endobj 177 0 obj -<< /D [ 173 0 R /XYZ 106.869 608.351 null ] >> +<< /D [ 169 0 R /XYZ 106.869 413.118 null ] >> endobj 178 0 obj -[ 138 0 R /XYZ 106.869 608.351 null ] +[ 145 0 R /XYZ 106.869 413.118 null ] endobj 179 0 obj -<< /D [ 173 0 R /XYZ 106.869 466.813 null ] >> +<< /D [ 169 0 R /XYZ 106.869 366.84 null ] >> endobj 180 0 obj -[ 145 0 R /XYZ 106.869 466.813 null ] +[ 150 0 R /XYZ 106.869 366.84 null ] endobj 181 0 obj -<< /D [ 173 0 R /XYZ 106.869 413.118 null ] >> +<< /D [ 169 0 R /XYZ 106.869 322.555 null ] >> endobj 182 0 obj -[ 150 0 R /XYZ 106.869 413.118 null ] +[ 155 0 R /XYZ 106.869 322.555 null ] endobj 183 0 obj -<< /D [ 173 0 R /XYZ 106.869 366.84 null ] >> +<< /D [ 169 0 R /XYZ 106.869 284.704 null ] >> endobj 184 0 obj -[ 155 0 R /XYZ 106.869 366.84 null ] +[ 162 0 R /XYZ 106.869 284.704 null ] endobj -185 0 obj -<< /D [ 173 0 R /XYZ 106.869 322.555 null ] >> -endobj -186 0 obj -[ 159 0 R /XYZ 106.869 322.555 null ] -endobj -187 0 obj -<< /D [ 173 0 R /XYZ 106.869 284.704 null ] >> +168 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F15 51 0 R /F16 37 0 R /F17 96 0 R >> >> endobj 188 0 obj -[ 166 0 R /XYZ 106.869 284.704 null ] -endobj -172 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F15 52 0 R /F16 38 0 R /F17 98 0 R >> >> -endobj -192 0 obj << /Length 408 >> stream /opacity1 gs @@ -840,25 +866,25 @@ EMC EMC endstream endobj -191 0 obj -<< /Type /Page /Contents 192 0 R /Resources 190 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 189 0 R >> -endobj -193 0 obj -<< /D [ 191 0 R /XYZ 159.667 699.082 null ] >> +187 0 obj +<< /Type /Page /Contents 188 0 R /Resources 186 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 185 0 R >> endobj -194 0 obj -[ 165 0 R /XYZ 159.667 699.082 null ] +189 0 obj +<< /D [ 187 0 R /XYZ 159.667 699.082 null ] >> endobj 190 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R /F20 108 0 R /F15 52 0 R >> >> +[ 161 0 R /XYZ 159.667 699.082 null ] endobj -200 0 obj +186 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R /F20 106 0 R /F15 51 0 R >> >> +endobj +195 0 obj << /Length 232 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/part<> BDC BT /F19 24.78705 Tf 1 0 0 1 251.693 458.912 Tm [(P)31(art)]TJ @@ -876,25 +902,25 @@ EMC EMC endstream endobj -199 0 obj -<< /Type /Page /Contents 200 0 R /Resources 198 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 189 0 R >> +194 0 obj +<< /Type /Page /Contents 195 0 R /Resources 193 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 185 0 R >> endobj -201 0 obj -<< /D [ 199 0 R /XYZ 105.869 699.082 null ] >> +196 0 obj +<< /D [ 194 0 R /XYZ 105.869 699.082 null ] >> endobj -202 0 obj -[ 195 0 R /XYZ 105.869 699.082 null ] +197 0 obj +[ 191 0 R /XYZ 105.869 699.082 null ] endobj -203 0 obj -<< /D [ 199 0 R /XYZ 106.869 488.8 null ] >> +198 0 obj +<< /D [ 194 0 R /XYZ 106.869 488.8 null ] >> endobj -204 0 obj -[ 196 0 R /XYZ 106.869 488.8 null ] +199 0 obj +[ 192 0 R /XYZ 106.869 488.8 null ] endobj -198 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F16 38 0 R >> >> +193 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F16 37 0 R >> >> endobj -207 0 obj +202 0 obj << /Length 31 >> stream /opacity1 gs @@ -902,19 +928,19 @@ stream EMC endstream endobj -206 0 obj -<< /Type /Page /Contents 207 0 R /Resources 205 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 189 0 R >> +201 0 obj +<< /Type /Page /Contents 202 0 R /Resources 200 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 185 0 R >> endobj -208 0 obj -<< /D [ 206 0 R /XYZ 159.667 699.082 null ] >> +203 0 obj +<< /D [ 201 0 R /XYZ 159.667 699.082 null ] >> endobj -209 0 obj -[ 195 0 R /XYZ 159.667 699.082 null ] +204 0 obj +[ 191 0 R /XYZ 159.667 699.082 null ] endobj -205 0 obj +200 0 obj << /ExtGState 1 0 R >> endobj -214 0 obj +209 0 obj << /Length 627 >> stream /opacity1 gs @@ -952,19 +978,19 @@ EMC EMC endstream endobj -213 0 obj -<< /Type /Page /Contents 214 0 R /Resources 212 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 189 0 R >> +208 0 obj +<< /Type /Page /Contents 209 0 R /Resources 207 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 185 0 R >> endobj -215 0 obj -<< /D [ 213 0 R /XYZ 105.869 699.082 null ] >> +210 0 obj +<< /D [ 208 0 R /XYZ 105.869 699.082 null ] >> endobj -216 0 obj -[ 195 0 R /XYZ 105.869 699.082 null ] +211 0 obj +[ 191 0 R /XYZ 105.869 699.082 null ] endobj -212 0 obj -<< /ExtGState 1 0 R /Font << /F20 108 0 R /F15 52 0 R /F16 38 0 R >> >> +207 0 obj +<< /ExtGState 1 0 R /Font << /F20 106 0 R /F15 51 0 R /F16 37 0 R >> >> endobj -219 0 obj +214 0 obj << /Length 408 >> stream /opacity1 gs @@ -990,88 +1016,88 @@ EMC EMC endstream endobj -218 0 obj -<< /Type /Page /Contents 219 0 R /Resources 217 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 189 0 R >> +213 0 obj +<< /Type /Page /Contents 214 0 R /Resources 212 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 185 0 R >> endobj -220 0 obj -<< /D [ 218 0 R /XYZ 159.667 699.082 null ] >> +215 0 obj +<< /D [ 213 0 R /XYZ 159.667 699.082 null ] >> endobj -221 0 obj -[ 195 0 R /XYZ 159.667 699.082 null ] +216 0 obj +[ 191 0 R /XYZ 159.667 699.082 null ] endobj -217 0 obj -<< /ExtGState 1 0 R /Font << /F16 38 0 R /F20 108 0 R /F15 52 0 R >> >> +212 0 obj +<< /ExtGState 1 0 R /Font << /F16 37 0 R /F20 106 0 R /F15 51 0 R >> >> +endobj +295 0 obj +<< /Type/OBJR/Obj 248 0 R/Pg 294 0 R >> +endobj +296 0 obj +<< /Type/OBJR/Obj 250 0 R/Pg 294 0 R >> +endobj +297 0 obj +<< /Type/OBJR/Obj 252 0 R/Pg 294 0 R >> +endobj +298 0 obj +<< /Type/OBJR/Obj 254 0 R/Pg 294 0 R >> +endobj +299 0 obj +<< /Type/OBJR/Obj 256 0 R/Pg 294 0 R >> +endobj +300 0 obj +<< /Type/OBJR/Obj 258 0 R/Pg 294 0 R >> endobj 301 0 obj -<< /Type/OBJR/Obj 254 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 260 0 R/Pg 294 0 R >> endobj 302 0 obj -<< /Type/OBJR/Obj 256 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 264 0 R/Pg 294 0 R >> endobj 303 0 obj -<< /Type/OBJR/Obj 258 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 266 0 R/Pg 294 0 R >> endobj 304 0 obj -<< /Type/OBJR/Obj 260 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 268 0 R/Pg 294 0 R >> endobj 305 0 obj -<< /Type/OBJR/Obj 262 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 270 0 R/Pg 294 0 R >> endobj 306 0 obj -<< /Type/OBJR/Obj 264 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 272 0 R/Pg 294 0 R >> endobj 307 0 obj -<< /Type/OBJR/Obj 266 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 274 0 R/Pg 294 0 R >> endobj 308 0 obj -<< /Type/OBJR/Obj 270 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 276 0 R/Pg 294 0 R >> endobj 309 0 obj -<< /Type/OBJR/Obj 272 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 280 0 R/Pg 294 0 R >> endobj 310 0 obj -<< /Type/OBJR/Obj 274 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 282 0 R/Pg 294 0 R >> endobj 311 0 obj -<< /Type/OBJR/Obj 276 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 284 0 R/Pg 294 0 R >> endobj 312 0 obj -<< /Type/OBJR/Obj 278 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 286 0 R/Pg 294 0 R >> endobj 313 0 obj -<< /Type/OBJR/Obj 280 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 288 0 R/Pg 294 0 R >> endobj 314 0 obj -<< /Type/OBJR/Obj 282 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 290 0 R/Pg 294 0 R >> endobj 315 0 obj -<< /Type/OBJR/Obj 286 0 R/Pg 300 0 R >> -endobj -316 0 obj -<< /Type/OBJR/Obj 288 0 R/Pg 300 0 R >> +<< /Type/OBJR/Obj 292 0 R/Pg 294 0 R >> endobj 317 0 obj -<< /Type/OBJR/Obj 290 0 R/Pg 300 0 R >> -endobj -318 0 obj -<< /Type/OBJR/Obj 292 0 R/Pg 300 0 R >> -endobj -319 0 obj -<< /Type/OBJR/Obj 294 0 R/Pg 300 0 R >> -endobj -320 0 obj -<< /Type/OBJR/Obj 296 0 R/Pg 300 0 R >> -endobj -321 0 obj -<< /Type/OBJR/Obj 298 0 R/Pg 300 0 R >> -endobj -323 0 obj -<< /Length 7542 >> +<< /Length 7545 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Chapter)]TJ @@ -1513,119 +1539,119 @@ EMC EMC endstream endobj -300 0 obj -<< /Type /Page /Contents 323 0 R /Resources 322 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 189 0 R /Annots 338 0 R >> +294 0 obj +<< /Type /Page /Contents 317 0 R /Resources 316 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 185 0 R /Annots 332 0 R >> endobj -338 0 obj -[ 254 0 R 256 0 R 258 0 R 260 0 R 262 0 R 264 0 R 266 0 R 270 0 R 272 0 R 274 0 R 276 0 R 278 0 R 280 0 R 282 0 R 286 0 R 288 0 R 290 0 R 292 0 R 294 0 R 296 0 R 298 0 R ] +332 0 obj +[ 248 0 R 250 0 R 252 0 R 254 0 R 256 0 R 258 0 R 260 0 R 264 0 R 266 0 R 268 0 R 270 0 R 272 0 R 274 0 R 276 0 R 280 0 R 282 0 R 284 0 R 286 0 R 288 0 R 290 0 R 292 0 R ] +endobj +248 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 17 /Rect [ 120.817 290.737 127.791 301.087 ]/A << /S /GoTo /D (part*.1) /SD 35 0 R >> >> +endobj +250 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 18 /Rect [ 131.887 290.737 138.86 301.087 ]/A << /S /GoTo /D (chapter*.2) /SD 89 0 R >> >> +endobj +252 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 19 /Rect [ 142.956 290.737 149.93 301.087 ]/A << /S /GoTo /D (section*.3) /SD 91 0 R >> >> endobj 254 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 17 /Rect [ 120.817 290.737 127.791 301.087 ]/A << /S /GoTo /D (part*.1) /SD 36 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 20 /Rect [ 154.026 290.737 161 301.087 ]/A << /S /GoTo /D (subsection*.4) /SD 93 0 R >> >> endobj 256 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 18 /Rect [ 131.887 290.737 138.86 301.087 ]/A << /S /GoTo /D (chapter*.2) /SD 91 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 21 /Rect [ 165.095 290.737 172.069 301.087 ]/A << /S /GoTo /D (subsubsection*.5) /SD 95 0 R >> >> endobj 258 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 19 /Rect [ 142.956 290.737 149.93 301.087 ]/A << /S /GoTo /D (section*.3) /SD 93 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 22 /Rect [ 176.165 290.737 183.139 301.087 ]/A << /S /GoTo /D (paragraph*.6) /SD 98 0 R >> >> endobj 260 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 20 /Rect [ 154.026 290.737 161 301.087 ]/A << /S /GoTo /D (subsection*.4) /SD 95 0 R >> >> -endobj -262 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 21 /Rect [ 165.095 290.737 172.069 301.087 ]/A << /S /GoTo /D (subsubsection*.5) /SD 97 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 23 /Rect [ 187.235 290.737 194.209 301.087 ]/A << /S /GoTo /D (subparagraph*.7) /SD 100 0 R >> >> endobj 264 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 22 /Rect [ 176.165 290.737 183.139 301.087 ]/A << /S /GoTo /D (paragraph*.6) /SD 100 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 24 /Rect [ 120.817 278.782 127.791 289.132 ]/A << /S /GoTo /D (part.1) /SD 116 0 R >> >> endobj 266 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 23 /Rect [ 187.235 290.737 194.209 301.087 ]/A << /S /GoTo /D (subparagraph*.7) /SD 102 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 25 /Rect [ 131.887 278.782 143.842 289.132 ]/A << /S /GoTo /D (chapter.1) /SD 174 0 R >> >> +endobj +268 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 26 /Rect [ 147.937 278.782 159.893 289.132 ]/A << /S /GoTo /D (section.1.1) /SD 176 0 R >> >> endobj 270 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 24 /Rect [ 120.817 278.782 127.791 289.132 ]/A << /S /GoTo /D (part.1) /SD 119 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 27 /Rect [ 163.988 278.782 175.944 289.132 ]/A << /S /GoTo /D (subsection.1.1.1) /SD 178 0 R >> >> endobj 272 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 25 /Rect [ 131.887 278.782 143.842 289.132 ]/A << /S /GoTo /D (chapter.1) /SD 178 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 28 /Rect [ 180.039 278.782 191.995 289.132 ]/A << /S /GoTo /D (subsubsection.1.1.1.1) /SD 180 0 R >> >> endobj 274 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 26 /Rect [ 147.937 278.782 159.893 289.132 ]/A << /S /GoTo /D (section.1.1) /SD 180 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 29 /Rect [ 196.09 278.782 208.046 289.132 ]/A << /S /GoTo /D (paragraph.1.1.1.1.1) /SD 182 0 R >> >> endobj 276 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 27 /Rect [ 163.988 278.782 175.944 289.132 ]/A << /S /GoTo /D (subsection.1.1.1) /SD 182 0 R >> >> -endobj -278 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 28 /Rect [ 180.039 278.782 191.995 289.132 ]/A << /S /GoTo /D (subsubsection.1.1.1.1) /SD 184 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 30 /Rect [ 212.141 278.782 224.097 289.132 ]/A << /S /GoTo /D (subparagraph.1.1.1.1.1.1) /SD 184 0 R >> >> endobj 280 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 29 /Rect [ 196.09 278.782 208.046 289.132 ]/A << /S /GoTo /D (paragraph.1.1.1.1.1) /SD 186 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 31 /Rect [ 120.817 266.827 132.772 277.177 ]/A << /S /GoTo /D (part*.8) /SD 199 0 R >> >> endobj 282 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 30 /Rect [ 212.141 278.782 224.097 289.132 ]/A << /S /GoTo /D (subparagraph.1.1.1.1.1.1) /SD 188 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 32 /Rect [ 136.868 266.827 148.823 277.177 ]/A << /S /GoTo /D (chapter*.9) /SD 321 0 R >> >> +endobj +284 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 33 /Rect [ 152.919 266.827 164.874 277.177 ]/A << /S /GoTo /D (section*.10) /SD 323 0 R >> >> endobj 286 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 31 /Rect [ 120.817 266.827 132.772 277.177 ]/A << /S /GoTo /D (part*.8) /SD 204 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 34 /Rect [ 168.97 266.827 180.925 277.177 ]/A << /S /GoTo /D (subsection*.11) /SD 325 0 R >> >> endobj 288 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 32 /Rect [ 136.868 266.827 148.823 277.177 ]/A << /S /GoTo /D (chapter*.9) /SD 327 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 35 /Rect [ 185.021 266.827 196.976 277.177 ]/A << /S /GoTo /D (subsubsection*.12) /SD 327 0 R >> >> endobj 290 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 33 /Rect [ 152.919 266.827 164.874 277.177 ]/A << /S /GoTo /D (section*.10) /SD 329 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 36 /Rect [ 201.072 266.827 213.027 277.177 ]/A << /S /GoTo /D (paragraph*.13) /SD 329 0 R >> >> endobj 292 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 34 /Rect [ 168.97 266.827 180.925 277.177 ]/A << /S /GoTo /D (subsection*.11) /SD 331 0 R >> >> +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 37 /Rect [ 217.123 266.827 229.078 277.177 ]/A << /S /GoTo /D (subparagraph*.14) /SD 331 0 R >> >> endobj -294 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 35 /Rect [ 185.021 266.827 196.976 277.177 ]/A << /S /GoTo /D (subsubsection*.12) /SD 333 0 R >> >> +318 0 obj +<< /D [ 294 0 R /XYZ 105.869 699.082 null ] >> endobj -296 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 36 /Rect [ 201.072 266.827 213.027 277.177 ]/A << /S /GoTo /D (paragraph*.13) /SD 335 0 R >> >> +319 0 obj +[ 239 0 R /XYZ 105.869 699.082 null ] endobj -298 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 37 /Rect [ 217.123 266.827 229.078 277.177 ]/A << /S /GoTo /D (subparagraph*.14) /SD 337 0 R >> >> +320 0 obj +<< /D [ 294 0 R /XYZ 106.869 608.351 null ] >> +endobj +321 0 obj +[ 218 0 R /XYZ 106.869 608.351 null ] +endobj +322 0 obj +<< /D [ 294 0 R /XYZ 106.869 511.644 null ] >> +endobj +323 0 obj +[ 222 0 R /XYZ 106.869 511.644 null ] endobj 324 0 obj -<< /D [ 300 0 R /XYZ 105.869 699.082 null ] >> +<< /D [ 294 0 R /XYZ 106.869 457.95 null ] >> endobj 325 0 obj -[ 245 0 R /XYZ 105.869 699.082 null ] +[ 226 0 R /XYZ 106.869 457.95 null ] endobj 326 0 obj -<< /D [ 300 0 R /XYZ 106.869 608.351 null ] >> +<< /D [ 294 0 R /XYZ 106.869 411.672 null ] >> endobj 327 0 obj -[ 223 0 R /XYZ 106.869 608.351 null ] +[ 230 0 R /XYZ 106.869 411.672 null ] endobj 328 0 obj -<< /D [ 300 0 R /XYZ 106.869 511.644 null ] >> +<< /D [ 294 0 R /XYZ 106.869 367.387 null ] >> endobj 329 0 obj -[ 228 0 R /XYZ 106.869 511.644 null ] +[ 234 0 R /XYZ 106.869 367.387 null ] endobj 330 0 obj -<< /D [ 300 0 R /XYZ 106.869 457.95 null ] >> +<< /D [ 294 0 R /XYZ 106.869 329.536 null ] >> endobj 331 0 obj -[ 232 0 R /XYZ 106.869 457.95 null ] +[ 240 0 R /XYZ 106.869 329.536 null ] endobj -332 0 obj -<< /D [ 300 0 R /XYZ 106.869 411.672 null ] >> -endobj -333 0 obj -[ 236 0 R /XYZ 106.869 411.672 null ] -endobj -334 0 obj -<< /D [ 300 0 R /XYZ 106.869 367.387 null ] >> -endobj -335 0 obj -[ 240 0 R /XYZ 106.869 367.387 null ] -endobj -336 0 obj -<< /D [ 300 0 R /XYZ 106.869 329.536 null ] >> -endobj -337 0 obj -[ 246 0 R /XYZ 106.869 329.536 null ] -endobj -322 0 obj -<< /ExtGState 1 0 R /Font << /F19 37 0 R /F16 38 0 R /F15 52 0 R /F17 98 0 R >> >> +316 0 obj +<< /ExtGState 1 0 R /Font << /F19 36 0 R /F16 37 0 R /F15 51 0 R /F17 96 0 R >> >> endobj 1 0 obj << /opacity1 <> >> @@ -1639,117 +1665,115 @@ endobj 4 0 obj << >> endobj -339 0 obj +333 0 obj << /Marked true >> endobj +334 0 obj +<< /S /GoTo /D (part*.1) /SD 35 0 R >> +endobj +336 0 obj +(\376\377\000P\000a\000r\000t) +endobj +337 0 obj +<< /S /GoTo /D (chapter*.2) /SD 89 0 R >> +endobj +339 0 obj +(\376\377\000C\000h\000a\000p\000t\000e\000r) +endobj 340 0 obj -<< /S /GoTo /D (part*.1) /SD 36 0 R >> +<< /S /GoTo /D (section*.3) /SD 91 0 R >> endobj 342 0 obj -(\376\377\000P\000a\000r\000t) +(\376\377\000S\000e\000c\000t\000i\000o\000n) endobj 343 0 obj -<< /S /GoTo /D (chapter*.2) /SD 91 0 R >> +<< /S /GoTo /D (subsection*.4) /SD 93 0 R >> endobj 345 0 obj -(\376\377\000C\000h\000a\000p\000t\000e\000r) +(\376\377\000S\000u\000b\000s\000e\000c\000t\000i\000o\000n) endobj 346 0 obj -<< /S /GoTo /D (section*.3) /SD 93 0 R >> +<< /S /GoTo /D (part.1) /SD 116 0 R >> endobj 348 0 obj -(\376\377\000S\000e\000c\000t\000i\000o\000n) +(\376\377\000P\000a\000r\000t) endobj 349 0 obj -<< /S /GoTo /D (subsection*.4) /SD 95 0 R >> +<< /S /GoTo /D (chapter.1) /SD 174 0 R >> endobj 351 0 obj -(\376\377\000S\000u\000b\000s\000e\000c\000t\000i\000o\000n) +(\376\377\000C\000h\000a\000p\000t\000e\000r) endobj 352 0 obj -<< /S /GoTo /D (part.1) /SD 119 0 R >> +<< /S /GoTo /D (section.1.1) /SD 176 0 R >> endobj 354 0 obj -(\376\377\000P\000a\000r\000t) +(\376\377\000S\000e\000c\000t\000i\000o\000n) endobj 355 0 obj -<< /S /GoTo /D (chapter.1) /SD 178 0 R >> +<< /S /GoTo /D (subsection.1.1.1) /SD 178 0 R >> endobj 357 0 obj -(\376\377\000C\000h\000a\000p\000t\000e\000r) -endobj -358 0 obj -<< /S /GoTo /D (section.1.1) /SD 180 0 R >> -endobj -360 0 obj -(\376\377\000S\000e\000c\000t\000i\000o\000n) -endobj -361 0 obj -<< /S /GoTo /D (subsection.1.1.1) /SD 182 0 R >> -endobj -363 0 obj (\376\377\000S\000u\000b\000s\000e\000c\000t\000i\000o\000n) endobj 6 0 obj -<< /Nums [0 [28 0 R] +<< /Nums [0 [27 0 R] 1 [] -2 [46 0 R] +2 [45 0 R] 3 [] -4 [ 60 0 R 62 0 R 64 0 R 66 0 R 68 0 R 70 0 R 72 0 R 74 0 R 76 0 R 78 0 R 80 0 R 82 0 R 84 0 R] +4 [ 58 0 R 60 0 R 62 0 R 64 0 R 66 0 R 68 0 R 70 0 R 72 0 R 74 0 R 76 0 R 78 0 R 80 0 R 82 0 R] 5 [] -6 [ 111 0 R 112 0 R] +6 [ 108 0 R 109 0 R 108 0 R] 7 [] -8 [126 0 R] +8 [123 0 R] 9 [] -10 [ 139 0 R 140 0 R 142 0 R 145 0 R 144 0 R 147 0 R 150 0 R 149 0 R 152 0 R 155 0 R 154 0 R 157 0 R 159 0 R 160 0 R 159 0 R 162 0 R 164 0 R 166 0 R 167 0 R 166 0 R 169 0 R 171 0 R] +10 [ 135 0 R 136 0 R 135 0 R 138 0 R 141 0 R 140 0 R 140 0 R 143 0 R 146 0 R 145 0 R 145 0 R 148 0 R 151 0 R 150 0 R 150 0 R 153 0 R 155 0 R 156 0 R 155 0 R 158 0 R 160 0 R 162 0 R 163 0 R 162 0 R 165 0 R 167 0 R] 11 [] -12 [197 0 R] +12 [192 0 R] 13 [] -14 [211 0 R] +14 [206 0 R] 15 [] -16 [ 224 0 R 226 0 R 228 0 R 230 0 R 232 0 R 234 0 R 236 0 R 238 0 R 240 0 R 242 0 R 244 0 R 246 0 R 248 0 R 250 0 R 253 0 R 252 0 R 255 0 R 252 0 R 257 0 R 252 0 R 259 0 R 252 0 R 261 0 R 252 0 R 263 0 R 252 0 R 265 0 R 269 0 R 268 0 R 271 0 R 268 0 R 273 0 R 268 0 R 275 0 R 268 0 R 277 0 R 268 0 R 279 0 R 268 0 R 281 0 R 285 0 R 284 0 R 287 0 R 284 0 R 289 0 R 284 0 R 291 0 R 284 0 R 293 0 R 284 0 R 295 0 R 284 0 R 297 0 R] -17 253 0 R -18 255 0 R -19 257 0 R -20 259 0 R -21 261 0 R -22 263 0 R -23 265 0 R -24 269 0 R -25 271 0 R -26 273 0 R -27 275 0 R -28 277 0 R -29 279 0 R -30 281 0 R -31 285 0 R -32 287 0 R -33 289 0 R -34 291 0 R -35 293 0 R -36 295 0 R -37 297 0 R +16 [ 218 0 R 220 0 R 222 0 R 224 0 R 226 0 R 228 0 R 230 0 R 232 0 R 234 0 R 236 0 R 238 0 R 240 0 R 242 0 R 244 0 R 247 0 R 246 0 R 249 0 R 246 0 R 251 0 R 246 0 R 253 0 R 246 0 R 255 0 R 246 0 R 257 0 R 246 0 R 259 0 R 263 0 R 262 0 R 265 0 R 262 0 R 267 0 R 262 0 R 269 0 R 262 0 R 271 0 R 262 0 R 273 0 R 262 0 R 275 0 R 279 0 R 278 0 R 281 0 R 278 0 R 283 0 R 278 0 R 285 0 R 278 0 R 287 0 R 278 0 R 289 0 R 278 0 R 291 0 R] +17 247 0 R +18 249 0 R +19 251 0 R +20 253 0 R +21 255 0 R +22 257 0 R +23 259 0 R +24 263 0 R +25 265 0 R +26 267 0 R +27 269 0 R +28 271 0 R +29 273 0 R +30 275 0 R +31 279 0 R +32 281 0 R +33 283 0 R +34 285 0 R +35 287 0 R +36 289 0 R +37 291 0 R ] >> endobj -364 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 45 0 R (ID.0010) 46 0 R (ID.0011) 58 0 R (ID.0012) 59 0 R (ID.0013) 60 0 R (ID.0014) 61 0 R (ID.0015) 62 0 R (ID.0016) 63 0 R (ID.0017) 64 0 R (ID.0018) 65 0 R (ID.0019) 66 0 R (ID.0020) 67 0 R (ID.0021) 68 0 R (ID.0022) 69 0 R (ID.0023) 70 0 R (ID.0024) 71 0 R (ID.0025) 72 0 R (ID.0026) 73 0 R (ID.0027) 74 0 R (ID.0028) 75 0 R (ID.0029) 76 0 R (ID.0030) 77 0 R (ID.0031) 78 0 R (ID.0032) 79 0 R (ID.0033) 80 0 R (ID.0034) 81 0 R (ID.0035) 82 0 R (ID.0036) 83 0 R (ID.0037) 84 0 R (ID.0038) 109 0 R (ID.0039) 110 0 R (ID.0040) 111 0 R (ID.0041) 112 0 R (ID.0042) 125 0 R (ID.0043) 126 0 R (ID.0044) 137 0 R (ID.0045) 138 0 R (ID.0046) 139 0 R (ID.0047) 140 0 R (ID.0048) 141 0 R (ID.0049) 142 0 R (ID.0050) 143 0 R (ID.0051) 144 0 R ] >> +358 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 44 0 R (ID.0009) 45 0 R (ID.0010) 57 0 R (ID.0011) 58 0 R (ID.0012) 59 0 R (ID.0013) 60 0 R (ID.0014) 61 0 R (ID.0015) 62 0 R (ID.0016) 63 0 R (ID.0017) 64 0 R (ID.0018) 65 0 R (ID.0019) 66 0 R (ID.0020) 67 0 R (ID.0021) 68 0 R (ID.0022) 69 0 R (ID.0023) 70 0 R (ID.0024) 71 0 R (ID.0025) 72 0 R (ID.0026) 73 0 R (ID.0027) 74 0 R (ID.0028) 75 0 R (ID.0029) 76 0 R (ID.0030) 77 0 R (ID.0031) 78 0 R (ID.0032) 79 0 R (ID.0033) 80 0 R (ID.0034) 81 0 R (ID.0035) 82 0 R (ID.0036) 107 0 R (ID.0037) 108 0 R (ID.0038) 109 0 R (ID.0039) 122 0 R (ID.0040) 123 0 R (ID.0041) 134 0 R (ID.0042) 135 0 R (ID.0043) 136 0 R (ID.0044) 137 0 R (ID.0045) 138 0 R (ID.0046) 139 0 R (ID.0047) 140 0 R (ID.0048) 141 0 R (ID.0049) 142 0 R (ID.0050) 143 0 R (ID.0051) 144 0 R ] >> endobj -365 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 145 0 R (ID.0053) 146 0 R (ID.0054) 147 0 R (ID.0055) 148 0 R (ID.0056) 149 0 R (ID.0057) 150 0 R (ID.0058) 151 0 R (ID.0059) 152 0 R (ID.0060) 153 0 R (ID.0061) 154 0 R (ID.0062) 155 0 R (ID.0063) 156 0 R (ID.0064) 157 0 R (ID.0065) 158 0 R (ID.0066) 159 0 R (ID.0067) 160 0 R (ID.0068) 161 0 R (ID.0069) 162 0 R (ID.0070) 163 0 R (ID.0071) 164 0 R (ID.0072) 165 0 R (ID.0073) 166 0 R (ID.0074) 167 0 R (ID.0075) 168 0 R (ID.0076) 169 0 R (ID.0077) 170 0 R (ID.0078) 171 0 R (ID.0079) 195 0 R (ID.0080) 196 0 R (ID.0081) 197 0 R (ID.0082) 210 0 R (ID.0083) 211 0 R (ID.0084) 222 0 R (ID.0085) 223 0 R (ID.0086) 224 0 R (ID.0087) 225 0 R (ID.0088) 226 0 R (ID.0089) 227 0 R (ID.0090) 228 0 R (ID.0091) 229 0 R (ID.0092) 230 0 R (ID.0093) 231 0 R (ID.0094) 232 0 R (ID.0095) 233 0 R (ID.0096) 234 0 R (ID.0097) 235 0 R (ID.0098) 236 0 R (ID.0099) 237 0 R (ID.0100) 238 0 R (ID.0101) 239 0 R ] >> +359 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 145 0 R (ID.0053) 146 0 R (ID.0054) 147 0 R (ID.0055) 148 0 R (ID.0056) 149 0 R (ID.0057) 150 0 R (ID.0058) 151 0 R (ID.0059) 152 0 R (ID.0060) 153 0 R (ID.0061) 154 0 R (ID.0062) 155 0 R (ID.0063) 156 0 R (ID.0064) 157 0 R (ID.0065) 158 0 R (ID.0066) 159 0 R (ID.0067) 160 0 R (ID.0068) 161 0 R (ID.0069) 162 0 R (ID.0070) 163 0 R (ID.0071) 164 0 R (ID.0072) 165 0 R (ID.0073) 166 0 R (ID.0074) 167 0 R (ID.0075) 191 0 R (ID.0076) 192 0 R (ID.0077) 205 0 R (ID.0078) 206 0 R (ID.0079) 217 0 R (ID.0080) 218 0 R (ID.0081) 219 0 R (ID.0082) 220 0 R (ID.0083) 221 0 R (ID.0084) 222 0 R (ID.0085) 223 0 R (ID.0086) 224 0 R (ID.0087) 225 0 R (ID.0088) 226 0 R (ID.0089) 227 0 R (ID.0090) 228 0 R (ID.0091) 229 0 R (ID.0092) 230 0 R (ID.0093) 231 0 R (ID.0094) 232 0 R (ID.0095) 233 0 R (ID.0096) 234 0 R (ID.0097) 235 0 R (ID.0098) 236 0 R (ID.0099) 237 0 R (ID.0100) 238 0 R (ID.0101) 239 0 R ] >> endobj -366 0 obj -<< /Limits [(ID.0102) (ID.0139)]/Names [(ID.0102) 240 0 R (ID.0103) 241 0 R (ID.0104) 242 0 R (ID.0105) 243 0 R (ID.0106) 244 0 R (ID.0107) 245 0 R (ID.0108) 246 0 R (ID.0109) 247 0 R (ID.0110) 248 0 R (ID.0111) 249 0 R (ID.0112) 250 0 R (ID.0113) 251 0 R (ID.0114) 252 0 R (ID.0115) 253 0 R (ID.0116) 255 0 R (ID.0117) 257 0 R (ID.0118) 259 0 R (ID.0119) 261 0 R (ID.0120) 263 0 R (ID.0121) 265 0 R (ID.0122) 267 0 R (ID.0123) 268 0 R (ID.0124) 269 0 R (ID.0125) 271 0 R (ID.0126) 273 0 R (ID.0127) 275 0 R (ID.0128) 277 0 R (ID.0129) 279 0 R (ID.0130) 281 0 R (ID.0131) 283 0 R (ID.0132) 284 0 R (ID.0133) 285 0 R (ID.0134) 287 0 R (ID.0135) 289 0 R (ID.0136) 291 0 R (ID.0137) 293 0 R (ID.0138) 295 0 R (ID.0139) 297 0 R ] >> +360 0 obj +<< /Limits [(ID.0102) (ID.0133)]/Names [(ID.0102) 240 0 R (ID.0103) 241 0 R (ID.0104) 242 0 R (ID.0105) 243 0 R (ID.0106) 244 0 R (ID.0107) 245 0 R (ID.0108) 246 0 R (ID.0109) 247 0 R (ID.0110) 249 0 R (ID.0111) 251 0 R (ID.0112) 253 0 R (ID.0113) 255 0 R (ID.0114) 257 0 R (ID.0115) 259 0 R (ID.0116) 261 0 R (ID.0117) 262 0 R (ID.0118) 263 0 R (ID.0119) 265 0 R (ID.0120) 267 0 R (ID.0121) 269 0 R (ID.0122) 271 0 R (ID.0123) 273 0 R (ID.0124) 275 0 R (ID.0125) 277 0 R (ID.0126) 278 0 R (ID.0127) 279 0 R (ID.0128) 281 0 R (ID.0129) 283 0 R (ID.0130) 285 0 R (ID.0131) 287 0 R (ID.0132) 289 0 R (ID.0133) 291 0 R ] >> endobj -367 0 obj -<< /Kids [364 0 R 365 0 R 366 0 R] >> +361 0 obj +<< /Kids [358 0 R 359 0 R 360 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -368 0 obj -<< /center <> -/justify <> -/raggedright <> +362 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1765,7 +1789,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1783,7 +1807,7 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 22 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [26 0 R 109 0 R 195 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [26 0 R 107 0 R 191 0 R] /ID (ID.0002) >> endobj 23 0 obj << /Type /StructElem /S /Artifact /NS 11 0 R /P 22 0 R /ID (ID.0003) >> @@ -1795,411 +1819,393 @@ endobj << /Type /StructElem /S /Artifact /NS 15 0 R /P 22 0 R /ID (ID.0005) >> endobj 26 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [27 0 R 45 0 R 58 0 R] /ID (ID.0006) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [27 0 R 44 0 R 57 0 R] /ID (ID.0006) >> endobj 27 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 26 0 R /K 28 0 R /ID (ID.0007) >> +<< /Type /StructElem /T /S /part /NS 15 0 R /P 26 0 R /K <> /ID (ID.0007) >> endobj -28 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 27 0 R /K <> /ID (ID.0008) >> +44 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 26 0 R /K 45 0 R /ID (ID.0008) >> endobj 45 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 26 0 R /K 46 0 R /ID (ID.0009) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 44 0 R /K <> /ID (ID.0009) >> endobj -46 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 45 0 R /K <> /ID (ID.0010) >> +57 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 26 0 R /K [58 0 R 59 0 R 61 0 R] /ID (ID.0010) >> endobj 58 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 26 0 R /K [59 0 R 61 0 R 63 0 R] /ID (ID.0011) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 57 0 R /K <> /ID (ID.0011) >> endobj 59 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 58 0 R /K 60 0 R /ID (ID.0012) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 57 0 R /K 60 0 R /ID (ID.0012) >> endobj 60 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 59 0 R /K <> /ID (ID.0013) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 59 0 R /K <> /ID (ID.0013) >> endobj 61 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 58 0 R /K 62 0 R /ID (ID.0014) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 57 0 R /K [62 0 R 63 0 R 65 0 R] /ID (ID.0014) >> endobj 62 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.0015) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 61 0 R /K <> /ID (ID.0015) >> endobj 63 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 58 0 R /K [64 0 R 65 0 R 67 0 R] /ID (ID.0016) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 61 0 R /K 64 0 R /ID (ID.0016) >> endobj 64 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 63 0 R /K <> /ID (ID.0017) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 63 0 R /K <> /ID (ID.0017) >> endobj 65 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 63 0 R /K 66 0 R /ID (ID.0018) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 61 0 R /K [66 0 R 67 0 R 69 0 R] /ID (ID.0018) >> endobj 66 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 65 0 R /K <> /ID (ID.0019) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 65 0 R /K <> /ID (ID.0019) >> endobj 67 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 63 0 R /K [68 0 R 69 0 R 71 0 R] /ID (ID.0020) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 65 0 R /K 68 0 R /ID (ID.0020) >> endobj 68 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 67 0 R /K <> /ID (ID.0021) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 67 0 R /K <> /ID (ID.0021) >> endobj 69 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 67 0 R /K 70 0 R /ID (ID.0022) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 65 0 R /K [70 0 R 71 0 R 73 0 R] /ID (ID.0022) >> endobj 70 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 69 0 R /K <> /ID (ID.0023) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 69 0 R /K <> /ID (ID.0023) >> endobj 71 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 67 0 R /K [72 0 R 73 0 R 75 0 R] /ID (ID.0024) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 69 0 R /K 72 0 R /ID (ID.0024) >> endobj 72 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 71 0 R /K <> /ID (ID.0025) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 71 0 R /K <> /ID (ID.0025) >> endobj 73 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 71 0 R /K 74 0 R /ID (ID.0026) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 69 0 R /K [74 0 R 75 0 R 77 0 R] /ID (ID.0026) >> endobj 74 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 73 0 R /K <> /ID (ID.0027) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 73 0 R /K <> /ID (ID.0027) >> endobj 75 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 71 0 R /K [76 0 R 77 0 R 79 0 R] /ID (ID.0028) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 73 0 R /K 76 0 R /ID (ID.0028) >> endobj 76 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 75 0 R /K <> /ID (ID.0029) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.0029) >> endobj 77 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 75 0 R /K 78 0 R /ID (ID.0030) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 73 0 R /K [78 0 R 79 0 R 81 0 R] /ID (ID.0030) >> endobj 78 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 77 0 R /K <> /ID (ID.0031) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 77 0 R /K <> /ID (ID.0031) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 75 0 R /K [80 0 R 81 0 R 83 0 R] /ID (ID.0032) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 77 0 R /K 80 0 R /ID (ID.0032) >> endobj 80 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 79 0 R /K <> /ID (ID.0033) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 79 0 R /K <> /ID (ID.0033) >> endobj 81 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 79 0 R /K 82 0 R /ID (ID.0034) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 77 0 R /K 82 0 R /ID (ID.0034) >> endobj 82 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 81 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 81 0 R /K <> /ID (ID.0035) >> endobj -83 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 79 0 R /K 84 0 R /ID (ID.0036) >> +107 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [108 0 R 122 0 R 134 0 R] /ID (ID.0036) >> endobj -84 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 83 0 R /K <> /ID (ID.0037) >> +108 0 obj +<< /Type /StructElem /T /S /part /NS 15 0 R /P 107 0 R /K [<> 109 0 R <> ] /ID (ID.0037) >> endobj 109 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [110 0 R 125 0 R 137 0 R] /ID (ID.0038) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 108 0 R /K <> /ID (ID.0038) >> endobj -110 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 109 0 R /K [111 0 R 112 0 R] /ID (ID.0039) >> +122 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 107 0 R /K 123 0 R /ID (ID.0039) >> endobj -111 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 110 0 R /K <> /ID (ID.0040) >> +123 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 122 0 R /K <> /ID (ID.0040) >> endobj -112 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 110 0 R /K <> /ID (ID.0041) >> +134 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 107 0 R /K [135 0 R 137 0 R 139 0 R] /ID (ID.0041) >> endobj -125 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 109 0 R /K 126 0 R /ID (ID.0042) >> +135 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 134 0 R /K [<> 136 0 R <> ] /ID (ID.0042) >> endobj -126 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 125 0 R /K <> /ID (ID.0043) >> +136 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 135 0 R /K <> /ID (ID.0043) >> endobj 137 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 109 0 R /K [138 0 R 141 0 R 143 0 R] /ID (ID.0044) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 134 0 R /K 138 0 R /ID (ID.0044) >> endobj 138 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 137 0 R /K [139 0 R 140 0 R] /ID (ID.0045) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 137 0 R /K <> /ID (ID.0045) >> endobj 139 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 138 0 R /K <> /ID (ID.0046) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 134 0 R /K [140 0 R 142 0 R 144 0 R] /ID (ID.0046) >> endobj 140 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 138 0 R /K <> /ID (ID.0047) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 139 0 R /K [141 0 R <> <> ] /ID (ID.0047) >> endobj 141 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 137 0 R /K 142 0 R /ID (ID.0048) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 140 0 R /K <> /ID (ID.0048) >> endobj 142 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 141 0 R /K <> /ID (ID.0049) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 139 0 R /K 143 0 R /ID (ID.0049) >> endobj 143 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 137 0 R /K [144 0 R 146 0 R 148 0 R] /ID (ID.0050) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 142 0 R /K <> /ID (ID.0050) >> endobj 144 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 143 0 R /K [145 0 R <> ] /ID (ID.0051) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 139 0 R /K [145 0 R 147 0 R 149 0 R] /ID (ID.0051) >> endobj 145 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 144 0 R /K <> /ID (ID.0052) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 144 0 R /K [146 0 R <> <> ] /ID (ID.0052) >> endobj 146 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 143 0 R /K 147 0 R /ID (ID.0053) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 145 0 R /K <> /ID (ID.0053) >> endobj 147 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 146 0 R /K <> /ID (ID.0054) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 144 0 R /K 148 0 R /ID (ID.0054) >> endobj 148 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 143 0 R /K [149 0 R 151 0 R 153 0 R] /ID (ID.0055) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 147 0 R /K <> /ID (ID.0055) >> endobj 149 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 148 0 R /K [150 0 R <> ] /ID (ID.0056) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 144 0 R /K [150 0 R 152 0 R 154 0 R] /ID (ID.0056) >> endobj 150 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 149 0 R /K <> /ID (ID.0057) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 149 0 R /K [151 0 R <> <> ] /ID (ID.0057) >> endobj 151 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 148 0 R /K 152 0 R /ID (ID.0058) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 150 0 R /K <> /ID (ID.0058) >> endobj 152 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 151 0 R /K <> /ID (ID.0059) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 149 0 R /K 153 0 R /ID (ID.0059) >> endobj 153 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 148 0 R /K [154 0 R 156 0 R 158 0 R] /ID (ID.0060) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 152 0 R /K <> /ID (ID.0060) >> endobj 154 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 153 0 R /K [155 0 R <> ] /ID (ID.0061) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 149 0 R /K [155 0 R 157 0 R 159 0 R 161 0 R] /ID (ID.0061) >> endobj 155 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 154 0 R /K <> /ID (ID.0062) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 154 0 R /K [<> 156 0 R <> ] /ID (ID.0062) >> endobj 156 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 153 0 R /K 157 0 R /ID (ID.0063) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 155 0 R /K <> /ID (ID.0063) >> endobj 157 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 156 0 R /K <> /ID (ID.0064) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 154 0 R /K 158 0 R /ID (ID.0064) >> endobj 158 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 153 0 R /K [159 0 R 161 0 R 163 0 R 165 0 R] /ID (ID.0065) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 157 0 R /K <> /ID (ID.0065) >> endobj 159 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 158 0 R /K [<> 160 0 R <> ] /ID (ID.0066) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 154 0 R /K 160 0 R /ID (ID.0066) >> endobj 160 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 159 0 R /K <> /ID (ID.0067) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 159 0 R /K <> /ID (ID.0067) >> endobj 161 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 158 0 R /K 162 0 R /ID (ID.0068) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 154 0 R /K [162 0 R 164 0 R 166 0 R] /ID (ID.0068) >> endobj 162 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 161 0 R /K <> /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 161 0 R /K [<> 163 0 R <> ] /ID (ID.0069) >> endobj 163 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 158 0 R /K 164 0 R /ID (ID.0070) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 162 0 R /K <> /ID (ID.0070) >> endobj 164 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 163 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 161 0 R /K 165 0 R /ID (ID.0071) >> endobj 165 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 158 0 R /K [166 0 R 168 0 R 170 0 R] /ID (ID.0072) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 164 0 R /K <> /ID (ID.0072) >> endobj 166 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 165 0 R /K [<> 167 0 R <> ] /ID (ID.0073) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 161 0 R /K 167 0 R /ID (ID.0073) >> endobj 167 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 166 0 R /K <> /ID (ID.0074) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 166 0 R /K <> /ID (ID.0074) >> endobj -168 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 169 0 R /ID (ID.0075) >> +191 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [192 0 R 205 0 R 217 0 R] /ID (ID.0075) >> endobj -169 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 168 0 R /K <> /ID (ID.0076) >> +192 0 obj +<< /Type /StructElem /T /S /part /NS 15 0 R /P 191 0 R /K <> /ID (ID.0076) >> endobj -170 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 171 0 R /ID (ID.0077) >> +205 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 191 0 R /K 206 0 R /ID (ID.0077) >> endobj -171 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K <> /ID (ID.0078) >> +206 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 205 0 R /K <> /ID (ID.0078) >> endobj -195 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [196 0 R 210 0 R 222 0 R] /ID (ID.0079) >> +217 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 191 0 R /K [218 0 R 219 0 R 221 0 R] /ID (ID.0079) >> endobj -196 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 195 0 R /K 197 0 R /ID (ID.0080) >> +218 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 217 0 R /K <> /ID (ID.0080) >> endobj -197 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 196 0 R /K <> /ID (ID.0081) >> +219 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 217 0 R /K 220 0 R /ID (ID.0081) >> endobj -210 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 195 0 R /K 211 0 R /ID (ID.0082) >> +220 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 219 0 R /K <> /ID (ID.0082) >> endobj -211 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 210 0 R /K <> /ID (ID.0083) >> +221 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 217 0 R /K [222 0 R 223 0 R 225 0 R] /ID (ID.0083) >> endobj 222 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 195 0 R /K [223 0 R 225 0 R 227 0 R] /ID (ID.0084) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 221 0 R /K <> /ID (ID.0084) >> endobj 223 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 222 0 R /K 224 0 R /ID (ID.0085) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 221 0 R /K 224 0 R /ID (ID.0085) >> endobj 224 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 223 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 223 0 R /K <> /ID (ID.0086) >> endobj 225 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 222 0 R /K 226 0 R /ID (ID.0087) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 221 0 R /K [226 0 R 227 0 R 229 0 R] /ID (ID.0087) >> endobj 226 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 225 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 225 0 R /K <> /ID (ID.0088) >> endobj 227 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 222 0 R /K [228 0 R 229 0 R 231 0 R] /ID (ID.0089) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 228 0 R /ID (ID.0089) >> endobj 228 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 227 0 R /K <> /ID (ID.0090) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 227 0 R /K <> /ID (ID.0090) >> endobj 229 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 227 0 R /K 230 0 R /ID (ID.0091) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 225 0 R /K [230 0 R 231 0 R 233 0 R] /ID (ID.0091) >> endobj 230 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 229 0 R /K <> /ID (ID.0092) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 229 0 R /K <> /ID (ID.0092) >> endobj 231 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 227 0 R /K [232 0 R 233 0 R 235 0 R] /ID (ID.0093) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 229 0 R /K 232 0 R /ID (ID.0093) >> endobj 232 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 231 0 R /K <> /ID (ID.0094) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 231 0 R /K <> /ID (ID.0094) >> endobj 233 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 231 0 R /K 234 0 R /ID (ID.0095) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 229 0 R /K [234 0 R 235 0 R 237 0 R 239 0 R] /ID (ID.0095) >> endobj 234 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 233 0 R /K <> /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 233 0 R /K <> /ID (ID.0096) >> endobj 235 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [236 0 R 237 0 R 239 0 R] /ID (ID.0097) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 233 0 R /K 236 0 R /ID (ID.0097) >> endobj 236 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 235 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 235 0 R /K <> /ID (ID.0098) >> endobj 237 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 235 0 R /K 238 0 R /ID (ID.0099) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 233 0 R /K 238 0 R /ID (ID.0099) >> endobj 238 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 237 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 237 0 R /K <> /ID (ID.0100) >> endobj 239 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [240 0 R 241 0 R 243 0 R 245 0 R] /ID (ID.0101) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 233 0 R /K [240 0 R 241 0 R 243 0 R 245 0 R 261 0 R 277 0 R] /ID (ID.0101) >> endobj 240 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 239 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 239 0 R /K <> /ID (ID.0102) >> endobj 241 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 242 0 R /ID (ID.0103) >> endobj 242 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 241 0 R /K <> /ID (ID.0104) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 241 0 R /K <> /ID (ID.0104) >> endobj 243 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 244 0 R /ID (ID.0105) >> endobj 244 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0106) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0106) >> endobj 245 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 239 0 R /K [246 0 R 247 0 R 249 0 R 251 0 R 267 0 R 283 0 R] /ID (ID.0107) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 246 0 R /ID (ID.0107) >> endobj 246 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 245 0 R /K <> /ID (ID.0108) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 245 0 R /K [ 247 0 R <> 249 0 R <> 251 0 R <> 253 0 R <> 255 0 R <> 257 0 R <> 259 0 R ] /ID (ID.0108) >> endobj 247 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 245 0 R /K 248 0 R /ID (ID.0109) >> -endobj -248 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 247 0 R /K <> /ID (ID.0110) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 295 0 R] /ID (ID.0109) >> endobj 249 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 245 0 R /K 250 0 R /ID (ID.0111) >> -endobj -250 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 249 0 R /K <> /ID (ID.0112) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 296 0 R] /ID (ID.0110) >> endobj 251 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 245 0 R /K 252 0 R /ID (ID.0113) >> -endobj -252 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 251 0 R /K [ 253 0 R <> 255 0 R <> 257 0 R <> 259 0 R <> 261 0 R <> 263 0 R <> 265 0 R ] /ID (ID.0114) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 297 0 R] /ID (ID.0111) >> endobj 253 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 301 0 R] /ID (ID.0115) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 298 0 R] /ID (ID.0112) >> endobj 255 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 302 0 R] /ID (ID.0116) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 299 0 R] /ID (ID.0113) >> endobj 257 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 303 0 R] /ID (ID.0117) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 300 0 R] /ID (ID.0114) >> endobj 259 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 304 0 R] /ID (ID.0118) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 246 0 R /K [<> 301 0 R] /ID (ID.0115) >> endobj 261 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 305 0 R] /ID (ID.0119) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 262 0 R /ID (ID.0116) >> +endobj +262 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 261 0 R /K [ 263 0 R <> 265 0 R <> 267 0 R <> 269 0 R <> 271 0 R <> 273 0 R <> 275 0 R ] /ID (ID.0117) >> endobj 263 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 306 0 R] /ID (ID.0120) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 302 0 R] /ID (ID.0118) >> endobj 265 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 252 0 R /K [<> 307 0 R] /ID (ID.0121) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 303 0 R] /ID (ID.0119) >> endobj 267 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 245 0 R /K 268 0 R /ID (ID.0122) >> -endobj -268 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 267 0 R /K [ 269 0 R <> 271 0 R <> 273 0 R <> 275 0 R <> 277 0 R <> 279 0 R <> 281 0 R ] /ID (ID.0123) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 304 0 R] /ID (ID.0120) >> endobj 269 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 308 0 R] /ID (ID.0124) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 305 0 R] /ID (ID.0121) >> endobj 271 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 309 0 R] /ID (ID.0125) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 306 0 R] /ID (ID.0122) >> endobj 273 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 310 0 R] /ID (ID.0126) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 307 0 R] /ID (ID.0123) >> endobj 275 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 311 0 R] /ID (ID.0127) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 262 0 R /K [<> 308 0 R] /ID (ID.0124) >> endobj 277 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 312 0 R] /ID (ID.0128) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 278 0 R /ID (ID.0125) >> +endobj +278 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 277 0 R /K [ 279 0 R <> 281 0 R <> 283 0 R <> 285 0 R <> 287 0 R <> 289 0 R <> 291 0 R ] /ID (ID.0126) >> endobj 279 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 313 0 R] /ID (ID.0129) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 309 0 R] /ID (ID.0127) >> endobj 281 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 314 0 R] /ID (ID.0130) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 310 0 R] /ID (ID.0128) >> endobj 283 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 245 0 R /K 284 0 R /ID (ID.0131) >> -endobj -284 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 283 0 R /K [ 285 0 R <> 287 0 R <> 289 0 R <> 291 0 R <> 293 0 R <> 295 0 R <> 297 0 R ] /ID (ID.0132) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 311 0 R] /ID (ID.0129) >> endobj 285 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 315 0 R] /ID (ID.0133) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 312 0 R] /ID (ID.0130) >> endobj 287 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 316 0 R] /ID (ID.0134) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 313 0 R] /ID (ID.0131) >> endobj 289 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 317 0 R] /ID (ID.0135) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 314 0 R] /ID (ID.0132) >> endobj 291 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 318 0 R] /ID (ID.0136) >> -endobj -293 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 319 0 R] /ID (ID.0137) >> -endobj -295 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 320 0 R] /ID (ID.0138) >> -endobj -297 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 284 0 R /K [<> 321 0 R] /ID (ID.0139) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 278 0 R /K [<> 315 0 R] /ID (ID.0133) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 367 0 R /ClassMap 368 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 361 0 R /ClassMap 362 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> endobj -299 0 obj +293 0 obj << /Type /Metadata /Subtype /XML /Length 12100 >> stream @@ -2439,23 +2445,23 @@ stream endstream endobj -369 0 obj +363 0 obj [277.8 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 0 722.2 0 680.6 0 0 750 361.1 0 0 0 0 750 777.8 680.6 0 736.1 555.6 722.2 ] endobj -370 0 obj +364 0 obj [319.4 0 0 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 786.1 0 0 638.9 0 0 0 0 0 0 0 0 0 0 0 0 0 559 638.9 511.1 0 527.1 0 575 638.9 319.4 0 0 0 0 638.9 575 638.9 0 473.6 453.6 447.2 638.9 ] endobj -371 0 obj +365 0 obj [ 103 [ 333 ] ] endobj -373 0 obj +367 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -372 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 373 0 R >> +366 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 367 0 R >> endobj -374 0 obj +368 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2489,47 +2495,47 @@ end %%EOF endstream endobj -52 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 375 0 R ] /ToUnicode 374 0 R >> +51 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 369 0 R ] /ToUnicode 368 0 R >> endobj -375 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 372 0 R /W 371 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +369 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 366 0 R /W 365 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -376 0 obj +370 0 obj [277.8 0 0 0 500 500 500 500 500 500 500 500 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 444.4 0 0 0 0 0 0 277.8 833.3 555.6 500 0 0 391.7 394.4 388.9 0 0 0 527.8 ] endobj -377 0 obj +371 0 obj [312.5 0 0 562.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 812.5 0 0 0 0 0 419 0 0 0 0 0 0 768.5 0 0 625 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 625 500 0 513.3 0 0 625 312.5 0 0 0 0 625 562.5 625 0 459.5 443.8 437.5 625 ] endobj -379 0 obj +373 0 obj << /Length1 1647 /Length2 10662 /Length3 0 /Length 12309 >> [BINARY STREAM] endobj -378 0 obj -<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 379 0 R >> +372 0 obj +<< /Type /FontDescriptor /FontName /IISMVY+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 373 0 R >> endobj -381 0 obj +375 0 obj << /Length1 1660 /Length2 8897 /Length3 0 /Length 10557 >> [BINARY STREAM] endobj -380 0 obj -<< /Type /FontDescriptor /FontName /LNVUPG+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 381 0 R >> +374 0 obj +<< /Type /FontDescriptor /FontName /LNVUPG+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 375 0 R >> endobj -383 0 obj +377 0 obj << /Length1 1690 /Length2 11683 /Length3 0 /Length 13373 >> [BINARY STREAM] endobj -382 0 obj -<< /Type /FontDescriptor /FontName /WARAAV+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 383 0 R >> +376 0 obj +<< /Type /FontDescriptor /FontName /WARAAV+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 377 0 R >> endobj -385 0 obj +379 0 obj << /Length1 1572 /Length2 8674 /Length3 0 /Length 10246 >> [BINARY STREAM] endobj -384 0 obj -<< /Type /FontDescriptor /FontName /OCDUVI+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 385 0 R >> +378 0 obj +<< /Type /FontDescriptor /FontName /OCDUVI+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 379 0 R >> endobj -386 0 obj +380 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2649,10 +2655,10 @@ end %%EOF endstream endobj -98 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 378 0 R /FirstChar 46 /LastChar 117 /Widths 370 0 R /ToUnicode 386 0 R >> +96 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /IISMVY+CMBX10 /FontDescriptor 372 0 R /FirstChar 46 /LastChar 117 /Widths 364 0 R /ToUnicode 380 0 R >> endobj -387 0 obj +381 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2772,10 +2778,10 @@ end %%EOF endstream endobj -37 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /LNVUPG+CMBX12 /FontDescriptor 380 0 R /FirstChar 46 /LastChar 117 /Widths 377 0 R /ToUnicode 387 0 R >> +36 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /LNVUPG+CMBX12 /FontDescriptor 374 0 R /FirstChar 46 /LastChar 117 /Widths 371 0 R /ToUnicode 381 0 R >> endobj -388 0 obj +382 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2895,10 +2901,10 @@ end %%EOF endstream endobj -38 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /WARAAV+CMR10 /FontDescriptor 382 0 R /FirstChar 44 /LastChar 120 /Widths 376 0 R /ToUnicode 388 0 R >> +37 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /WARAAV+CMR10 /FontDescriptor 376 0 R /FirstChar 44 /LastChar 120 /Widths 370 0 R /ToUnicode 382 0 R >> endobj -389 0 obj +383 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -3018,94 +3024,93 @@ end %%EOF endstream endobj -108 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /OCDUVI+CMSL10 /FontDescriptor 384 0 R /FirstChar 46 /LastChar 84 /Widths 369 0 R /ToUnicode 389 0 R >> -endobj -39 0 obj -<< /Type /Pages /Parent 390 0 R /Count 10 /Kids [ 21 0 R 41 0 R 48 0 R 54 0 R 86 0 R 104 0 R 114 0 R 121 0 R 128 0 R 133 0 R ] >> -endobj -189 0 obj -<< /Type /Pages /Parent 390 0 R /Count 7 /Kids [ 173 0 R 191 0 R 199 0 R 206 0 R 213 0 R 218 0 R 300 0 R ] >> +106 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /OCDUVI+CMSL10 /FontDescriptor 378 0 R /FirstChar 46 /LastChar 84 /Widths 363 0 R /ToUnicode 383 0 R >> endobj -390 0 obj -<< /Type /Pages /Count 17 /Kids [ 39 0 R 189 0 R ] >> +38 0 obj +<< /Type /Pages /Parent 384 0 R /Count 10 /Kids [ 21 0 R 40 0 R 47 0 R 53 0 R 84 0 R 102 0 R 111 0 R 118 0 R 125 0 R 130 0 R ] >> endobj -391 0 obj -<< /Type /Outlines /First 341 0 R /Last 353 0 R /Count 2 >> +185 0 obj +<< /Type /Pages /Parent 384 0 R /Count 7 /Kids [ 169 0 R 187 0 R 194 0 R 201 0 R 208 0 R 213 0 R 294 0 R ] >> endobj -362 0 obj -<< /Title 363 0 R /A 361 0 R /Parent 359 0 R >> +384 0 obj +<< /Type /Pages /Count 17 /Kids [ 38 0 R 185 0 R ] >> endobj -359 0 obj -<< /Title 360 0 R /A 358 0 R /Parent 356 0 R /First 362 0 R /Last 362 0 R /Count -1 >> +385 0 obj +<< /Type /Outlines /First 335 0 R /Last 347 0 R /Count 2 >> endobj 356 0 obj -<< /Title 357 0 R /A 355 0 R /Parent 353 0 R /First 359 0 R /Last 359 0 R /Count -1 >> +<< /Title 357 0 R /A 355 0 R /Parent 353 0 R >> endobj 353 0 obj -<< /Title 354 0 R /A 352 0 R /Parent 391 0 R /Prev 341 0 R /First 356 0 R /Last 356 0 R /Count -1 >> +<< /Title 354 0 R /A 352 0 R /Parent 350 0 R /First 356 0 R /Last 356 0 R /Count -1 >> endobj 350 0 obj -<< /Title 351 0 R /A 349 0 R /Parent 347 0 R >> +<< /Title 351 0 R /A 349 0 R /Parent 347 0 R /First 353 0 R /Last 353 0 R /Count -1 >> endobj 347 0 obj -<< /Title 348 0 R /A 346 0 R /Parent 344 0 R /First 350 0 R /Last 350 0 R /Count -1 >> +<< /Title 348 0 R /A 346 0 R /Parent 385 0 R /Prev 335 0 R /First 350 0 R /Last 350 0 R /Count -1 >> endobj 344 0 obj -<< /Title 345 0 R /A 343 0 R /Parent 341 0 R /First 347 0 R /Last 347 0 R /Count -1 >> +<< /Title 345 0 R /A 343 0 R /Parent 341 0 R >> endobj 341 0 obj -<< /Title 342 0 R /A 340 0 R /Parent 391 0 R /Next 353 0 R /First 344 0 R /Last 344 0 R /Count -1 >> +<< /Title 342 0 R /A 340 0 R /Parent 338 0 R /First 344 0 R /Last 344 0 R /Count -1 >> +endobj +338 0 obj +<< /Title 339 0 R /A 337 0 R /Parent 335 0 R /First 341 0 R /Last 341 0 R /Count -1 >> +endobj +335 0 obj +<< /Title 336 0 R /A 334 0 R /Parent 385 0 R /Next 347 0 R /First 338 0 R /Last 338 0 R /Count -1 >> endobj -392 0 obj -<< /Names [ (Doc-Start) 33 0 R (chapter*.2) 90 0 R (chapter*.9) 326 0 R (chapter.1) 177 0 R (page.1) 31 0 R (page.10) 135 0 R (page.11) 175 0 R (page.12) 193 0 R (page.13) 201 0 R (page.14) 208 0 R (page.15) 215 0 R (page.16) 220 0 R (page.17) 324 0 R (page.2) 43 0 R (page.3) 50 0 R (page.4) 56 0 R (page.5) 88 0 R (page.6) 106 0 R (page.7) 116 0 R (page.8) 123 0 R (page.9) 130 0 R (paragraph*.13) 334 0 R (paragraph*.6) 99 0 R (paragraph.1.1.1.1.1) 185 0 R (part*.1) 35 0 R (part*.8) 203 0 R (part.1) 118 0 R (section*.10) 328 0 R (section*.3) 92 0 R (section.1.1) 179 0 R (subparagraph*.14) 336 0 R (subparagraph*.7) 101 0 R ] /Limits [ (Doc-Start) (subparagraph*.7) ] >> +386 0 obj +<< /Names [ (Doc-Start) 32 0 R (chapter*.2) 88 0 R (chapter*.9) 320 0 R (chapter.1) 173 0 R (page.1) 30 0 R (page.10) 132 0 R (page.11) 171 0 R (page.12) 189 0 R (page.13) 196 0 R (page.14) 203 0 R (page.15) 210 0 R (page.16) 215 0 R (page.17) 318 0 R (page.2) 42 0 R (page.3) 49 0 R (page.4) 55 0 R (page.5) 86 0 R (page.6) 104 0 R (page.7) 113 0 R (page.8) 120 0 R (page.9) 127 0 R (paragraph*.13) 328 0 R (paragraph*.6) 97 0 R (paragraph.1.1.1.1.1) 181 0 R (part*.1) 34 0 R (part*.8) 198 0 R (part.1) 115 0 R (section*.10) 322 0 R (section*.3) 90 0 R (section.1.1) 175 0 R (subparagraph*.14) 330 0 R (subparagraph*.7) 99 0 R ] /Limits [ (Doc-Start) (subparagraph*.7) ] >> endobj -393 0 obj -<< /Names [ (subparagraph.1.1.1.1.1.1) 187 0 R (subsection*.11) 330 0 R (subsection*.4) 94 0 R (subsection.1.1.1) 181 0 R (subsubsection*.12) 332 0 R (subsubsection*.5) 96 0 R (subsubsection.1.1.1.1) 183 0 R ] /Limits [ (subparagraph.1.1.1.1.1.1) (subsubsection.1.1.1.1) ] >> +387 0 obj +<< /Names [ (subparagraph.1.1.1.1.1.1) 183 0 R (subsection*.11) 324 0 R (subsection*.4) 92 0 R (subsection.1.1.1) 177 0 R (subsubsection*.12) 326 0 R (subsubsection*.5) 94 0 R (subsubsection.1.1.1.1) 179 0 R ] /Limits [ (subparagraph.1.1.1.1.1.1) (subsubsection.1.1.1.1) ] >> endobj -394 0 obj -<< /Kids [ 392 0 R 393 0 R ] /Limits [ (Doc-Start) (subsubsection.1.1.1.1) ] >> +388 0 obj +<< /Kids [ 386 0 R 387 0 R ] /Limits [ (Doc-Start) (subsubsection.1.1.1.1) ] >> endobj -395 0 obj -<< /Dests 394 0 R >> +389 0 obj +<< /Dests 388 0 R >> endobj -396 0 obj -<< /Type /Catalog /Pages 390 0 R /Outlines 391 0 R /Names 395 0 R /MarkInfo 339 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 299 0 R >> +390 0 obj +<< /Type /Catalog /Pages 384 0 R /Outlines 385 0 R /Names 389 0 R /MarkInfo 333 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 293 0 R >> endobj -397 0 obj +391 0 obj << /Producer (LuaTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 398 +0 392 0000000010 65535 f -0000034319 00000 n -0000034366 00000 n -0000034388 00000 n -0000034410 00000 n -0000060733 00000 n -0000035459 00000 n -0000039245 00000 n -0000041642 00000 n -0000040162 00000 n +0000034651 00000 n +0000034698 00000 n +0000034720 00000 n +0000034742 00000 n +0000060684 00000 n +0000035791 00000 n +0000039511 00000 n +0000042085 00000 n +0000040453 00000 n 0000000012 00000 f -0000040230 00000 n +0000040521 00000 n 0000000014 00000 f -0000040300 00000 n +0000040591 00000 n 0000000020 00000 f -0000041180 00000 n -0000040381 00000 n -0000041453 00000 n -0000041282 00000 n -0000041555 00000 n +0000041623 00000 n +0000040672 00000 n +0000041896 00000 n +0000041725 00000 n +0000041998 00000 n 0000000000 00000 f 0000000311 00000 n -0000041703 00000 n -0000041820 00000 n -0000041910 00000 n -0000042000 00000 n -0000042090 00000 n -0000042202 00000 n -0000042324 00000 n +0000042146 00000 n +0000042263 00000 n +0000042353 00000 n +0000042443 00000 n +0000042533 00000 n +0000042645 00000 n 0000000787 00000 n 0000000020 00000 n 0000000446 00000 n @@ -3114,369 +3119,364 @@ xref 0000000623 00000 n 0000000676 00000 n 0000000736 00000 n -0000127285 00000 n -0000129232 00000 n -0000131345 00000 n +0000127236 00000 n +0000129183 00000 n +0000131296 00000 n 0000001203 00000 n 0000000953 00000 n 0000000862 00000 n 0000001088 00000 n 0000001150 00000 n -0000042459 00000 n -0000042564 00000 n +0000042795 00000 n +0000042900 00000 n 0000002003 00000 n 0000001753 00000 n 0000001242 00000 n 0000001888 00000 n 0000001950 00000 n -0000075007 00000 n +0000074958 00000 n 0000002512 00000 n 0000002262 00000 n 0000002078 00000 n 0000002397 00000 n 0000002459 00000 n -0000042706 00000 n -0000042818 00000 n -0000042955 00000 n -0000043095 00000 n -0000043200 00000 n -0000043342 00000 n -0000043454 00000 n -0000043619 00000 n -0000043724 00000 n -0000043866 00000 n -0000043978 00000 n -0000044158 00000 n -0000044263 00000 n -0000044405 00000 n -0000044517 00000 n -0000044712 00000 n -0000044817 00000 n -0000044959 00000 n -0000045071 00000 n -0000045212 00000 n -0000045317 00000 n -0000045459 00000 n -0000045571 00000 n -0000045716 00000 n -0000045821 00000 n -0000045964 00000 n -0000046069 00000 n -0000006844 00000 n -0000005903 00000 n +0000043042 00000 n +0000043154 00000 n +0000043319 00000 n +0000043424 00000 n +0000043566 00000 n +0000043678 00000 n +0000043843 00000 n +0000043948 00000 n +0000044090 00000 n +0000044202 00000 n +0000044382 00000 n +0000044487 00000 n +0000044629 00000 n +0000044741 00000 n +0000044936 00000 n +0000045041 00000 n +0000045183 00000 n +0000045295 00000 n +0000045436 00000 n +0000045541 00000 n +0000045683 00000 n +0000045795 00000 n +0000045940 00000 n +0000046045 00000 n +0000046188 00000 n +0000046293 00000 n +0000006845 00000 n +0000005906 00000 n 0000002575 00000 n -0000006038 00000 n -0000006100 00000 n -0000006153 00000 n -0000006215 00000 n -0000006268 00000 n -0000006330 00000 n -0000006383 00000 n -0000006444 00000 n -0000006496 00000 n -0000006558 00000 n -0000125333 00000 n -0000006611 00000 n -0000006673 00000 n -0000006727 00000 n -0000006790 00000 n -0000007440 00000 n -0000007184 00000 n -0000006943 00000 n -0000007322 00000 n -0000007386 00000 n -0000131183 00000 n -0000046212 00000 n -0000046328 00000 n -0000046463 00000 n -0000046601 00000 n -0000008381 00000 n -0000008005 00000 n -0000007517 00000 n -0000008143 00000 n -0000008207 00000 n -0000008262 00000 n -0000008326 00000 n -0000008818 00000 n -0000008561 00000 n -0000008469 00000 n -0000008699 00000 n -0000008763 00000 n -0000046739 00000 n -0000046847 00000 n -0000009627 00000 n -0000009370 00000 n -0000008858 00000 n -0000009508 00000 n -0000009572 00000 n -0000010146 00000 n -0000009889 00000 n -0000009703 00000 n -0000010027 00000 n -0000010091 00000 n -0000046992 00000 n -0000047109 00000 n -0000047259 00000 n -0000047402 00000 n -0000047545 00000 n -0000047653 00000 n -0000047798 00000 n -0000047915 00000 n -0000048093 00000 n -0000048230 00000 n -0000048338 00000 n -0000048483 00000 n -0000048600 00000 n -0000048793 00000 n +0000006041 00000 n +0000006103 00000 n +0000006156 00000 n +0000006218 00000 n +0000006271 00000 n +0000006333 00000 n +0000006386 00000 n +0000006447 00000 n +0000006499 00000 n +0000006561 00000 n +0000125284 00000 n +0000006614 00000 n +0000006676 00000 n +0000006729 00000 n +0000006791 00000 n +0000007441 00000 n +0000007185 00000 n +0000006944 00000 n +0000007323 00000 n +0000007387 00000 n +0000131134 00000 n +0000046436 00000 n +0000046552 00000 n +0000046751 00000 n +0000008433 00000 n +0000008057 00000 n +0000007518 00000 n +0000008195 00000 n +0000008259 00000 n +0000008314 00000 n +0000008378 00000 n +0000008870 00000 n +0000008613 00000 n +0000008521 00000 n +0000008751 00000 n +0000008815 00000 n +0000046888 00000 n +0000046996 00000 n +0000009679 00000 n +0000009422 00000 n +0000008910 00000 n +0000009560 00000 n +0000009624 00000 n +0000010198 00000 n +0000009941 00000 n +0000009755 00000 n +0000010079 00000 n +0000010143 00000 n +0000047141 00000 n +0000047258 00000 n +0000047472 00000 n +0000047609 00000 n +0000047717 00000 n +0000047862 00000 n +0000047979 00000 n +0000048193 00000 n +0000048330 00000 n +0000048438 00000 n +0000048583 00000 n +0000048700 00000 n 0000048930 00000 n -0000049038 00000 n -0000049183 00000 n -0000049300 00000 n -0000049509 00000 n -0000049646 00000 n -0000049754 00000 n -0000049900 00000 n -0000050025 00000 n -0000050217 00000 n -0000050355 00000 n -0000050463 00000 n -0000050609 00000 n -0000050717 00000 n -0000050863 00000 n -0000050980 00000 n -0000051175 00000 n -0000051313 00000 n -0000051421 00000 n -0000051567 00000 n -0000051675 00000 n -0000015455 00000 n -0000014484 00000 n -0000010210 00000 n -0000014624 00000 n -0000014688 00000 n -0000014743 00000 n -0000014807 00000 n -0000014862 00000 n -0000014926 00000 n -0000014981 00000 n -0000015045 00000 n -0000015100 00000 n -0000015163 00000 n -0000015217 00000 n -0000015281 00000 n -0000015336 00000 n -0000015400 00000 n -0000131491 00000 n -0000016283 00000 n -0000016024 00000 n -0000015555 00000 n -0000016164 00000 n -0000016228 00000 n -0000051821 00000 n -0000051937 00000 n -0000052062 00000 n -0000017039 00000 n -0000016665 00000 n -0000016372 00000 n -0000016805 00000 n -0000016869 00000 n -0000016924 00000 n -0000016986 00000 n -0000017466 00000 n -0000017207 00000 n -0000017115 00000 n -0000017347 00000 n -0000017411 00000 n -0000052200 00000 n -0000052308 00000 n -0000018453 00000 n -0000018194 00000 n -0000017506 00000 n -0000018334 00000 n -0000018398 00000 n -0000019270 00000 n -0000019011 00000 n -0000018542 00000 n -0000019151 00000 n -0000019215 00000 n -0000052453 00000 n -0000052570 00000 n -0000052710 00000 n -0000052853 00000 n -0000052961 00000 n -0000053106 00000 n -0000053223 00000 n -0000053391 00000 n -0000053499 00000 n -0000053644 00000 n -0000053761 00000 n -0000053944 00000 n -0000054052 00000 n -0000054197 00000 n -0000054314 00000 n -0000054512 00000 n -0000054620 00000 n -0000054765 00000 n -0000054890 00000 n -0000055034 00000 n -0000055142 00000 n -0000055287 00000 n -0000055395 00000 n -0000055541 00000 n -0000055682 00000 n -0000055830 00000 n -0000055938 00000 n -0000056084 00000 n -0000056192 00000 n -0000056338 00000 n -0000056446 00000 n -0000056837 00000 n -0000028504 00000 n -0000056975 00000 n -0000028730 00000 n -0000057113 00000 n -0000028958 00000 n -0000057251 00000 n -0000029186 00000 n -0000057389 00000 n -0000029414 00000 n -0000057527 00000 n -0000029649 00000 n -0000057665 00000 n -0000029881 00000 n -0000057803 00000 n -0000057911 00000 n -0000058302 00000 n -0000030116 00000 n -0000058440 00000 n -0000030342 00000 n -0000058578 00000 n -0000030571 00000 n -0000058716 00000 n -0000030802 00000 n -0000058854 00000 n -0000031038 00000 n -0000058992 00000 n -0000031279 00000 n -0000059130 00000 n -0000031517 00000 n -0000059268 00000 n -0000059376 00000 n -0000059767 00000 n -0000031761 00000 n -0000059905 00000 n -0000031988 00000 n -0000060043 00000 n -0000032218 00000 n -0000060181 00000 n -0000032449 00000 n -0000060319 00000 n -0000032682 00000 n -0000060457 00000 n -0000032919 00000 n -0000060595 00000 n -0000033152 00000 n -0000060872 00000 n -0000028159 00000 n -0000019359 00000 n -0000019416 00000 n -0000019473 00000 n -0000019530 00000 n -0000019587 00000 n -0000019644 00000 n -0000019701 00000 n -0000019758 00000 n -0000019815 00000 n -0000019872 00000 n -0000019929 00000 n -0000019986 00000 n -0000020043 00000 n -0000020100 00000 n -0000020157 00000 n -0000020214 00000 n -0000020271 00000 n -0000020328 00000 n -0000020385 00000 n -0000020442 00000 n -0000020499 00000 n -0000034219 00000 n -0000020556 00000 n -0000033388 00000 n -0000033452 00000 n -0000033507 00000 n -0000033571 00000 n -0000033626 00000 n -0000033690 00000 n -0000033745 00000 n -0000033808 00000 n -0000033862 00000 n -0000033926 00000 n -0000033981 00000 n -0000034045 00000 n -0000034100 00000 n -0000034164 00000 n -0000028315 00000 n +0000049067 00000 n +0000049175 00000 n +0000049321 00000 n +0000049438 00000 n +0000049684 00000 n +0000049822 00000 n +0000049930 00000 n +0000050076 00000 n +0000050201 00000 n +0000050393 00000 n +0000050531 00000 n +0000050639 00000 n +0000050785 00000 n +0000050893 00000 n +0000051039 00000 n +0000051156 00000 n +0000051351 00000 n +0000051489 00000 n +0000051597 00000 n +0000051743 00000 n +0000051851 00000 n +0000015785 00000 n +0000014814 00000 n +0000010262 00000 n +0000014954 00000 n +0000015018 00000 n +0000015073 00000 n +0000015137 00000 n +0000015192 00000 n +0000015256 00000 n +0000015311 00000 n +0000015375 00000 n +0000015430 00000 n +0000015493 00000 n +0000015547 00000 n +0000015611 00000 n +0000015666 00000 n +0000015730 00000 n +0000131442 00000 n +0000016613 00000 n +0000016354 00000 n +0000015885 00000 n +0000016494 00000 n +0000016558 00000 n +0000051997 00000 n +0000052113 00000 n +0000017369 00000 n +0000016995 00000 n +0000016702 00000 n +0000017135 00000 n +0000017199 00000 n +0000017254 00000 n +0000017316 00000 n +0000017796 00000 n +0000017537 00000 n +0000017445 00000 n +0000017677 00000 n +0000017741 00000 n +0000052266 00000 n +0000052374 00000 n +0000018783 00000 n +0000018524 00000 n +0000017836 00000 n +0000018664 00000 n +0000018728 00000 n +0000019600 00000 n +0000019341 00000 n +0000018872 00000 n +0000019481 00000 n +0000019545 00000 n +0000052519 00000 n +0000052636 00000 n +0000052804 00000 n +0000052912 00000 n +0000053057 00000 n +0000053174 00000 n +0000053342 00000 n +0000053450 00000 n +0000053595 00000 n +0000053712 00000 n +0000053895 00000 n +0000054003 00000 n +0000054148 00000 n +0000054265 00000 n +0000054463 00000 n +0000054571 00000 n +0000054716 00000 n +0000054841 00000 n +0000054985 00000 n +0000055093 00000 n +0000055238 00000 n +0000055346 00000 n +0000055492 00000 n +0000055633 00000 n +0000055781 00000 n +0000055889 00000 n +0000056035 00000 n +0000056143 00000 n +0000056289 00000 n +0000056397 00000 n +0000056788 00000 n +0000028837 00000 n +0000056926 00000 n +0000029063 00000 n +0000057064 00000 n +0000029291 00000 n +0000057202 00000 n +0000029519 00000 n +0000057340 00000 n +0000029747 00000 n +0000057478 00000 n +0000029982 00000 n +0000057616 00000 n +0000030213 00000 n +0000057754 00000 n +0000057862 00000 n +0000058253 00000 n +0000030448 00000 n +0000058391 00000 n +0000030674 00000 n +0000058529 00000 n +0000030903 00000 n +0000058667 00000 n +0000031134 00000 n +0000058805 00000 n +0000031370 00000 n +0000058943 00000 n +0000031611 00000 n +0000059081 00000 n +0000031849 00000 n +0000059219 00000 n +0000059327 00000 n +0000059718 00000 n +0000032093 00000 n +0000059856 00000 n +0000032320 00000 n +0000059994 00000 n +0000032550 00000 n +0000060132 00000 n +0000032781 00000 n +0000060270 00000 n +0000033014 00000 n +0000060408 00000 n +0000033251 00000 n +0000060546 00000 n +0000033484 00000 n +0000060823 00000 n +0000028492 00000 n +0000019689 00000 n +0000019746 00000 n +0000019803 00000 n +0000019860 00000 n +0000019917 00000 n +0000019974 00000 n +0000020031 00000 n +0000020088 00000 n +0000020145 00000 n +0000020202 00000 n +0000020259 00000 n +0000020316 00000 n +0000020373 00000 n +0000020430 00000 n +0000020487 00000 n +0000020544 00000 n +0000020601 00000 n +0000020658 00000 n +0000020715 00000 n +0000020772 00000 n +0000020829 00000 n +0000034551 00000 n +0000020886 00000 n +0000033720 00000 n +0000033784 00000 n +0000033839 00000 n +0000033903 00000 n +0000033958 00000 n +0000034022 00000 n +0000034077 00000 n +0000034140 00000 n +0000034194 00000 n +0000034258 00000 n +0000034313 00000 n +0000034377 00000 n 0000034432 00000 n -0000034469 00000 n -0000132431 00000 n -0000034525 00000 n -0000034574 00000 n -0000132327 00000 n -0000034633 00000 n -0000034697 00000 n -0000132223 00000 n -0000034756 00000 n -0000034820 00000 n -0000132158 00000 n -0000034882 00000 n -0000034961 00000 n -0000132040 00000 n -0000035017 00000 n -0000035066 00000 n -0000131936 00000 n -0000035125 00000 n -0000035189 00000 n -0000131832 00000 n -0000035250 00000 n -0000035314 00000 n -0000131767 00000 n -0000035380 00000 n -0000036556 00000 n -0000037482 00000 n -0000038444 00000 n -0000039190 00000 n -0000039917 00000 n -0000073063 00000 n -0000073205 00000 n -0000073433 00000 n -0000074057 00000 n -0000073466 00000 n -0000074280 00000 n -0000075163 00000 n -0000075366 00000 n -0000075598 00000 n -0000088232 00000 n -0000075822 00000 n -0000099098 00000 n -0000088441 00000 n -0000112781 00000 n -0000099307 00000 n -0000123334 00000 n -0000112988 00000 n -0000123543 00000 n -0000125495 00000 n -0000127447 00000 n -0000129393 00000 n -0000131618 00000 n -0000131690 00000 n -0000132549 00000 n -0000133242 00000 n -0000133535 00000 n -0000133632 00000 n -0000133670 00000 n -0000133933 00000 n +0000034496 00000 n +0000028648 00000 n +0000034764 00000 n +0000034801 00000 n +0000132382 00000 n +0000034857 00000 n +0000034906 00000 n +0000132278 00000 n +0000034965 00000 n +0000035029 00000 n +0000132174 00000 n +0000035088 00000 n +0000035152 00000 n +0000132109 00000 n +0000035214 00000 n +0000035293 00000 n +0000131991 00000 n +0000035349 00000 n +0000035398 00000 n +0000131887 00000 n +0000035457 00000 n +0000035521 00000 n +0000131783 00000 n +0000035582 00000 n +0000035646 00000 n +0000131718 00000 n +0000035712 00000 n +0000036928 00000 n +0000037856 00000 n +0000038818 00000 n +0000039456 00000 n +0000040290 00000 n +0000073014 00000 n +0000073156 00000 n +0000073384 00000 n +0000074008 00000 n +0000073417 00000 n +0000074231 00000 n +0000075114 00000 n +0000075317 00000 n +0000075549 00000 n +0000088183 00000 n +0000075773 00000 n +0000099049 00000 n +0000088392 00000 n +0000112732 00000 n +0000099258 00000 n +0000123285 00000 n +0000112939 00000 n +0000123494 00000 n +0000125446 00000 n +0000127398 00000 n +0000129344 00000 n +0000131569 00000 n +0000131641 00000 n +0000132500 00000 n +0000133192 00000 n +0000133485 00000 n +0000133582 00000 n +0000133620 00000 n +0000133883 00000 n trailer -<< /Size 398 /Root 396 0 R /Info 397 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 392 /Root 390 0 R /Info 391 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -134143 +134093 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-structure-dest.tpf b/required/latex-lab/testfiles-sec/test-book-structure-dest.tpf index c21426718..1e6539549 100644 --- a/required/latex-lab/testfiles-sec/test-book-structure-dest.tpf +++ b/required/latex-lab/testfiles-sec/test-book-structure-dest.tpf @@ -1,6 +1,6 @@ %PDF-2.0 %ÐÔÅØ -29 0 obj +28 0 obj << /Length 179 >> @@ -8,7 +8,7 @@ stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 458.912 Td [(P)29(art)]TJ ET @@ -23,44 +23,44 @@ endobj 21 0 obj << /Type /Page -/Contents 29 0 R -/Resources 28 0 R +/Contents 28 0 R +/Resources 27 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 38 0 R +/Parent 37 0 R >> endobj -30 0 obj +29 0 obj << /D [21 0 R /XYZ 105.869 699.082 null] >> endobj -31 0 obj +30 0 obj [25 0 R /XYZ 105.869 699.082 null] endobj -32 0 obj +31 0 obj << /D [21 0 R /XYZ 106.869 668.127 null] >> endobj -33 0 obj +32 0 obj [22 0 R /XYZ 106.869 668.127 null] endobj -34 0 obj +33 0 obj << /D [21 0 R /XYZ 106.869 488.8 null] >> endobj -35 0 obj +34 0 obj [26 0 R /XYZ 106.869 488.8 null] endobj -28 0 obj +27 0 obj << /ExtGState 1 0 R -/Font << /F48 36 0 R /F45 37 0 R >> +/Font << /F48 35 0 R /F45 36 0 R >> >> endobj -41 0 obj +40 0 obj << /Length 49 >> @@ -72,30 +72,30 @@ EMC EMC endstream endobj -40 0 obj +39 0 obj << /Type /Page -/Contents 41 0 R -/Resources 39 0 R +/Contents 40 0 R +/Resources 38 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 38 0 R +/Parent 37 0 R >> endobj -42 0 obj +41 0 obj << -/D [40 0 R /XYZ 159.667 699.082 null] +/D [39 0 R /XYZ 159.667 699.082 null] >> endobj -43 0 obj +42 0 obj [25 0 R /XYZ 159.667 699.082 null] endobj -39 0 obj +38 0 obj << /ExtGState 1 0 R >> endobj -48 0 obj +47 0 obj << /Length 293 >> @@ -115,31 +115,31 @@ EMC EMC endstream endobj -46 0 obj +45 0 obj << /Type /Page -/Contents 48 0 R -/Resources 47 0 R +/Contents 47 0 R +/Resources 46 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 38 0 R +/Parent 37 0 R >> endobj -49 0 obj +48 0 obj << -/D [46 0 R /XYZ 105.869 699.082 null] +/D [45 0 R /XYZ 105.869 699.082 null] >> endobj -50 0 obj +49 0 obj [25 0 R /XYZ 105.869 699.082 null] endobj -47 0 obj +46 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R /F50 51 0 R >> +/Font << /F45 36 0 R /F50 50 0 R >> >> endobj -54 0 obj +53 0 obj << /Length 97 >> @@ -154,39 +154,39 @@ EMC EMC endstream endobj -53 0 obj +52 0 obj << /Type /Page -/Contents 54 0 R -/Resources 52 0 R +/Contents 53 0 R +/Resources 51 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 38 0 R +/Parent 37 0 R >> endobj -55 0 obj +54 0 obj << -/D [53 0 R /XYZ 159.667 699.082 null] +/D [52 0 R /XYZ 159.667 699.082 null] >> endobj -56 0 obj +55 0 obj [25 0 R /XYZ 159.667 699.082 null] endobj -52 0 obj +51 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R >> +/Font << /F45 36 0 R >> >> endobj -86 0 obj +84 0 obj << -/Length 2077 +/Length 2080 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Chapter)]TJ ET @@ -258,79 +258,79 @@ ET EMC endstream endobj -60 0 obj +58 0 obj << /Type /Page -/Contents 86 0 R -/Resources 85 0 R +/Contents 84 0 R +/Resources 83 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 38 0 R +/Parent 37 0 R +>> +endobj +85 0 obj +<< +/D [58 0 R /XYZ 105.869 699.082 null] >> endobj +86 0 obj +[77 0 R /XYZ 105.869 699.082 null] +endobj 87 0 obj << -/D [60 0 R /XYZ 105.869 699.082 null] +/D [58 0 R /XYZ 106.869 608.351 null] >> endobj 88 0 obj -[79 0 R /XYZ 105.869 699.082 null] +[57 0 R /XYZ 106.869 608.351 null] endobj 89 0 obj << -/D [60 0 R /XYZ 106.869 608.351 null] +/D [58 0 R /XYZ 106.869 511.648 null] >> endobj 90 0 obj -[58 0 R /XYZ 106.869 608.351 null] +[62 0 R /XYZ 106.869 511.648 null] endobj -91 0 obj +92 0 obj << -/D [60 0 R /XYZ 106.869 511.648 null] +/D [58 0 R /XYZ 106.869 457.959 null] >> endobj -92 0 obj -[64 0 R /XYZ 106.869 511.648 null] +93 0 obj +[66 0 R /XYZ 106.869 457.959 null] endobj -94 0 obj +95 0 obj << -/D [60 0 R /XYZ 106.869 457.959 null] +/D [58 0 R /XYZ 106.869 411.687 null] >> endobj -95 0 obj -[68 0 R /XYZ 106.869 457.959 null] +96 0 obj +[70 0 R /XYZ 106.869 411.687 null] endobj -97 0 obj +98 0 obj << -/D [60 0 R /XYZ 106.869 411.687 null] +/D [58 0 R /XYZ 106.869 367.406 null] >> endobj -98 0 obj -[72 0 R /XYZ 106.869 411.687 null] +99 0 obj +[74 0 R /XYZ 106.869 367.406 null] endobj 100 0 obj << -/D [60 0 R /XYZ 106.869 367.406 null] +/D [58 0 R /XYZ 106.869 341.514 null] >> endobj 101 0 obj -[76 0 R /XYZ 106.869 367.406 null] +[78 0 R /XYZ 106.869 341.514 null] endobj -102 0 obj -<< -/D [60 0 R /XYZ 106.869 341.514 null] ->> -endobj -103 0 obj -[80 0 R /XYZ 106.869 341.514 null] -endobj -85 0 obj +83 0 obj << /ExtGState 1 0 R -/Font << /F48 36 0 R /F45 37 0 R /F50 51 0 R /F52 93 0 R /F54 96 0 R /F46 99 0 R >> +/Font << /F48 35 0 R /F45 36 0 R /F50 50 0 R /F52 91 0 R /F54 94 0 R /F46 97 0 R >> >> endobj -106 0 obj +104 0 obj << /Length 171 >> @@ -345,44 +345,49 @@ EMC EMC endstream endobj -105 0 obj +103 0 obj << /Type /Page -/Contents 106 0 R -/Resources 104 0 R +/Contents 104 0 R +/Resources 102 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 38 0 R +/Parent 37 0 R >> endobj -107 0 obj +105 0 obj << -/D [105 0 R /XYZ 159.667 699.082 null] +/D [103 0 R /XYZ 159.667 699.082 null] >> endobj -108 0 obj -[79 0 R /XYZ 159.667 699.082 null] +106 0 obj +[77 0 R /XYZ 159.667 699.082 null] endobj -104 0 obj +102 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R /F49 109 0 R /F50 51 0 R >> +/Font << /F45 36 0 R /F49 107 0 R /F50 50 0 R >> >> endobj -116 0 obj +113 0 obj << -/Length 316 +/Length 374 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC +BT +/F47 20.6625 Tf 249.721 478.837 Td [(P)29(art)]TJ/F50 9.9626 Tf [-733( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 249.721 478.837 Td [(P)29(art)]TJ/F50 9.9626 Tf( )Tj/F47 20.6625 Tf 49.987 0 Td [(I)]TJ +/F47 20.6625 Tf 299.708 478.837 Td [(I)]TJ ET EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 429.024 Td [(P)29(art)]TJ ET @@ -394,39 +399,39 @@ ET EMC endstream endobj -113 0 obj +110 0 obj << /Type /Page -/Contents 116 0 R -/Resources 115 0 R +/Contents 113 0 R +/Resources 112 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 122 0 R +/Parent 119 0 R >> endobj -117 0 obj +114 0 obj << -/D [113 0 R /XYZ 105.869 699.082 null] +/D [110 0 R /XYZ 105.869 699.082 null] >> endobj -118 0 obj -[110 0 R /XYZ 105.869 699.082 null] +115 0 obj +[108 0 R /XYZ 105.869 699.082 null] endobj -119 0 obj +116 0 obj << -/D [113 0 R /XYZ 106.869 503.743 null] +/D [110 0 R /XYZ 106.869 503.743 null] >> endobj -120 0 obj -[111 0 R /XYZ 106.869 503.743 null] +117 0 obj +[109 0 R /XYZ 106.869 503.743 null] endobj -115 0 obj +112 0 obj << /ExtGState 1 0 R -/Font << /F47 121 0 R /F50 51 0 R /F48 36 0 R /F45 37 0 R >> +/Font << /F47 118 0 R /F50 50 0 R /F48 35 0 R /F45 36 0 R >> >> endobj -125 0 obj +122 0 obj << /Length 49 >> @@ -438,30 +443,30 @@ EMC EMC endstream endobj -124 0 obj +121 0 obj << /Type /Page -/Contents 125 0 R -/Resources 123 0 R +/Contents 122 0 R +/Resources 120 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 7 -/Parent 122 0 R +/Parent 119 0 R >> endobj -126 0 obj +123 0 obj << -/D [124 0 R /XYZ 159.667 699.082 null] +/D [121 0 R /XYZ 159.667 699.082 null] >> endobj -127 0 obj -[110 0 R /XYZ 159.667 699.082 null] +124 0 obj +[108 0 R /XYZ 159.667 699.082 null] endobj -123 0 obj +120 0 obj << /ExtGState 1 0 R >> endobj -132 0 obj +129 0 obj << /Length 293 >> @@ -481,31 +486,31 @@ EMC EMC endstream endobj -130 0 obj +127 0 obj << /Type /Page -/Contents 132 0 R -/Resources 131 0 R +/Contents 129 0 R +/Resources 128 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 8 -/Parent 122 0 R +/Parent 119 0 R >> endobj -133 0 obj +130 0 obj << -/D [130 0 R /XYZ 105.869 699.082 null] +/D [127 0 R /XYZ 105.869 699.082 null] >> endobj -134 0 obj -[110 0 R /XYZ 105.869 699.082 null] -endobj 131 0 obj +[108 0 R /XYZ 105.869 699.082 null] +endobj +128 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R /F50 51 0 R >> +/Font << /F45 36 0 R /F50 50 0 R >> >> endobj -137 0 obj +134 0 obj << /Length 98 >> @@ -520,138 +525,160 @@ EMC EMC endstream endobj -136 0 obj +133 0 obj << /Type /Page -/Contents 137 0 R -/Resources 135 0 R +/Contents 134 0 R +/Resources 132 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 9 -/Parent 122 0 R +/Parent 119 0 R >> endobj -138 0 obj +135 0 obj << -/D [136 0 R /XYZ 159.667 699.082 null] +/D [133 0 R /XYZ 159.667 699.082 null] >> endobj -139 0 obj -[110 0 R /XYZ 159.667 699.082 null] +136 0 obj +[108 0 R /XYZ 159.667 699.082 null] endobj -135 0 obj +132 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R >> +/Font << /F45 36 0 R >> >> endobj -177 0 obj +173 0 obj << -/Length 2775 +/Length 3137 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F50 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Chapter)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F52 14.3462 Tf 106.869 448.883 Td [(1.1)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F50 9.9626 Tf 142.806 448.883 Td [( )]TJ +ET +EMC +/section <> BDC BT /F52 14.3462 Tf 142.806 448.883 Td [(Section)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 427.065 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F54 11.9552 Tf 106.869 399.18 Td [(1.1.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F50 9.9626 Tf 147.955 399.18 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F54 11.9552 Tf 147.955 399.18 Td [(Subsection)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 380.792 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 106.869 354.899 Td [(1.1.1.1)]TJ ET EMC -/subsubsection <> BDC +/subsubsection <> BDC +BT +/F50 9.9626 Tf 150.777 354.899 Td [( )]TJ +ET +EMC +/subsubsection <> BDC BT /F46 9.9626 Tf 150.777 354.899 Td [(Subsubsection)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 336.512 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET EMC -/paragraph <> BDC +/paragraph <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 106.869 310.619 Td [(1.1.1.1.1)]TJ ET EMC -/paragraph <> BDC +/paragraph <> BDC BT -/F46 9.9626 Tf 159.686 310.619 Td [(P)32(aragraph)]TJ +/F50 9.9626 Tf 159.686 310.619 Td [( )]TJ +/F46 9.9626 Tf [333(P)32(aragraph)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 221.751 310.619 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.955 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 121.813 298.664 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET EMC -/subparagraph <> BDC +/subparagraph <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F46 9.9626 Tf 121.813 272.771 Td [(1.1.1.1.1.1)]TJ ET EMC -/subparagraph <> BDC +/subparagraph <> BDC BT -/F46 9.9626 Tf 183.539 272.771 Td [(Subparagraph)]TJ +/F50 9.9626 Tf 183.539 272.771 Td [( )]TJ +/F46 9.9626 Tf [333(Subparagraph)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 263.546 272.771 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.955 0 Td [(text)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 121.813 260.816 Td [(some)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(normal)]TJ/F50 9.9626 Tf( )Tj/F45 9.9626 Tf 33.782 0 Td [(text)]TJ ET @@ -663,79 +690,79 @@ ET EMC endstream endobj -143 0 obj +139 0 obj << /Type /Page -/Contents 177 0 R -/Resources 176 0 R +/Contents 173 0 R +/Resources 172 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 10 -/Parent 122 0 R +/Parent 119 0 R +>> +endobj +174 0 obj +<< +/D [139 0 R /XYZ 105.869 699.082 null] +>> +endobj +175 0 obj +[165 0 R /XYZ 105.869 699.082 null] +endobj +176 0 obj +<< +/D [139 0 R /XYZ 106.869 608.351 null] >> endobj +177 0 obj +[138 0 R /XYZ 106.869 608.351 null] +endobj 178 0 obj << -/D [143 0 R /XYZ 105.869 699.082 null] +/D [139 0 R /XYZ 106.869 466.816 null] >> endobj 179 0 obj -[169 0 R /XYZ 105.869 699.082 null] +[144 0 R /XYZ 106.869 466.816 null] endobj 180 0 obj << -/D [143 0 R /XYZ 106.869 608.351 null] +/D [139 0 R /XYZ 106.869 413.128 null] >> endobj 181 0 obj -[141 0 R /XYZ 106.869 608.351 null] +[149 0 R /XYZ 106.869 413.128 null] endobj 182 0 obj << -/D [143 0 R /XYZ 106.869 466.816 null] +/D [139 0 R /XYZ 106.869 366.855 null] >> endobj 183 0 obj -[149 0 R /XYZ 106.869 466.816 null] +[154 0 R /XYZ 106.869 366.855 null] endobj 184 0 obj << -/D [143 0 R /XYZ 106.869 413.128 null] +/D [139 0 R /XYZ 106.869 322.574 null] >> endobj 185 0 obj -[154 0 R /XYZ 106.869 413.128 null] +[159 0 R /XYZ 106.869 322.574 null] endobj 186 0 obj << -/D [143 0 R /XYZ 106.869 366.855 null] +/D [139 0 R /XYZ 106.869 284.727 null] >> endobj 187 0 obj -[159 0 R /XYZ 106.869 366.855 null] -endobj -188 0 obj -<< -/D [143 0 R /XYZ 106.869 322.574 null] ->> -endobj -189 0 obj -[163 0 R /XYZ 106.869 322.574 null] -endobj -190 0 obj -<< -/D [143 0 R /XYZ 106.869 284.727 null] ->> -endobj -191 0 obj -[170 0 R /XYZ 106.869 284.727 null] +[166 0 R /XYZ 106.869 284.727 null] endobj -176 0 obj +172 0 obj << /ExtGState 1 0 R -/Font << /F47 121 0 R /F50 51 0 R /F48 36 0 R /F45 37 0 R /F52 93 0 R /F54 96 0 R /F46 99 0 R >> +/Font << /F47 118 0 R /F50 50 0 R /F48 35 0 R /F45 36 0 R /F52 91 0 R /F54 94 0 R /F46 97 0 R >> >> endobj -194 0 obj +190 0 obj << /Length 271 >> @@ -750,31 +777,31 @@ EMC EMC endstream endobj -193 0 obj +189 0 obj << /Type /Page -/Contents 194 0 R -/Resources 192 0 R +/Contents 190 0 R +/Resources 188 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 11 -/Parent 122 0 R +/Parent 119 0 R >> endobj -195 0 obj +191 0 obj << -/D [193 0 R /XYZ 159.667 699.082 null] +/D [189 0 R /XYZ 159.667 699.082 null] >> endobj -196 0 obj -[169 0 R /XYZ 159.667 699.082 null] -endobj 192 0 obj +[165 0 R /XYZ 159.667 699.082 null] +endobj +188 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R /F50 51 0 R /F49 109 0 R >> +/Font << /F45 36 0 R /F50 50 0 R /F49 107 0 R >> >> endobj -202 0 obj +197 0 obj << /Length 180 >> @@ -782,7 +809,7 @@ stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/part <> BDC BT /F48 24.7871 Tf 253.498 458.912 Td [(P)29(art)]TJ ET @@ -794,39 +821,39 @@ ET EMC endstream endobj -200 0 obj +195 0 obj << /Type /Page -/Contents 202 0 R -/Resources 201 0 R +/Contents 197 0 R +/Resources 196 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 12 -/Parent 207 0 R +/Parent 202 0 R >> endobj -203 0 obj +198 0 obj << -/D [200 0 R /XYZ 105.869 699.082 null] +/D [195 0 R /XYZ 105.869 699.082 null] >> endobj -204 0 obj -[197 0 R /XYZ 105.869 699.082 null] +199 0 obj +[193 0 R /XYZ 105.869 699.082 null] endobj -205 0 obj +200 0 obj << -/D [200 0 R /XYZ 106.869 488.8 null] +/D [195 0 R /XYZ 106.869 488.8 null] >> endobj -206 0 obj -[198 0 R /XYZ 106.869 488.8 null] -endobj 201 0 obj +[194 0 R /XYZ 106.869 488.8 null] +endobj +196 0 obj << /ExtGState 1 0 R -/Font << /F48 36 0 R /F45 37 0 R >> +/Font << /F48 35 0 R /F45 36 0 R >> >> endobj -210 0 obj +205 0 obj << /Length 49 >> @@ -838,30 +865,30 @@ EMC EMC endstream endobj -209 0 obj +204 0 obj << /Type /Page -/Contents 210 0 R -/Resources 208 0 R +/Contents 205 0 R +/Resources 203 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 13 -/Parent 207 0 R +/Parent 202 0 R >> endobj -211 0 obj +206 0 obj << -/D [209 0 R /XYZ 159.667 699.082 null] +/D [204 0 R /XYZ 159.667 699.082 null] >> endobj -212 0 obj -[197 0 R /XYZ 159.667 699.082 null] +207 0 obj +[193 0 R /XYZ 159.667 699.082 null] endobj -208 0 obj +203 0 obj << /ExtGState 1 0 R >> endobj -217 0 obj +212 0 obj << /Length 411 >> @@ -881,31 +908,31 @@ EMC EMC endstream endobj -215 0 obj +210 0 obj << /Type /Page -/Contents 217 0 R -/Resources 216 0 R +/Contents 212 0 R +/Resources 211 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 14 -/Parent 207 0 R +/Parent 202 0 R >> endobj -218 0 obj +213 0 obj << -/D [215 0 R /XYZ 105.869 699.082 null] +/D [210 0 R /XYZ 105.869 699.082 null] >> endobj -219 0 obj -[197 0 R /XYZ 105.869 699.082 null] +214 0 obj +[193 0 R /XYZ 105.869 699.082 null] endobj -216 0 obj +211 0 obj << /ExtGState 1 0 R -/Font << /F49 109 0 R /F50 51 0 R /F45 37 0 R >> +/Font << /F49 107 0 R /F50 50 0 R /F45 36 0 R >> >> endobj -222 0 obj +217 0 obj << /Length 271 >> @@ -920,94 +947,94 @@ EMC EMC endstream endobj -221 0 obj +216 0 obj << /Type /Page -/Contents 222 0 R -/Resources 220 0 R +/Contents 217 0 R +/Resources 215 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 15 -/Parent 207 0 R +/Parent 202 0 R >> endobj -223 0 obj +218 0 obj << -/D [221 0 R /XYZ 159.667 699.082 null] +/D [216 0 R /XYZ 159.667 699.082 null] >> endobj -224 0 obj -[197 0 R /XYZ 159.667 699.082 null] +219 0 obj +[193 0 R /XYZ 159.667 699.082 null] endobj -220 0 obj +215 0 obj << /ExtGState 1 0 R -/Font << /F45 37 0 R /F50 51 0 R /F49 109 0 R >> +/Font << /F45 36 0 R /F50 50 0 R /F49 107 0 R >> >> endobj +253 0 obj +<< /Type/OBJR/Obj 252 0 R/Pg 222 0 R >> +endobj +256 0 obj +<< /Type/OBJR/Obj 255 0 R/Pg 222 0 R >> +endobj 259 0 obj -<< /Type/OBJR/Obj 258 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 258 0 R/Pg 222 0 R >> endobj 262 0 obj -<< /Type/OBJR/Obj 261 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 261 0 R/Pg 222 0 R >> endobj 265 0 obj -<< /Type/OBJR/Obj 264 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 264 0 R/Pg 222 0 R >> endobj 268 0 obj -<< /Type/OBJR/Obj 267 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 267 0 R/Pg 222 0 R >> endobj 271 0 obj -<< /Type/OBJR/Obj 270 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 270 0 R/Pg 222 0 R >> endobj -274 0 obj -<< /Type/OBJR/Obj 273 0 R/Pg 228 0 R >> +276 0 obj +<< /Type/OBJR/Obj 275 0 R/Pg 222 0 R >> endobj -277 0 obj -<< /Type/OBJR/Obj 276 0 R/Pg 228 0 R >> +279 0 obj +<< /Type/OBJR/Obj 278 0 R/Pg 222 0 R >> endobj 282 0 obj -<< /Type/OBJR/Obj 281 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 281 0 R/Pg 222 0 R >> endobj 285 0 obj -<< /Type/OBJR/Obj 284 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 284 0 R/Pg 222 0 R >> endobj 288 0 obj -<< /Type/OBJR/Obj 287 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 287 0 R/Pg 222 0 R >> endobj 291 0 obj -<< /Type/OBJR/Obj 290 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 290 0 R/Pg 222 0 R >> endobj 294 0 obj -<< /Type/OBJR/Obj 293 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 293 0 R/Pg 222 0 R >> endobj -297 0 obj -<< /Type/OBJR/Obj 296 0 R/Pg 228 0 R >> +299 0 obj +<< /Type/OBJR/Obj 298 0 R/Pg 222 0 R >> endobj -300 0 obj -<< /Type/OBJR/Obj 299 0 R/Pg 228 0 R >> +302 0 obj +<< /Type/OBJR/Obj 301 0 R/Pg 222 0 R >> endobj 305 0 obj -<< /Type/OBJR/Obj 304 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 304 0 R/Pg 222 0 R >> endobj 308 0 obj -<< /Type/OBJR/Obj 307 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 307 0 R/Pg 222 0 R >> endobj 311 0 obj -<< /Type/OBJR/Obj 310 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 310 0 R/Pg 222 0 R >> endobj 314 0 obj -<< /Type/OBJR/Obj 313 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 313 0 R/Pg 222 0 R >> endobj 317 0 obj -<< /Type/OBJR/Obj 316 0 R/Pg 228 0 R >> -endobj -320 0 obj -<< /Type/OBJR/Obj 319 0 R/Pg 228 0 R >> +<< /Type/OBJR/Obj 316 0 R/Pg 222 0 R >> endobj -323 0 obj -<< /Type/OBJR/Obj 322 0 R/Pg 228 0 R >> -endobj -324 0 obj +318 0 obj << /Type /Metadata /Subtype /XML /Length 12098 @@ -1250,15 +1277,15 @@ stream endstream endobj -326 0 obj +320 0 obj << -/Length 5391 +/Length 5394 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Chapter)]TJ ET @@ -1542,266 +1569,266 @@ ET EMC endstream endobj -228 0 obj +222 0 obj << /Type /Page -/Contents 326 0 R -/Resources 325 0 R +/Contents 320 0 R +/Resources 319 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 16 -/Parent 207 0 R -/Annots [ 258 0 R 261 0 R 264 0 R 267 0 R 270 0 R 273 0 R 276 0 R 281 0 R 284 0 R 287 0 R 290 0 R 293 0 R 296 0 R 299 0 R 304 0 R 307 0 R 310 0 R 313 0 R 316 0 R 319 0 R 322 0 R ] +/Parent 202 0 R +/Annots [ 252 0 R 255 0 R 258 0 R 261 0 R 264 0 R 267 0 R 270 0 R 275 0 R 278 0 R 281 0 R 284 0 R 287 0 R 290 0 R 293 0 R 298 0 R 301 0 R 304 0 R 307 0 R 310 0 R 313 0 R 316 0 R ] >> endobj -258 0 obj +252 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 17 /Rect [120.817 290.76 127.79 301.08] -/A << /S /GoTo /D (part*.1) /SD 35 0 R >> +/A << /S /GoTo /D (part*.1) /SD 34 0 R >> >> endobj -261 0 obj +255 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 18 /Rect [131.884 290.76 138.856 301.08] -/A << /S /GoTo /D (chapter*.2) /SD 90 0 R >> +/A << /S /GoTo /D (chapter*.2) /SD 88 0 R >> >> endobj -264 0 obj +258 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 19 /Rect [142.951 290.76 149.923 301.08] -/A << /S /GoTo /D (section*.3) /SD 92 0 R >> +/A << /S /GoTo /D (section*.3) /SD 90 0 R >> >> endobj -267 0 obj +261 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 20 /Rect [154.018 290.76 160.99 301.08] -/A << /S /GoTo /D (subsection*.4) /SD 95 0 R >> +/A << /S /GoTo /D (subsection*.4) /SD 93 0 R >> >> endobj -270 0 obj +264 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 21 /Rect [165.085 290.76 172.057 301.08] -/A << /S /GoTo /D (subsubsection*.5) /SD 98 0 R >> +/A << /S /GoTo /D (subsubsection*.5) /SD 96 0 R >> >> endobj -273 0 obj +267 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 22 /Rect [176.151 290.76 183.124 301.08] -/A << /S /GoTo /D (paragraph*.6) /SD 101 0 R >> +/A << /S /GoTo /D (paragraph*.6) /SD 99 0 R >> >> endobj -276 0 obj +270 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 23 /Rect [187.218 290.76 194.191 301.08] -/A << /S /GoTo /D (subparagraph*.7) /SD 103 0 R >> +/A << /S /GoTo /D (subparagraph*.7) /SD 101 0 R >> >> endobj -281 0 obj +275 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 24 /Rect [120.817 278.805 127.79 289.125] -/A << /S /GoTo /D (part.1) /SD 120 0 R >> +/A << /S /GoTo /D (part.1) /SD 117 0 R >> >> endobj -284 0 obj +278 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 25 /Rect [131.884 278.805 143.837 289.125] -/A << /S /GoTo /D (chapter.1) /SD 181 0 R >> +/A << /S /GoTo /D (chapter.1) /SD 177 0 R >> >> endobj -287 0 obj +281 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 26 /Rect [147.931 278.805 159.884 289.125] -/A << /S /GoTo /D (section.1.1) /SD 183 0 R >> +/A << /S /GoTo /D (section.1.1) /SD 179 0 R >> >> endobj -290 0 obj +284 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 27 /Rect [163.978 278.805 175.931 289.125] -/A << /S /GoTo /D (subsection.1.1.1) /SD 185 0 R >> +/A << /S /GoTo /D (subsection.1.1.1) /SD 181 0 R >> >> endobj -293 0 obj +287 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 28 /Rect [180.025 278.805 191.978 289.125] -/A << /S /GoTo /D (subsubsection.1.1.1.1) /SD 187 0 R >> +/A << /S /GoTo /D (subsubsection.1.1.1.1) /SD 183 0 R >> >> endobj -296 0 obj +290 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 29 /Rect [196.072 278.805 208.025 289.125] -/A << /S /GoTo /D (paragraph.1.1.1.1.1) /SD 189 0 R >> +/A << /S /GoTo /D (paragraph.1.1.1.1.1) /SD 185 0 R >> >> endobj -299 0 obj +293 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 30 /Rect [212.119 278.805 224.072 289.125] -/A << /S /GoTo /D (subparagraph.1.1.1.1.1.1) /SD 191 0 R >> +/A << /S /GoTo /D (subparagraph.1.1.1.1.1.1) /SD 187 0 R >> >> endobj -304 0 obj +298 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 31 /Rect [120.817 266.85 132.77 277.17] -/A << /S /GoTo /D (part*.8) /SD 206 0 R >> +/A << /S /GoTo /D (part*.8) /SD 201 0 R >> >> endobj -307 0 obj +301 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 32 /Rect [136.864 266.85 148.817 277.17] -/A << /S /GoTo /D (chapter*.9) /SD 330 0 R >> +/A << /S /GoTo /D (chapter*.9) /SD 324 0 R >> >> endobj -310 0 obj +304 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 33 /Rect [152.911 266.85 164.864 277.17] -/A << /S /GoTo /D (section*.10) /SD 332 0 R >> +/A << /S /GoTo /D (section*.10) /SD 326 0 R >> >> endobj -313 0 obj +307 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 34 /Rect [168.958 266.85 180.911 277.17] -/A << /S /GoTo /D (subsection*.11) /SD 334 0 R >> +/A << /S /GoTo /D (subsection*.11) /SD 328 0 R >> >> endobj -316 0 obj +310 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 35 /Rect [185.005 266.85 196.958 277.17] -/A << /S /GoTo /D (subsubsection*.12) /SD 336 0 R >> +/A << /S /GoTo /D (subsubsection*.12) /SD 330 0 R >> >> endobj -319 0 obj +313 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 36 /Rect [201.052 266.85 213.005 277.17] -/A << /S /GoTo /D (paragraph*.13) /SD 338 0 R >> +/A << /S /GoTo /D (paragraph*.13) /SD 332 0 R >> >> endobj -322 0 obj +316 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 37 /Rect [217.099 266.85 229.052 277.17] -/A << /S /GoTo /D (subparagraph*.14) /SD 340 0 R >> +/A << /S /GoTo /D (subparagraph*.14) /SD 334 0 R >> >> endobj -327 0 obj +321 0 obj << -/D [228 0 R /XYZ 105.869 699.082 null] +/D [222 0 R /XYZ 105.869 699.082 null] >> endobj -328 0 obj -[249 0 R /XYZ 105.869 699.082 null] +322 0 obj +[243 0 R /XYZ 105.869 699.082 null] endobj -329 0 obj +323 0 obj << -/D [228 0 R /XYZ 106.869 608.351 null] +/D [222 0 R /XYZ 106.869 608.351 null] >> endobj -330 0 obj -[226 0 R /XYZ 106.869 608.351 null] +324 0 obj +[221 0 R /XYZ 106.869 608.351 null] endobj -331 0 obj +325 0 obj << -/D [228 0 R /XYZ 106.869 511.648 null] +/D [222 0 R /XYZ 106.869 511.648 null] >> endobj -332 0 obj -[232 0 R /XYZ 106.869 511.648 null] +326 0 obj +[226 0 R /XYZ 106.869 511.648 null] endobj -333 0 obj +327 0 obj << -/D [228 0 R /XYZ 106.869 457.959 null] +/D [222 0 R /XYZ 106.869 457.959 null] >> endobj -334 0 obj -[236 0 R /XYZ 106.869 457.959 null] +328 0 obj +[230 0 R /XYZ 106.869 457.959 null] endobj -335 0 obj +329 0 obj << -/D [228 0 R /XYZ 106.869 411.687 null] +/D [222 0 R /XYZ 106.869 411.687 null] >> endobj -336 0 obj -[240 0 R /XYZ 106.869 411.687 null] +330 0 obj +[234 0 R /XYZ 106.869 411.687 null] endobj -337 0 obj +331 0 obj << -/D [228 0 R /XYZ 106.869 367.406 null] +/D [222 0 R /XYZ 106.869 367.406 null] >> endobj -338 0 obj -[244 0 R /XYZ 106.869 367.406 null] +332 0 obj +[238 0 R /XYZ 106.869 367.406 null] endobj -339 0 obj +333 0 obj << -/D [228 0 R /XYZ 106.869 329.558 null] +/D [222 0 R /XYZ 106.869 329.558 null] >> endobj -340 0 obj -[250 0 R /XYZ 106.869 329.558 null] +334 0 obj +[244 0 R /XYZ 106.869 329.558 null] endobj -325 0 obj +319 0 obj << /ExtGState 1 0 R -/Font << /F48 36 0 R /F45 37 0 R /F50 51 0 R /F52 93 0 R /F54 96 0 R /F46 99 0 R >> +/Font << /F48 35 0 R /F45 36 0 R /F50 50 0 R /F52 91 0 R /F54 94 0 R /F46 97 0 R >> >> endobj 1 0 obj @@ -1816,117 +1843,115 @@ endobj 4 0 obj << >> endobj -341 0 obj +335 0 obj << /Marked true >> endobj -342 0 obj -<< /S /GoTo /D (part*.1) /SD 35 0 R >> +336 0 obj +<< /S /GoTo /D (part*.1) /SD 34 0 R >> endobj -344 0 obj +338 0 obj (\376\377\000P\000a\000r\000t) endobj -345 0 obj -<< /S /GoTo /D (chapter*.2) /SD 90 0 R >> +339 0 obj +<< /S /GoTo /D (chapter*.2) /SD 88 0 R >> endobj -347 0 obj +341 0 obj (\376\377\000C\000h\000a\000p\000t\000e\000r) endobj -348 0 obj -<< /S /GoTo /D (section*.3) /SD 92 0 R >> +342 0 obj +<< /S /GoTo /D (section*.3) /SD 90 0 R >> endobj -350 0 obj +344 0 obj (\376\377\000S\000e\000c\000t\000i\000o\000n) endobj -351 0 obj -<< /S /GoTo /D (subsection*.4) /SD 95 0 R >> +345 0 obj +<< /S /GoTo /D (subsection*.4) /SD 93 0 R >> endobj -353 0 obj +347 0 obj (\376\377\000S\000u\000b\000s\000e\000c\000t\000i\000o\000n) endobj -354 0 obj -<< /S /GoTo /D (part.1) /SD 120 0 R >> +348 0 obj +<< /S /GoTo /D (part.1) /SD 117 0 R >> endobj -356 0 obj +350 0 obj (\376\377\000P\000a\000r\000t) endobj -357 0 obj -<< /S /GoTo /D (chapter.1) /SD 181 0 R >> +351 0 obj +<< /S /GoTo /D (chapter.1) /SD 177 0 R >> endobj -359 0 obj +353 0 obj (\376\377\000C\000h\000a\000p\000t\000e\000r) endobj -360 0 obj -<< /S /GoTo /D (section.1.1) /SD 183 0 R >> +354 0 obj +<< /S /GoTo /D (section.1.1) /SD 179 0 R >> endobj -362 0 obj +356 0 obj (\376\377\000S\000e\000c\000t\000i\000o\000n) endobj -363 0 obj -<< /S /GoTo /D (subsection.1.1.1) /SD 185 0 R >> +357 0 obj +<< /S /GoTo /D (subsection.1.1.1) /SD 181 0 R >> endobj -365 0 obj +359 0 obj (\376\377\000S\000u\000b\000s\000e\000c\000t\000i\000o\000n) endobj 6 0 obj -<< /Nums [0 [ 27 0 R ] +<< /Nums [0 [ 26 0 R ] 1 [ ] -2 [ 45 0 R ] +2 [ 44 0 R ] 3 [ ] -4 [ 59 0 R 62 0 R 64 0 R 66 0 R 68 0 R 70 0 R 72 0 R 74 0 R 76 0 R 78 0 R 80 0 R 82 0 R 84 0 R ] +4 [ 57 0 R 60 0 R 62 0 R 64 0 R 66 0 R 68 0 R 70 0 R 72 0 R 74 0 R 76 0 R 78 0 R 80 0 R 82 0 R ] 5 [ ] -6 [ 112 0 R 114 0 R ] +6 [ 109 0 R 111 0 R 109 0 R ] 7 [ ] -8 [ 129 0 R ] +8 [ 126 0 R ] 9 [ ] -10 [ 142 0 R 144 0 R 146 0 R 149 0 R 148 0 R 151 0 R 154 0 R 153 0 R 156 0 R 159 0 R 158 0 R 161 0 R 163 0 R 164 0 R 163 0 R 166 0 R 168 0 R 170 0 R 171 0 R 170 0 R 173 0 R 175 0 R ] +10 [ 138 0 R 140 0 R 138 0 R 142 0 R 145 0 R 144 0 R 144 0 R 147 0 R 150 0 R 149 0 R 149 0 R 152 0 R 155 0 R 154 0 R 154 0 R 157 0 R 159 0 R 160 0 R 159 0 R 162 0 R 164 0 R 166 0 R 167 0 R 166 0 R 169 0 R 171 0 R ] 11 [ ] -12 [ 199 0 R ] +12 [ 194 0 R ] 13 [ ] -14 [ 214 0 R ] +14 [ 209 0 R ] 15 [ ] -16 [ 227 0 R 230 0 R 232 0 R 234 0 R 236 0 R 238 0 R 240 0 R 242 0 R 244 0 R 246 0 R 248 0 R 250 0 R 252 0 R 254 0 R 256 0 R 257 0 R 256 0 R 260 0 R 256 0 R 263 0 R 256 0 R 266 0 R 256 0 R 269 0 R 256 0 R 272 0 R 256 0 R 275 0 R 256 0 R 279 0 R 280 0 R 279 0 R 283 0 R 279 0 R 286 0 R 279 0 R 289 0 R 279 0 R 292 0 R 279 0 R 295 0 R 279 0 R 298 0 R 279 0 R 302 0 R 303 0 R 302 0 R 306 0 R 302 0 R 309 0 R 302 0 R 312 0 R 302 0 R 315 0 R 302 0 R 318 0 R 302 0 R 321 0 R 302 0 R ] -17 257 0 R -18 260 0 R -19 263 0 R -20 266 0 R -21 269 0 R -22 272 0 R -23 275 0 R -24 280 0 R -25 283 0 R -26 286 0 R -27 289 0 R -28 292 0 R -29 295 0 R -30 298 0 R -31 303 0 R -32 306 0 R -33 309 0 R -34 312 0 R -35 315 0 R -36 318 0 R -37 321 0 R +16 [ 221 0 R 224 0 R 226 0 R 228 0 R 230 0 R 232 0 R 234 0 R 236 0 R 238 0 R 240 0 R 242 0 R 244 0 R 246 0 R 248 0 R 250 0 R 251 0 R 250 0 R 254 0 R 250 0 R 257 0 R 250 0 R 260 0 R 250 0 R 263 0 R 250 0 R 266 0 R 250 0 R 269 0 R 250 0 R 273 0 R 274 0 R 273 0 R 277 0 R 273 0 R 280 0 R 273 0 R 283 0 R 273 0 R 286 0 R 273 0 R 289 0 R 273 0 R 292 0 R 273 0 R 296 0 R 297 0 R 296 0 R 300 0 R 296 0 R 303 0 R 296 0 R 306 0 R 296 0 R 309 0 R 296 0 R 312 0 R 296 0 R 315 0 R 296 0 R ] +17 251 0 R +18 254 0 R +19 257 0 R +20 260 0 R +21 263 0 R +22 266 0 R +23 269 0 R +24 274 0 R +25 277 0 R +26 280 0 R +27 283 0 R +28 286 0 R +29 289 0 R +30 292 0 R +31 297 0 R +32 300 0 R +33 303 0 R +34 306 0 R +35 309 0 R +36 312 0 R +37 315 0 R ] >> endobj -366 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 44 0 R (ID.0009) 45 0 R (ID.0010) 57 0 R (ID.0011) 58 0 R (ID.0012) 59 0 R (ID.0013) 61 0 R (ID.0014) 62 0 R (ID.0015) 63 0 R (ID.0016) 64 0 R (ID.0017) 65 0 R (ID.0018) 66 0 R (ID.0019) 67 0 R (ID.0020) 68 0 R (ID.0021) 69 0 R (ID.0022) 70 0 R (ID.0023) 71 0 R (ID.0024) 72 0 R (ID.0025) 73 0 R (ID.0026) 74 0 R (ID.0027) 75 0 R (ID.0028) 76 0 R (ID.0029) 77 0 R (ID.0030) 78 0 R (ID.0031) 79 0 R (ID.0032) 80 0 R (ID.0033) 81 0 R (ID.0034) 82 0 R (ID.0035) 83 0 R (ID.0036) 84 0 R (ID.0037) 110 0 R (ID.0038) 111 0 R (ID.0039) 112 0 R (ID.0040) 114 0 R (ID.0041) 128 0 R (ID.0042) 129 0 R (ID.0043) 140 0 R (ID.0044) 141 0 R (ID.0045) 142 0 R (ID.0046) 144 0 R (ID.0047) 145 0 R (ID.0048) 146 0 R (ID.0049) 147 0 R (ID.0050) 148 0 R (ID.0051) 149 0 R ] >> +360 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 43 0 R (ID.0008) 44 0 R (ID.0009) 56 0 R (ID.0010) 57 0 R (ID.0011) 59 0 R (ID.0012) 60 0 R (ID.0013) 61 0 R (ID.0014) 62 0 R (ID.0015) 63 0 R (ID.0016) 64 0 R (ID.0017) 65 0 R (ID.0018) 66 0 R (ID.0019) 67 0 R (ID.0020) 68 0 R (ID.0021) 69 0 R (ID.0022) 70 0 R (ID.0023) 71 0 R (ID.0024) 72 0 R (ID.0025) 73 0 R (ID.0026) 74 0 R (ID.0027) 75 0 R (ID.0028) 76 0 R (ID.0029) 77 0 R (ID.0030) 78 0 R (ID.0031) 79 0 R (ID.0032) 80 0 R (ID.0033) 81 0 R (ID.0034) 82 0 R (ID.0035) 108 0 R (ID.0036) 109 0 R (ID.0037) 111 0 R (ID.0038) 125 0 R (ID.0039) 126 0 R (ID.0040) 137 0 R (ID.0041) 138 0 R (ID.0042) 140 0 R (ID.0043) 141 0 R (ID.0044) 142 0 R (ID.0045) 143 0 R (ID.0046) 144 0 R (ID.0047) 145 0 R (ID.0048) 146 0 R (ID.0049) 147 0 R (ID.0050) 148 0 R (ID.0051) 149 0 R ] >> endobj -367 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 150 0 R (ID.0053) 151 0 R (ID.0054) 152 0 R (ID.0055) 153 0 R (ID.0056) 154 0 R (ID.0057) 155 0 R (ID.0058) 156 0 R (ID.0059) 157 0 R (ID.0060) 158 0 R (ID.0061) 159 0 R (ID.0062) 160 0 R (ID.0063) 161 0 R (ID.0064) 162 0 R (ID.0065) 163 0 R (ID.0066) 164 0 R (ID.0067) 165 0 R (ID.0068) 166 0 R (ID.0069) 167 0 R (ID.0070) 168 0 R (ID.0071) 169 0 R (ID.0072) 170 0 R (ID.0073) 171 0 R (ID.0074) 172 0 R (ID.0075) 173 0 R (ID.0076) 174 0 R (ID.0077) 175 0 R (ID.0078) 197 0 R (ID.0079) 198 0 R (ID.0080) 199 0 R (ID.0081) 213 0 R (ID.0082) 214 0 R (ID.0083) 225 0 R (ID.0084) 226 0 R (ID.0085) 227 0 R (ID.0086) 229 0 R (ID.0087) 230 0 R (ID.0088) 231 0 R (ID.0089) 232 0 R (ID.0090) 233 0 R (ID.0091) 234 0 R (ID.0092) 235 0 R (ID.0093) 236 0 R (ID.0094) 237 0 R (ID.0095) 238 0 R (ID.0096) 239 0 R (ID.0097) 240 0 R (ID.0098) 241 0 R (ID.0099) 242 0 R (ID.0100) 243 0 R (ID.0101) 244 0 R ] >> +361 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 150 0 R (ID.0053) 151 0 R (ID.0054) 152 0 R (ID.0055) 153 0 R (ID.0056) 154 0 R (ID.0057) 155 0 R (ID.0058) 156 0 R (ID.0059) 157 0 R (ID.0060) 158 0 R (ID.0061) 159 0 R (ID.0062) 160 0 R (ID.0063) 161 0 R (ID.0064) 162 0 R (ID.0065) 163 0 R (ID.0066) 164 0 R (ID.0067) 165 0 R (ID.0068) 166 0 R (ID.0069) 167 0 R (ID.0070) 168 0 R (ID.0071) 169 0 R (ID.0072) 170 0 R (ID.0073) 171 0 R (ID.0074) 193 0 R (ID.0075) 194 0 R (ID.0076) 208 0 R (ID.0077) 209 0 R (ID.0078) 220 0 R (ID.0079) 221 0 R (ID.0080) 223 0 R (ID.0081) 224 0 R (ID.0082) 225 0 R (ID.0083) 226 0 R (ID.0084) 227 0 R (ID.0085) 228 0 R (ID.0086) 229 0 R (ID.0087) 230 0 R (ID.0088) 231 0 R (ID.0089) 232 0 R (ID.0090) 233 0 R (ID.0091) 234 0 R (ID.0092) 235 0 R (ID.0093) 236 0 R (ID.0094) 237 0 R (ID.0095) 238 0 R (ID.0096) 239 0 R (ID.0097) 240 0 R (ID.0098) 241 0 R (ID.0099) 242 0 R (ID.0100) 243 0 R (ID.0101) 244 0 R ] >> endobj -368 0 obj -<< /Limits [(ID.0102) (ID.0138)]/Names [(ID.0102) 245 0 R (ID.0103) 246 0 R (ID.0104) 247 0 R (ID.0105) 248 0 R (ID.0106) 249 0 R (ID.0107) 250 0 R (ID.0108) 251 0 R (ID.0109) 252 0 R (ID.0110) 253 0 R (ID.0111) 254 0 R (ID.0112) 255 0 R (ID.0113) 256 0 R (ID.0114) 257 0 R (ID.0115) 260 0 R (ID.0116) 263 0 R (ID.0117) 266 0 R (ID.0118) 269 0 R (ID.0119) 272 0 R (ID.0120) 275 0 R (ID.0121) 278 0 R (ID.0122) 279 0 R (ID.0123) 280 0 R (ID.0124) 283 0 R (ID.0125) 286 0 R (ID.0126) 289 0 R (ID.0127) 292 0 R (ID.0128) 295 0 R (ID.0129) 298 0 R (ID.0130) 301 0 R (ID.0131) 302 0 R (ID.0132) 303 0 R (ID.0133) 306 0 R (ID.0134) 309 0 R (ID.0135) 312 0 R (ID.0136) 315 0 R (ID.0137) 318 0 R (ID.0138) 321 0 R ] >> +362 0 obj +<< /Limits [(ID.0102) (ID.0132)]/Names [(ID.0102) 245 0 R (ID.0103) 246 0 R (ID.0104) 247 0 R (ID.0105) 248 0 R (ID.0106) 249 0 R (ID.0107) 250 0 R (ID.0108) 251 0 R (ID.0109) 254 0 R (ID.0110) 257 0 R (ID.0111) 260 0 R (ID.0112) 263 0 R (ID.0113) 266 0 R (ID.0114) 269 0 R (ID.0115) 272 0 R (ID.0116) 273 0 R (ID.0117) 274 0 R (ID.0118) 277 0 R (ID.0119) 280 0 R (ID.0120) 283 0 R (ID.0121) 286 0 R (ID.0122) 289 0 R (ID.0123) 292 0 R (ID.0124) 295 0 R (ID.0125) 296 0 R (ID.0126) 297 0 R (ID.0127) 300 0 R (ID.0128) 303 0 R (ID.0129) 306 0 R (ID.0130) 309 0 R (ID.0131) 312 0 R (ID.0132) 315 0 R ] >> endobj -369 0 obj -<< /Kids [366 0 R 367 0 R 368 0 R] >> +363 0 obj +<< /Kids [360 0 R 361 0 R 362 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -370 0 obj -<< /center <> -/justify <> -/raggedright <> +364 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1942,7 +1967,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1960,7 +1985,7 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 22 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 110 0 R 197 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 108 0 R 193 0 R] /ID (ID.0002) >> endobj 23 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 22 0 R /ID (ID.0003) >> @@ -1969,435 +1994,417 @@ endobj << /Type /StructElem /S /Artifact /NS 15 0 R /P 22 0 R /ID (ID.0004) >> endobj 25 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [26 0 R 44 0 R 57 0 R] /ID (ID.0005) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [26 0 R 43 0 R 56 0 R] /ID (ID.0005) >> endobj 26 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 25 0 R /K 27 0 R /ID (ID.0006) >> +<< /Type /StructElem /T /S /part /NS 15 0 R /P 25 0 R /K <> /ID (ID.0006) >> endobj -27 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 26 0 R /K <> /ID (ID.0007) >> +43 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 44 0 R /ID (ID.0007) >> endobj 44 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 25 0 R /K 45 0 R /ID (ID.0008) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 43 0 R /K <> /ID (ID.0008) >> endobj -45 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 44 0 R /K <> /ID (ID.0009) >> +56 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 25 0 R /K [57 0 R 59 0 R 61 0 R] /ID (ID.0009) >> endobj 57 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 25 0 R /K [58 0 R 61 0 R 63 0 R] /ID (ID.0010) >> -endobj -58 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 57 0 R /K 59 0 R /ID (ID.0011) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 56 0 R /K <> /ID (ID.0010) >> endobj 59 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 58 0 R /K <> /ID (ID.0012) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 56 0 R /K 60 0 R /ID (ID.0011) >> +endobj +60 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 59 0 R /K <> /ID (ID.0012) >> endobj 61 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 57 0 R /K 62 0 R /ID (ID.0013) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 56 0 R /K [62 0 R 63 0 R 65 0 R] /ID (ID.0013) >> endobj 62 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 61 0 R /K <> /ID (ID.0014) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 61 0 R /K <> /ID (ID.0014) >> endobj 63 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 57 0 R /K [64 0 R 65 0 R 67 0 R] /ID (ID.0015) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 61 0 R /K 64 0 R /ID (ID.0015) >> endobj 64 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 63 0 R /K <> /ID (ID.0016) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 63 0 R /K <> /ID (ID.0016) >> endobj 65 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 63 0 R /K 66 0 R /ID (ID.0017) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 61 0 R /K [66 0 R 67 0 R 69 0 R] /ID (ID.0017) >> endobj 66 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 65 0 R /K <> /ID (ID.0018) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 65 0 R /K <> /ID (ID.0018) >> endobj 67 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 63 0 R /K [68 0 R 69 0 R 71 0 R] /ID (ID.0019) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 65 0 R /K 68 0 R /ID (ID.0019) >> endobj 68 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 67 0 R /K <> /ID (ID.0020) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 67 0 R /K <> /ID (ID.0020) >> endobj 69 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 67 0 R /K 70 0 R /ID (ID.0021) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 65 0 R /K [70 0 R 71 0 R 73 0 R] /ID (ID.0021) >> endobj 70 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 69 0 R /K <> /ID (ID.0022) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 69 0 R /K <> /ID (ID.0022) >> endobj 71 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 67 0 R /K [72 0 R 73 0 R 75 0 R] /ID (ID.0023) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 69 0 R /K 72 0 R /ID (ID.0023) >> endobj 72 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 71 0 R /K <> /ID (ID.0024) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 71 0 R /K <> /ID (ID.0024) >> endobj 73 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 71 0 R /K 74 0 R /ID (ID.0025) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 69 0 R /K [74 0 R 75 0 R 77 0 R] /ID (ID.0025) >> endobj 74 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 73 0 R /K <> /ID (ID.0026) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 73 0 R /K <> /ID (ID.0026) >> endobj 75 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 71 0 R /K [76 0 R 77 0 R 79 0 R] /ID (ID.0027) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 73 0 R /K 76 0 R /ID (ID.0027) >> endobj 76 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 75 0 R /K <> /ID (ID.0028) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 75 0 R /K <> /ID (ID.0028) >> endobj 77 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 75 0 R /K 78 0 R /ID (ID.0029) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 73 0 R /K [78 0 R 79 0 R 81 0 R] /ID (ID.0029) >> endobj 78 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 77 0 R /K <> /ID (ID.0030) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 77 0 R /K <> /ID (ID.0030) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 75 0 R /K [80 0 R 81 0 R 83 0 R] /ID (ID.0031) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 77 0 R /K 80 0 R /ID (ID.0031) >> endobj 80 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 79 0 R /K <> /ID (ID.0032) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 79 0 R /K <> /ID (ID.0032) >> endobj 81 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 79 0 R /K 82 0 R /ID (ID.0033) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 77 0 R /K 82 0 R /ID (ID.0033) >> endobj 82 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 81 0 R /K <> /ID (ID.0034) >> -endobj -83 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 79 0 R /K 84 0 R /ID (ID.0035) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 81 0 R /K <> /ID (ID.0034) >> endobj -84 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 83 0 R /K <> /ID (ID.0036) >> +108 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [109 0 R 125 0 R 137 0 R] /ID (ID.0035) >> endobj -110 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [111 0 R 128 0 R 140 0 R] /ID (ID.0037) >> +109 0 obj +<< /Type /StructElem /T /S /part /NS 15 0 R /P 108 0 R /K [<> 111 0 R <>] /ID (ID.0036) >> endobj 111 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 110 0 R /K [112 0 R 114 0 R] /ID (ID.0038) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 109 0 R /K <> /ID (ID.0037) >> endobj -112 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 111 0 R /K <> /ID (ID.0039) >> +125 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 108 0 R /K 126 0 R /ID (ID.0038) >> endobj -114 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 111 0 R /K <> /ID (ID.0040) >> +126 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 125 0 R /K <> /ID (ID.0039) >> endobj -128 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 110 0 R /K 129 0 R /ID (ID.0041) >> +137 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 108 0 R /K [138 0 R 141 0 R 143 0 R] /ID (ID.0040) >> endobj -129 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 128 0 R /K <> /ID (ID.0042) >> +138 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 137 0 R /K [<> 140 0 R <>] /ID (ID.0041) >> endobj 140 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 110 0 R /K [141 0 R 145 0 R 147 0 R] /ID (ID.0043) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 138 0 R /K <> /ID (ID.0042) >> endobj 141 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 140 0 R /K [142 0 R 144 0 R] /ID (ID.0044) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 137 0 R /K 142 0 R /ID (ID.0043) >> endobj 142 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 141 0 R /K <> /ID (ID.0045) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 141 0 R /K <> /ID (ID.0044) >> +endobj +143 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 137 0 R /K [144 0 R 146 0 R 148 0 R] /ID (ID.0045) >> endobj 144 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 141 0 R /K <> /ID (ID.0046) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 143 0 R /K [145 0 R <> <>] /ID (ID.0046) >> endobj 145 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 140 0 R /K 146 0 R /ID (ID.0047) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 144 0 R /K <> /ID (ID.0047) >> endobj 146 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 145 0 R /K <> /ID (ID.0048) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 143 0 R /K 147 0 R /ID (ID.0048) >> endobj 147 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 140 0 R /K [148 0 R 150 0 R 152 0 R] /ID (ID.0049) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 146 0 R /K <> /ID (ID.0049) >> endobj 148 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 147 0 R /K [149 0 R <>] /ID (ID.0050) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 143 0 R /K [149 0 R 151 0 R 153 0 R] /ID (ID.0050) >> endobj 149 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 148 0 R /K <> /ID (ID.0051) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 148 0 R /K [150 0 R <> <>] /ID (ID.0051) >> endobj 150 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 147 0 R /K 151 0 R /ID (ID.0052) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 149 0 R /K <> /ID (ID.0052) >> endobj 151 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 150 0 R /K <> /ID (ID.0053) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 148 0 R /K 152 0 R /ID (ID.0053) >> endobj 152 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 147 0 R /K [153 0 R 155 0 R 157 0 R] /ID (ID.0054) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 151 0 R /K <> /ID (ID.0054) >> endobj 153 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 152 0 R /K [154 0 R <>] /ID (ID.0055) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 148 0 R /K [154 0 R 156 0 R 158 0 R] /ID (ID.0055) >> endobj 154 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 153 0 R /K <> /ID (ID.0056) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 153 0 R /K [155 0 R <> <>] /ID (ID.0056) >> endobj 155 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 152 0 R /K 156 0 R /ID (ID.0057) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 154 0 R /K <> /ID (ID.0057) >> endobj 156 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 155 0 R /K <> /ID (ID.0058) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 153 0 R /K 157 0 R /ID (ID.0058) >> endobj 157 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 152 0 R /K [158 0 R 160 0 R 162 0 R] /ID (ID.0059) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 156 0 R /K <> /ID (ID.0059) >> endobj 158 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 157 0 R /K [159 0 R <>] /ID (ID.0060) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 153 0 R /K [159 0 R 161 0 R 163 0 R 165 0 R] /ID (ID.0060) >> endobj 159 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 158 0 R /K <> /ID (ID.0061) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 158 0 R /K [<> 160 0 R <>] /ID (ID.0061) >> endobj 160 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 157 0 R /K 161 0 R /ID (ID.0062) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 159 0 R /K <> /ID (ID.0062) >> endobj 161 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 160 0 R /K <> /ID (ID.0063) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 158 0 R /K 162 0 R /ID (ID.0063) >> endobj 162 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 157 0 R /K [163 0 R 165 0 R 167 0 R 169 0 R] /ID (ID.0064) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 161 0 R /K <> /ID (ID.0064) >> endobj 163 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 162 0 R /K [<> 164 0 R <>] /ID (ID.0065) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 158 0 R /K 164 0 R /ID (ID.0065) >> endobj 164 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 163 0 R /K <> /ID (ID.0066) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 163 0 R /K <> /ID (ID.0066) >> endobj 165 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 162 0 R /K 166 0 R /ID (ID.0067) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 158 0 R /K [166 0 R 168 0 R 170 0 R] /ID (ID.0067) >> endobj 166 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 165 0 R /K <> /ID (ID.0068) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 165 0 R /K [<> 167 0 R <>] /ID (ID.0068) >> endobj 167 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 162 0 R /K 168 0 R /ID (ID.0069) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 166 0 R /K <> /ID (ID.0069) >> endobj 168 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 167 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 169 0 R /ID (ID.0070) >> endobj 169 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [170 0 R 172 0 R 174 0 R] /ID (ID.0071) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 168 0 R /K <> /ID (ID.0071) >> endobj 170 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 169 0 R /K [<> 171 0 R <>] /ID (ID.0072) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 171 0 R /ID (ID.0072) >> endobj 171 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 170 0 R /K <> /ID (ID.0073) >> -endobj -172 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 169 0 R /K 173 0 R /ID (ID.0074) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K <> /ID (ID.0073) >> endobj -173 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 172 0 R /K <> /ID (ID.0075) >> +193 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [194 0 R 208 0 R 220 0 R] /ID (ID.0074) >> endobj -174 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 169 0 R /K 175 0 R /ID (ID.0076) >> +194 0 obj +<< /Type /StructElem /T /S /part /NS 15 0 R /P 193 0 R /K <> /ID (ID.0075) >> endobj -175 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 174 0 R /K <> /ID (ID.0077) >> +208 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 193 0 R /K 209 0 R /ID (ID.0076) >> endobj -197 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [198 0 R 213 0 R 225 0 R] /ID (ID.0078) >> +209 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 208 0 R /K <> /ID (ID.0077) >> endobj -198 0 obj -<< /Type /StructElem /T /S /part /NS 15 0 R /P 197 0 R /K 199 0 R /ID (ID.0079) >> +220 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 193 0 R /K [221 0 R 223 0 R 225 0 R] /ID (ID.0078) >> endobj -199 0 obj -<< /Type /StructElem /C /center /S /Span /NS 11 0 R /P 198 0 R /K <> /ID (ID.0080) >> +221 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 220 0 R /K <> /ID (ID.0079) >> endobj -213 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 197 0 R /K 214 0 R /ID (ID.0081) >> +223 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 220 0 R /K 224 0 R /ID (ID.0080) >> endobj -214 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 213 0 R /K <> /ID (ID.0082) >> +224 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 223 0 R /K <> /ID (ID.0081) >> endobj 225 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 197 0 R /K [226 0 R 229 0 R 231 0 R] /ID (ID.0083) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 220 0 R /K [226 0 R 227 0 R 229 0 R] /ID (ID.0082) >> endobj 226 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 225 0 R /K 227 0 R /ID (ID.0084) >> +<< /Type /StructElem /T /S /section /NS 17 0 R /P 225 0 R /K <> /ID (ID.0083) >> endobj 227 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 226 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 228 0 R /ID (ID.0084) >> +endobj +228 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 227 0 R /K <> /ID (ID.0085) >> endobj 229 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 230 0 R /ID (ID.0086) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 225 0 R /K [230 0 R 231 0 R 233 0 R] /ID (ID.0086) >> endobj 230 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 229 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 229 0 R /K <> /ID (ID.0087) >> endobj 231 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 225 0 R /K [232 0 R 233 0 R 235 0 R] /ID (ID.0088) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 229 0 R /K 232 0 R /ID (ID.0088) >> endobj 232 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 231 0 R /K <> /ID (ID.0089) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 231 0 R /K <> /ID (ID.0089) >> endobj 233 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 231 0 R /K 234 0 R /ID (ID.0090) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 229 0 R /K [234 0 R 235 0 R 237 0 R] /ID (ID.0090) >> endobj 234 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 233 0 R /K <> /ID (ID.0091) >> +<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 233 0 R /K <> /ID (ID.0091) >> endobj 235 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [236 0 R 237 0 R 239 0 R] /ID (ID.0092) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 233 0 R /K 236 0 R /ID (ID.0092) >> endobj 236 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 235 0 R /K <> /ID (ID.0093) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 235 0 R /K <> /ID (ID.0093) >> endobj 237 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 235 0 R /K 238 0 R /ID (ID.0094) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 233 0 R /K [238 0 R 239 0 R 241 0 R 243 0 R] /ID (ID.0094) >> endobj 238 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 237 0 R /K <> /ID (ID.0095) >> +<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 237 0 R /K <> /ID (ID.0095) >> endobj 239 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [240 0 R 241 0 R 243 0 R] /ID (ID.0096) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 237 0 R /K 240 0 R /ID (ID.0096) >> endobj 240 0 obj -<< /Type /StructElem /T /S /subsubsection /NS 17 0 R /P 239 0 R /K <> /ID (ID.0097) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 239 0 R /K <> /ID (ID.0097) >> endobj 241 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 242 0 R /ID (ID.0098) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 237 0 R /K 242 0 R /ID (ID.0098) >> endobj 242 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 241 0 R /K <> /ID (ID.0099) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 241 0 R /K <> /ID (ID.0099) >> endobj 243 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 239 0 R /K [244 0 R 245 0 R 247 0 R 249 0 R] /ID (ID.0100) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 237 0 R /K [244 0 R 245 0 R 247 0 R 249 0 R 272 0 R 295 0 R] /ID (ID.0100) >> endobj 244 0 obj -<< /Type /StructElem /C /justify /S /paragraph /NS 17 0 R /P 243 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 243 0 R /K <> /ID (ID.0101) >> endobj 245 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 246 0 R /ID (ID.0102) >> endobj 246 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 245 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 245 0 R /K <> /ID (ID.0103) >> endobj 247 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 248 0 R /ID (ID.0104) >> endobj 248 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 247 0 R /K <> /ID (ID.0105) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 247 0 R /K <> /ID (ID.0105) >> endobj 249 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 243 0 R /K [250 0 R 251 0 R 253 0 R 255 0 R 278 0 R 301 0 R] /ID (ID.0106) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 250 0 R /ID (ID.0106) >> endobj 250 0 obj -<< /Type /StructElem /C /justify /S /subparagraph /NS 17 0 R /P 249 0 R /K <> /ID (ID.0107) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 249 0 R /K [<> 251 0 R <> 254 0 R <> 257 0 R <> 260 0 R <> 263 0 R <> 266 0 R <> 269 0 R <>] /ID (ID.0107) >> endobj 251 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 252 0 R /ID (ID.0108) >> -endobj -252 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 251 0 R /K <> /ID (ID.0109) >> -endobj -253 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 254 0 R /ID (ID.0110) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 253 0 R] /ID (ID.0108) >> endobj 254 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 253 0 R /K <> /ID (ID.0111) >> -endobj -255 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 256 0 R /ID (ID.0112) >> -endobj -256 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 255 0 R /K [<> 257 0 R <> 260 0 R <> 263 0 R <> 266 0 R <> 269 0 R <> 272 0 R <> 275 0 R <>] /ID (ID.0113) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 256 0 R] /ID (ID.0109) >> endobj 257 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 259 0 R] /ID (ID.0114) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 259 0 R] /ID (ID.0110) >> endobj 260 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 262 0 R] /ID (ID.0115) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 262 0 R] /ID (ID.0111) >> endobj 263 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 265 0 R] /ID (ID.0116) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 265 0 R] /ID (ID.0112) >> endobj 266 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 268 0 R] /ID (ID.0117) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 268 0 R] /ID (ID.0113) >> endobj 269 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 271 0 R] /ID (ID.0118) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 250 0 R /K [<> 271 0 R] /ID (ID.0114) >> endobj 272 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 274 0 R] /ID (ID.0119) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 273 0 R /ID (ID.0115) >> endobj -275 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 256 0 R /K [<> 277 0 R] /ID (ID.0120) >> +273 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 272 0 R /K [<> 274 0 R <> 277 0 R <> 280 0 R <> 283 0 R <> 286 0 R <> 289 0 R <> 292 0 R <>] /ID (ID.0116) >> endobj -278 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 279 0 R /ID (ID.0121) >> +274 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 276 0 R] /ID (ID.0117) >> endobj -279 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 278 0 R /K [<> 280 0 R <> 283 0 R <> 286 0 R <> 289 0 R <> 292 0 R <> 295 0 R <> 298 0 R <>] /ID (ID.0122) >> +277 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 279 0 R] /ID (ID.0118) >> endobj 280 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 282 0 R] /ID (ID.0123) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 282 0 R] /ID (ID.0119) >> endobj 283 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 285 0 R] /ID (ID.0124) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 285 0 R] /ID (ID.0120) >> endobj 286 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 288 0 R] /ID (ID.0125) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 288 0 R] /ID (ID.0121) >> endobj 289 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 291 0 R] /ID (ID.0126) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 291 0 R] /ID (ID.0122) >> endobj 292 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 294 0 R] /ID (ID.0127) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 273 0 R /K [<> 294 0 R] /ID (ID.0123) >> endobj 295 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 297 0 R] /ID (ID.0128) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 296 0 R /ID (ID.0124) >> endobj -298 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 279 0 R /K [<> 300 0 R] /ID (ID.0129) >> +296 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 295 0 R /K [<> 297 0 R <> 300 0 R <> 303 0 R <> 306 0 R <> 309 0 R <> 312 0 R <> 315 0 R <>] /ID (ID.0125) >> endobj -301 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 302 0 R /ID (ID.0130) >> +297 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 299 0 R] /ID (ID.0126) >> endobj -302 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 301 0 R /K [<> 303 0 R <> 306 0 R <> 309 0 R <> 312 0 R <> 315 0 R <> 318 0 R <> 321 0 R <>] /ID (ID.0131) >> +300 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 302 0 R] /ID (ID.0127) >> endobj 303 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 305 0 R] /ID (ID.0132) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 305 0 R] /ID (ID.0128) >> endobj 306 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 308 0 R] /ID (ID.0133) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 308 0 R] /ID (ID.0129) >> endobj 309 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 311 0 R] /ID (ID.0134) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 311 0 R] /ID (ID.0130) >> endobj 312 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 314 0 R] /ID (ID.0135) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 314 0 R] /ID (ID.0131) >> endobj 315 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 317 0 R] /ID (ID.0136) >> -endobj -318 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 320 0 R] /ID (ID.0137) >> -endobj -321 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 302 0 R /K [<> 323 0 R] /ID (ID.0138) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 296 0 R /K [<> 317 0 R] /ID (ID.0132) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 369 0 R /ClassMap 370 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 363 0 R /ClassMap 364 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> endobj -372 0 obj +366 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -373 0 obj +367 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -374 0 obj +368 0 obj [319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7] endobj -375 0 obj +369 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -376 0 obj +370 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -377 0 obj +371 0 obj [333] endobj -378 0 obj +372 0 obj [277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj -379 0 obj +373 0 obj [756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2] endobj -380 0 obj +374 0 obj << /Length1 1144 /Length2 1422 @@ -2406,7 +2413,7 @@ endobj >> [BINARY STREAM] endobj -381 0 obj +375 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -2419,10 +2426,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 380 0 R +/FontFile 374 0 R >> endobj -382 0 obj +376 0 obj << /Length1 727 /Length2 13927 @@ -2431,7 +2438,7 @@ endobj >> [BINARY STREAM] endobj -383 0 obj +377 0 obj << /Type /FontDescriptor /FontName /QYLLPC+SFBX1000 @@ -2444,10 +2451,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/P/S/a/b/c/e/g/h/i/n/o/one/p/period/r/s/t/u) -/FontFile 382 0 R +/FontFile 376 0 R >> endobj -384 0 obj +378 0 obj << /Length1 727 /Length2 11166 @@ -2456,7 +2463,7 @@ endobj >> [BINARY STREAM] endobj -385 0 obj +379 0 obj << /Type /FontDescriptor /FontName /PWWOHF+SFBX1200 @@ -2469,10 +2476,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/S/b/c/e/i/n/o/one/period/s/t/u) -/FontFile 384 0 R +/FontFile 378 0 R >> endobj -386 0 obj +380 0 obj << /Length1 727 /Length2 9726 @@ -2481,7 +2488,7 @@ endobj >> [BINARY STREAM] endobj -387 0 obj +381 0 obj << /Type /FontDescriptor /FontName /CZSLAP+SFBX1440 @@ -2494,10 +2501,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/S/c/e/i/n/o/one/period/t) -/FontFile 386 0 R +/FontFile 380 0 R >> endobj -388 0 obj +382 0 obj << /Length1 727 /Length2 9969 @@ -2506,7 +2513,7 @@ endobj >> [BINARY STREAM] endobj -389 0 obj +383 0 obj << /Type /FontDescriptor /FontName /TULYZY+SFBX2074 @@ -2519,10 +2526,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/I/P/a/e/h/one/p/r/t) -/FontFile 388 0 R +/FontFile 382 0 R >> endobj -390 0 obj +384 0 obj << /Length1 727 /Length2 9537 @@ -2531,7 +2538,7 @@ endobj >> [BINARY STREAM] endobj -391 0 obj +385 0 obj << /Type /FontDescriptor /FontName /NEYDAH+SFBX2488 @@ -2544,10 +2551,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/P/a/e/h/p/r/t) -/FontFile 390 0 R +/FontFile 384 0 R >> endobj -392 0 obj +386 0 obj << /Length1 721 /Length2 13426 @@ -2556,7 +2563,7 @@ endobj >> [BINARY STREAM] endobj -393 0 obj +387 0 obj << /Type /FontDescriptor /FontName /BJAALX+SFRM1000 @@ -2569,10 +2576,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/comma/e/five/four/l/m/n/nine/o/one/r/s/seven/six/t/three/two/x/zero) -/FontFile 392 0 R +/FontFile 386 0 R >> endobj -394 0 obj +388 0 obj << /Length1 727 /Length2 5157 @@ -2581,7 +2588,7 @@ endobj >> [BINARY STREAM] endobj -395 0 obj +389 0 obj << /Type /FontDescriptor /FontName /BQPCEH+SFSL1000 @@ -2594,16 +2601,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/C/E/H/I/N/O/P/R/S/T/one/period) -/FontFile 394 0 R +/FontFile 388 0 R >> endobj -371 0 obj +365 0 obj << /Type /Encoding /Differences [44/comma 46/period 48/zero/one/two/three/four/five/six/seven 57/nine 65/A 67/C 69/E 72/H/I 78/N/O/P 82/R/S/T 97/a/b/c 101/e 103/g/h/i 108/l/m/n/o/p 114/r/s/t/u 120/x] >> endobj -396 0 obj +390 0 obj << /Length 2030 >> @@ -2747,20 +2754,20 @@ end %%EOF endstream endobj -99 0 obj +97 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QYLLPC+SFBX1000 -/FontDescriptor 383 0 R +/FontDescriptor 377 0 R /FirstChar 46 /LastChar 117 -/Widths 374 0 R -/Encoding 371 0 R -/ToUnicode 396 0 R +/Widths 368 0 R +/Encoding 365 0 R +/ToUnicode 390 0 R >> endobj -397 0 obj +391 0 obj << /Length 2030 >> @@ -2904,20 +2911,20 @@ end %%EOF endstream endobj -96 0 obj +94 0 obj << /Type /Font /Subtype /Type1 /BaseFont /PWWOHF+SFBX1200 -/FontDescriptor 385 0 R +/FontDescriptor 379 0 R /FirstChar 46 /LastChar 117 -/Widths 375 0 R -/Encoding 371 0 R -/ToUnicode 397 0 R +/Widths 369 0 R +/Encoding 365 0 R +/ToUnicode 391 0 R >> endobj -398 0 obj +392 0 obj << /Length 2030 >> @@ -3061,20 +3068,20 @@ end %%EOF endstream endobj -93 0 obj +91 0 obj << /Type /Font /Subtype /Type1 /BaseFont /CZSLAP+SFBX1440 -/FontDescriptor 387 0 R +/FontDescriptor 381 0 R /FirstChar 46 /LastChar 116 -/Widths 376 0 R -/Encoding 371 0 R -/ToUnicode 398 0 R +/Widths 370 0 R +/Encoding 365 0 R +/ToUnicode 392 0 R >> endobj -399 0 obj +393 0 obj << /Length 2030 >> @@ -3218,20 +3225,20 @@ end %%EOF endstream endobj -121 0 obj +118 0 obj << /Type /Font /Subtype /Type1 /BaseFont /TULYZY+SFBX2074 -/FontDescriptor 389 0 R +/FontDescriptor 383 0 R /FirstChar 49 /LastChar 116 -/Widths 372 0 R -/Encoding 371 0 R -/ToUnicode 399 0 R +/Widths 366 0 R +/Encoding 365 0 R +/ToUnicode 393 0 R >> endobj -400 0 obj +394 0 obj << /Length 2030 >> @@ -3375,20 +3382,20 @@ end %%EOF endstream endobj -36 0 obj +35 0 obj << /Type /Font /Subtype /Type1 /BaseFont /NEYDAH+SFBX2488 -/FontDescriptor 391 0 R +/FontDescriptor 385 0 R /FirstChar 67 /LastChar 116 -/Widths 379 0 R -/Encoding 371 0 R -/ToUnicode 400 0 R +/Widths 373 0 R +/Encoding 365 0 R +/ToUnicode 394 0 R >> endobj -401 0 obj +395 0 obj << /Length 2030 >> @@ -3532,20 +3539,20 @@ end %%EOF endstream endobj -37 0 obj +36 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BJAALX+SFRM1000 -/FontDescriptor 393 0 R +/FontDescriptor 387 0 R /FirstChar 44 /LastChar 120 -/Widths 378 0 R -/Encoding 371 0 R -/ToUnicode 401 0 R +/Widths 372 0 R +/Encoding 365 0 R +/ToUnicode 395 0 R >> endobj -402 0 obj +396 0 obj << /Length 2030 >> @@ -3689,20 +3696,20 @@ end %%EOF endstream endobj -109 0 obj +107 0 obj << /Type /Font /Subtype /Type1 /BaseFont /BQPCEH+SFSL1000 -/FontDescriptor 395 0 R +/FontDescriptor 389 0 R /FirstChar 46 /LastChar 84 -/Widths 373 0 R -/Encoding 371 0 R -/ToUnicode 402 0 R +/Widths 367 0 R +/Encoding 365 0 R +/ToUnicode 396 0 R >> endobj -403 0 obj +397 0 obj << /Length 654 >> @@ -3740,90 +3747,69 @@ end %%EOF endstream endobj -51 0 obj +50 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 381 0 R +/FontDescriptor 375 0 R /FirstChar 32 /LastChar 32 -/Widths 377 0 R -/ToUnicode 403 0 R +/Widths 371 0 R +/ToUnicode 397 0 R >> endobj -38 0 obj +37 0 obj << /Type /Pages /Count 6 -/Parent 404 0 R -/Kids [21 0 R 40 0 R 46 0 R 53 0 R 60 0 R 105 0 R] +/Parent 398 0 R +/Kids [21 0 R 39 0 R 45 0 R 52 0 R 58 0 R 103 0 R] >> endobj -122 0 obj +119 0 obj << /Type /Pages /Count 6 -/Parent 404 0 R -/Kids [113 0 R 124 0 R 130 0 R 136 0 R 143 0 R 193 0 R] +/Parent 398 0 R +/Kids [110 0 R 121 0 R 127 0 R 133 0 R 139 0 R 189 0 R] >> endobj -207 0 obj +202 0 obj << /Type /Pages /Count 5 -/Parent 404 0 R -/Kids [200 0 R 209 0 R 215 0 R 221 0 R 228 0 R] +/Parent 398 0 R +/Kids [195 0 R 204 0 R 210 0 R 216 0 R 222 0 R] >> endobj -404 0 obj +398 0 obj << /Type /Pages /Count 17 -/Kids [38 0 R 122 0 R 207 0 R] +/Kids [37 0 R 119 0 R 202 0 R] >> endobj -405 0 obj +399 0 obj << /Type /Outlines -/First 343 0 R -/Last 355 0 R +/First 337 0 R +/Last 349 0 R /Count 2 >> endobj -364 0 obj -<< -/Title 365 0 R -/A 363 0 R -/Parent 361 0 R ->> -endobj -361 0 obj -<< -/Title 362 0 R -/A 360 0 R -/Parent 358 0 R -/First 364 0 R -/Last 364 0 R -/Count -1 ->> -endobj 358 0 obj << /Title 359 0 R /A 357 0 R /Parent 355 0 R -/First 361 0 R -/Last 361 0 R -/Count -1 >> endobj 355 0 obj << /Title 356 0 R /A 354 0 R -/Parent 405 0 R -/Prev 343 0 R +/Parent 352 0 R /First 358 0 R /Last 358 0 R /Count -1 @@ -3834,13 +3820,17 @@ endobj /Title 353 0 R /A 351 0 R /Parent 349 0 R +/First 355 0 R +/Last 355 0 R +/Count -1 >> endobj 349 0 obj << /Title 350 0 R /A 348 0 R -/Parent 346 0 R +/Parent 399 0 R +/Prev 337 0 R /First 352 0 R /Last 352 0 R /Count -1 @@ -3851,132 +3841,148 @@ endobj /Title 347 0 R /A 345 0 R /Parent 343 0 R -/First 349 0 R -/Last 349 0 R -/Count -1 >> endobj 343 0 obj << /Title 344 0 R /A 342 0 R -/Parent 405 0 R -/Next 355 0 R +/Parent 340 0 R /First 346 0 R /Last 346 0 R /Count -1 >> endobj -406 0 obj +340 0 obj +<< +/Title 341 0 R +/A 339 0 R +/Parent 337 0 R +/First 343 0 R +/Last 343 0 R +/Count -1 +>> +endobj +337 0 obj +<< +/Title 338 0 R +/A 336 0 R +/Parent 399 0 R +/Next 349 0 R +/First 340 0 R +/Last 340 0 R +/Count -1 +>> +endobj +400 0 obj << -/Names [(Doc-Start) 32 0 R (chapter*.2) 89 0 R (chapter*.9) 329 0 R (chapter.1) 180 0 R (page.1) 30 0 R (page.10) 138 0 R] +/Names [(Doc-Start) 31 0 R (chapter*.2) 87 0 R (chapter*.9) 323 0 R (chapter.1) 176 0 R (page.1) 29 0 R (page.10) 135 0 R] /Limits [(Doc-Start) (page.10)] >> endobj -407 0 obj +401 0 obj << -/Names [(page.11) 178 0 R (page.12) 195 0 R (page.13) 203 0 R (page.14) 211 0 R (page.15) 218 0 R (page.16) 223 0 R] +/Names [(page.11) 174 0 R (page.12) 191 0 R (page.13) 198 0 R (page.14) 206 0 R (page.15) 213 0 R (page.16) 218 0 R] /Limits [(page.11) (page.16)] >> endobj -408 0 obj +402 0 obj << -/Names [(page.17) 327 0 R (page.2) 42 0 R (page.3) 49 0 R (page.4) 55 0 R (page.5) 87 0 R (page.6) 107 0 R] +/Names [(page.17) 321 0 R (page.2) 41 0 R (page.3) 48 0 R (page.4) 54 0 R (page.5) 85 0 R (page.6) 105 0 R] /Limits [(page.17) (page.6)] >> endobj -409 0 obj +403 0 obj << -/Names [(page.7) 117 0 R (page.8) 126 0 R (page.9) 133 0 R (paragraph*.13) 337 0 R (paragraph*.6) 100 0 R (paragraph.1.1.1.1.1) 188 0 R] +/Names [(page.7) 114 0 R (page.8) 123 0 R (page.9) 130 0 R (paragraph*.13) 331 0 R (paragraph*.6) 98 0 R (paragraph.1.1.1.1.1) 184 0 R] /Limits [(page.7) (paragraph.1.1.1.1.1)] >> endobj -410 0 obj +404 0 obj << -/Names [(part*.1) 34 0 R (part*.8) 205 0 R (part.1) 119 0 R (section*.10) 331 0 R (section*.3) 91 0 R (section.1.1) 182 0 R] +/Names [(part*.1) 33 0 R (part*.8) 200 0 R (part.1) 116 0 R (section*.10) 325 0 R (section*.3) 89 0 R (section.1.1) 178 0 R] /Limits [(part*.1) (section.1.1)] >> endobj -411 0 obj +405 0 obj << -/Names [(subparagraph*.14) 339 0 R (subparagraph*.7) 102 0 R (subparagraph.1.1.1.1.1.1) 190 0 R (subsection*.11) 333 0 R (subsection*.4) 94 0 R (subsection.1.1.1) 184 0 R] +/Names [(subparagraph*.14) 333 0 R (subparagraph*.7) 100 0 R (subparagraph.1.1.1.1.1.1) 186 0 R (subsection*.11) 327 0 R (subsection*.4) 92 0 R (subsection.1.1.1) 180 0 R] /Limits [(subparagraph*.14) (subsection.1.1.1)] >> endobj -412 0 obj +406 0 obj << -/Names [(subsubsection*.12) 335 0 R (subsubsection*.5) 97 0 R (subsubsection.1.1.1.1) 186 0 R] +/Names [(subsubsection*.12) 329 0 R (subsubsection*.5) 95 0 R (subsubsection.1.1.1.1) 182 0 R] /Limits [(subsubsection*.12) (subsubsection.1.1.1.1)] >> endobj -413 0 obj +407 0 obj << -/Kids [406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R] +/Kids [400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R] /Limits [(Doc-Start) (subsection.1.1.1)] >> endobj -414 0 obj +408 0 obj << -/Kids [412 0 R] +/Kids [406 0 R] /Limits [(subsubsection*.12) (subsubsection.1.1.1.1)] >> endobj -415 0 obj +409 0 obj << -/Kids [413 0 R 414 0 R] +/Kids [407 0 R 408 0 R] /Limits [(Doc-Start) (subsubsection.1.1.1.1)] >> endobj -416 0 obj +410 0 obj << -/Dests 415 0 R +/Dests 409 0 R >> endobj -417 0 obj +411 0 obj << /Type /Catalog -/Pages 404 0 R -/Outlines 405 0 R -/Names 416 0 R -/MarkInfo 341 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 324 0 R +/Pages 398 0 R +/Outlines 399 0 R +/Names 410 0 R +/MarkInfo 335 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 318 0 R >> endobj -418 0 obj +412 0 obj << /Producer (pdfTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 419 +0 413 0000000010 65535 f -0000040062 00000 n -0000040109 00000 n -0000040131 00000 n -0000040153 00000 n -0000066441 00000 n -0000041194 00000 n -0000045029 00000 n -0000047426 00000 n -0000045946 00000 n +0000040485 00000 n +0000040532 00000 n +0000040554 00000 n +0000040576 00000 n +0000066473 00000 n +0000041617 00000 n +0000045386 00000 n +0000047960 00000 n +0000046328 00000 n 0000000012 00000 f -0000046014 00000 n +0000046396 00000 n 0000000014 00000 f -0000046084 00000 n +0000046466 00000 n 0000000020 00000 f -0000046964 00000 n -0000046165 00000 n -0000047237 00000 n -0000047066 00000 n -0000047339 00000 n +0000047498 00000 n +0000046547 00000 n +0000047771 00000 n +0000047600 00000 n +0000047873 00000 n 0000000000 00000 f 0000000253 00000 n -0000047487 00000 n -0000047604 00000 n -0000047694 00000 n -0000047784 00000 n -0000047896 00000 n -0000048018 00000 n +0000048021 00000 n +0000048138 00000 n +0000048228 00000 n +0000048318 00000 n +0000048430 00000 n 0000000717 00000 n 0000000015 00000 n 0000000388 00000 n @@ -3985,394 +3991,389 @@ xref 0000000559 00000 n 0000000610 00000 n 0000000668 00000 n -0000164124 00000 n -0000166396 00000 n -0000169731 00000 n +0000164156 00000 n +0000166428 00000 n +0000169763 00000 n 0000001147 00000 n 0000000901 00000 n 0000000793 00000 n 0000001036 00000 n 0000001096 00000 n -0000048151 00000 n -0000048256 00000 n +0000048578 00000 n +0000048683 00000 n 0000001539 00000 n 0000001785 00000 n 0000001187 00000 n 0000001674 00000 n 0000001734 00000 n -0000169564 00000 n +0000169596 00000 n 0000002263 00000 n 0000002017 00000 n 0000001861 00000 n 0000002152 00000 n 0000002212 00000 n -0000048396 00000 n -0000048508 00000 n -0000048645 00000 n -0000004463 00000 n -0000048783 00000 n -0000048888 00000 n -0000049028 00000 n -0000049140 00000 n -0000049303 00000 n -0000049408 00000 n -0000049548 00000 n -0000049660 00000 n -0000049838 00000 n -0000049943 00000 n -0000050083 00000 n -0000050195 00000 n -0000050388 00000 n -0000050493 00000 n -0000050633 00000 n -0000050745 00000 n -0000050884 00000 n -0000050989 00000 n -0000051129 00000 n -0000051241 00000 n -0000051384 00000 n -0000051489 00000 n -0000051630 00000 n -0000051735 00000 n -0000005379 00000 n +0000048823 00000 n +0000048935 00000 n +0000004466 00000 n +0000049098 00000 n +0000049203 00000 n +0000049343 00000 n +0000049455 00000 n +0000049618 00000 n +0000049723 00000 n +0000049863 00000 n +0000049975 00000 n +0000050153 00000 n +0000050258 00000 n +0000050398 00000 n +0000050510 00000 n +0000050703 00000 n +0000050808 00000 n +0000050948 00000 n +0000051060 00000 n +0000051199 00000 n +0000051304 00000 n +0000051444 00000 n +0000051556 00000 n +0000051699 00000 n +0000051804 00000 n +0000051945 00000 n +0000052050 00000 n +0000005380 00000 n 0000002327 00000 n -0000004598 00000 n -0000004658 00000 n -0000004709 00000 n -0000004769 00000 n -0000004820 00000 n -0000004880 00000 n -0000159579 00000 n -0000004931 00000 n -0000004991 00000 n -0000157307 00000 n -0000005042 00000 n -0000005102 00000 n -0000155035 00000 n -0000005153 00000 n -0000005214 00000 n -0000005266 00000 n -0000005327 00000 n -0000005986 00000 n -0000005734 00000 n -0000005503 00000 n -0000005872 00000 n -0000005934 00000 n -0000168668 00000 n -0000051876 00000 n -0000051992 00000 n -0000052127 00000 n -0000006452 00000 n -0000052263 00000 n -0000006821 00000 n -0000006076 00000 n -0000006591 00000 n -0000006653 00000 n -0000006706 00000 n -0000006768 00000 n -0000161851 00000 n -0000169842 00000 n -0000007286 00000 n -0000007032 00000 n -0000006923 00000 n -0000007171 00000 n -0000007233 00000 n -0000052399 00000 n -0000052507 00000 n -0000007680 00000 n -0000007934 00000 n -0000007327 00000 n -0000007819 00000 n -0000007881 00000 n -0000008423 00000 n -0000008169 00000 n -0000008011 00000 n -0000008308 00000 n -0000008370 00000 n -0000052650 00000 n -0000052767 00000 n -0000052917 00000 n -0000011323 00000 n -0000053058 00000 n -0000053199 00000 n -0000053307 00000 n -0000053450 00000 n -0000053567 00000 n -0000053743 00000 n -0000053878 00000 n -0000053986 00000 n -0000054129 00000 n -0000054246 00000 n -0000054437 00000 n -0000054572 00000 n -0000054680 00000 n -0000054823 00000 n -0000054940 00000 n -0000055147 00000 n -0000055282 00000 n -0000055390 00000 n -0000055534 00000 n -0000055659 00000 n -0000055847 00000 n -0000055983 00000 n -0000056091 00000 n -0000056235 00000 n -0000056343 00000 n -0000056487 00000 n -0000056604 00000 n -0000056795 00000 n -0000056931 00000 n -0000057039 00000 n -0000057183 00000 n -0000057291 00000 n -0000012268 00000 n -0000008488 00000 n -0000011463 00000 n -0000011525 00000 n -0000011578 00000 n -0000011640 00000 n -0000011693 00000 n -0000011755 00000 n -0000011808 00000 n -0000011870 00000 n -0000011923 00000 n -0000011985 00000 n -0000012038 00000 n -0000012100 00000 n -0000012153 00000 n -0000012215 00000 n -0000012992 00000 n -0000012737 00000 n +0000004601 00000 n +0000004661 00000 n +0000004712 00000 n +0000004772 00000 n +0000004823 00000 n +0000004883 00000 n +0000159611 00000 n +0000004934 00000 n +0000004994 00000 n +0000157339 00000 n +0000005045 00000 n +0000005105 00000 n +0000155067 00000 n +0000005156 00000 n +0000005216 00000 n +0000005267 00000 n +0000005328 00000 n +0000005987 00000 n +0000005735 00000 n +0000005504 00000 n +0000005873 00000 n +0000005935 00000 n +0000168700 00000 n +0000052191 00000 n +0000052307 00000 n +0000006511 00000 n +0000052502 00000 n +0000006880 00000 n +0000006077 00000 n +0000006650 00000 n +0000006712 00000 n +0000006765 00000 n +0000006827 00000 n +0000161883 00000 n +0000169874 00000 n +0000007345 00000 n +0000007091 00000 n +0000006982 00000 n +0000007230 00000 n +0000007292 00000 n +0000052637 00000 n +0000052745 00000 n +0000007739 00000 n +0000007993 00000 n +0000007386 00000 n +0000007878 00000 n +0000007940 00000 n +0000008482 00000 n +0000008228 00000 n +0000008070 00000 n +0000008367 00000 n +0000008429 00000 n +0000052888 00000 n +0000053005 00000 n +0000011744 00000 n +0000053215 00000 n +0000053350 00000 n +0000053458 00000 n +0000053601 00000 n +0000053718 00000 n +0000053928 00000 n +0000054063 00000 n +0000054171 00000 n +0000054314 00000 n +0000054431 00000 n +0000054657 00000 n +0000054792 00000 n +0000054900 00000 n +0000055044 00000 n +0000055161 00000 n +0000055403 00000 n +0000055539 00000 n +0000055647 00000 n +0000055791 00000 n +0000055916 00000 n +0000056104 00000 n +0000056240 00000 n +0000056348 00000 n +0000056492 00000 n +0000056600 00000 n +0000056744 00000 n +0000056861 00000 n +0000057052 00000 n +0000057188 00000 n +0000057296 00000 n +0000057440 00000 n +0000057548 00000 n +0000012689 00000 n +0000008547 00000 n +0000011884 00000 n +0000011946 00000 n +0000011999 00000 n +0000012061 00000 n +0000012114 00000 n +0000012176 00000 n +0000012229 00000 n +0000012291 00000 n +0000012344 00000 n 0000012406 00000 n -0000012877 00000 n -0000012939 00000 n -0000057435 00000 n -0000057551 00000 n -0000057676 00000 n -0000013322 00000 n -0000013688 00000 n -0000013082 00000 n -0000013462 00000 n -0000013524 00000 n -0000013577 00000 n -0000013637 00000 n -0000169959 00000 n -0000014129 00000 n -0000013874 00000 n -0000013765 00000 n -0000014014 00000 n -0000014076 00000 n -0000057812 00000 n -0000057920 00000 n -0000014641 00000 n -0000014896 00000 n -0000014170 00000 n -0000014781 00000 n -0000014843 00000 n -0000015572 00000 n +0000012459 00000 n +0000012521 00000 n +0000012574 00000 n +0000012636 00000 n +0000013413 00000 n +0000013158 00000 n +0000012827 00000 n +0000013298 00000 n +0000013360 00000 n +0000057692 00000 n +0000057808 00000 n +0000013743 00000 n +0000014109 00000 n +0000013503 00000 n +0000013883 00000 n +0000013945 00000 n +0000013998 00000 n +0000014058 00000 n +0000169991 00000 n +0000014550 00000 n +0000014295 00000 n +0000014186 00000 n +0000014435 00000 n +0000014497 00000 n +0000057959 00000 n +0000058067 00000 n +0000015062 00000 n 0000015317 00000 n -0000014986 00000 n -0000015457 00000 n -0000015519 00000 n -0000058063 00000 n -0000058180 00000 n -0000058320 00000 n -0000034498 00000 n -0000058461 00000 n -0000058569 00000 n -0000058712 00000 n -0000058829 00000 n -0000058995 00000 n -0000059103 00000 n -0000059246 00000 n -0000059363 00000 n -0000059544 00000 n -0000059652 00000 n -0000059795 00000 n -0000059912 00000 n -0000060108 00000 n -0000060216 00000 n -0000060359 00000 n -0000060484 00000 n -0000060626 00000 n -0000060734 00000 n -0000060877 00000 n -0000060985 00000 n -0000061129 00000 n -0000061270 00000 n -0000061416 00000 n -0000061524 00000 n -0000061668 00000 n -0000061776 00000 n -0000061920 00000 n -0000062028 00000 n -0000062475 00000 n -0000034818 00000 n -0000015662 00000 n -0000062611 00000 n -0000035015 00000 n -0000015719 00000 n -0000062747 00000 n -0000035216 00000 n -0000015776 00000 n -0000062883 00000 n -0000035417 00000 n -0000015833 00000 n -0000063019 00000 n -0000035620 00000 n -0000015890 00000 n -0000063155 00000 n -0000035827 00000 n -0000015947 00000 n -0000063291 00000 n -0000036031 00000 n -0000016004 00000 n -0000063427 00000 n -0000063535 00000 n -0000063982 00000 n -0000036238 00000 n -0000016061 00000 n -0000064118 00000 n -0000036437 00000 n -0000016118 00000 n -0000064254 00000 n -0000036640 00000 n -0000016175 00000 n -0000064390 00000 n -0000036845 00000 n -0000016232 00000 n -0000064526 00000 n -0000037055 00000 n -0000016289 00000 n -0000064662 00000 n -0000037270 00000 n -0000016346 00000 n -0000064798 00000 n -0000037483 00000 n -0000016403 00000 n -0000064934 00000 n -0000065042 00000 n -0000065489 00000 n -0000037701 00000 n -0000016460 00000 n -0000065625 00000 n -0000037899 00000 n -0000016517 00000 n -0000065761 00000 n -0000038101 00000 n -0000016574 00000 n -0000065897 00000 n -0000038304 00000 n -0000016631 00000 n -0000066033 00000 n -0000038510 00000 n -0000016688 00000 n -0000066169 00000 n -0000038719 00000 n -0000016745 00000 n -0000066305 00000 n -0000038924 00000 n -0000016802 00000 n -0000016859 00000 n -0000039937 00000 n -0000029047 00000 n -0000039132 00000 n -0000039194 00000 n -0000039247 00000 n -0000039309 00000 n -0000039362 00000 n -0000039424 00000 n -0000039477 00000 n -0000039539 00000 n -0000039592 00000 n -0000039654 00000 n -0000039707 00000 n -0000039769 00000 n -0000039822 00000 n -0000039884 00000 n -0000040175 00000 n -0000040212 00000 n -0000170886 00000 n -0000040268 00000 n -0000040316 00000 n -0000170782 00000 n -0000040375 00000 n -0000040438 00000 n -0000170678 00000 n -0000040497 00000 n -0000040560 00000 n -0000170613 00000 n -0000040622 00000 n -0000040700 00000 n -0000170495 00000 n -0000040756 00000 n -0000040804 00000 n -0000170391 00000 n -0000040863 00000 n -0000040926 00000 n -0000170287 00000 n -0000040987 00000 n -0000041050 00000 n -0000170222 00000 n -0000041116 00000 n -0000042357 00000 n -0000043284 00000 n -0000044246 00000 n -0000044974 00000 n -0000045701 00000 n -0000152725 00000 n -0000066580 00000 n -0000067001 00000 n -0000067248 00000 n -0000067695 00000 n -0000068144 00000 n -0000068567 00000 n -0000068590 00000 n -0000069060 00000 n -0000069372 00000 n -0000072037 00000 n -0000072257 00000 n -0000087010 00000 n -0000087274 00000 n -0000099266 00000 n -0000099518 00000 n -0000110069 00000 n -0000110315 00000 n -0000121109 00000 n -0000121352 00000 n -0000131714 00000 n -0000131951 00000 n -0000146197 00000 n -0000146488 00000 n -0000152470 00000 n -0000152945 00000 n -0000155217 00000 n -0000157489 00000 n -0000159761 00000 n -0000162034 00000 n -0000164306 00000 n -0000166578 00000 n -0000168850 00000 n -0000170068 00000 n -0000170145 00000 n -0000171004 00000 n -0000171182 00000 n -0000171352 00000 n -0000171512 00000 n -0000171713 00000 n -0000171895 00000 n -0000172138 00000 n -0000172310 00000 n -0000172430 00000 n -0000172523 00000 n -0000172616 00000 n -0000172654 00000 n -0000172917 00000 n +0000014591 00000 n +0000015202 00000 n +0000015264 00000 n +0000015993 00000 n +0000015738 00000 n +0000015407 00000 n +0000015878 00000 n +0000015940 00000 n +0000058210 00000 n +0000058327 00000 n +0000034922 00000 n +0000058493 00000 n +0000058601 00000 n +0000058744 00000 n +0000058861 00000 n +0000059027 00000 n +0000059135 00000 n +0000059278 00000 n +0000059395 00000 n +0000059576 00000 n +0000059684 00000 n +0000059827 00000 n +0000059944 00000 n +0000060140 00000 n +0000060248 00000 n +0000060391 00000 n +0000060516 00000 n +0000060658 00000 n +0000060766 00000 n +0000060909 00000 n +0000061017 00000 n +0000061161 00000 n +0000061302 00000 n +0000061448 00000 n +0000061556 00000 n +0000061700 00000 n +0000061808 00000 n +0000061952 00000 n +0000062060 00000 n +0000062507 00000 n +0000035242 00000 n +0000016083 00000 n +0000062643 00000 n +0000035439 00000 n +0000016140 00000 n +0000062779 00000 n +0000035640 00000 n +0000016197 00000 n +0000062915 00000 n +0000035841 00000 n +0000016254 00000 n +0000063051 00000 n +0000036044 00000 n +0000016311 00000 n +0000063187 00000 n +0000036251 00000 n +0000016368 00000 n +0000063323 00000 n +0000036454 00000 n +0000016425 00000 n +0000063459 00000 n +0000063567 00000 n +0000064014 00000 n +0000036661 00000 n +0000016482 00000 n +0000064150 00000 n +0000036860 00000 n +0000016539 00000 n +0000064286 00000 n +0000037063 00000 n +0000016596 00000 n +0000064422 00000 n +0000037268 00000 n +0000016653 00000 n +0000064558 00000 n +0000037478 00000 n +0000016710 00000 n +0000064694 00000 n +0000037693 00000 n +0000016767 00000 n +0000064830 00000 n +0000037906 00000 n +0000016824 00000 n +0000064966 00000 n +0000065074 00000 n +0000065521 00000 n +0000038124 00000 n +0000016881 00000 n +0000065657 00000 n +0000038322 00000 n +0000016938 00000 n +0000065793 00000 n +0000038524 00000 n +0000016995 00000 n +0000065929 00000 n +0000038727 00000 n +0000017052 00000 n +0000066065 00000 n +0000038933 00000 n +0000017109 00000 n +0000066201 00000 n +0000039142 00000 n +0000017166 00000 n +0000066337 00000 n +0000039347 00000 n +0000017223 00000 n +0000017280 00000 n +0000040360 00000 n +0000029468 00000 n +0000039555 00000 n +0000039617 00000 n +0000039670 00000 n +0000039732 00000 n +0000039785 00000 n +0000039847 00000 n +0000039900 00000 n +0000039962 00000 n +0000040015 00000 n +0000040077 00000 n +0000040130 00000 n +0000040192 00000 n +0000040245 00000 n +0000040307 00000 n +0000040598 00000 n +0000040635 00000 n +0000170918 00000 n +0000040691 00000 n +0000040739 00000 n +0000170814 00000 n +0000040798 00000 n +0000040861 00000 n +0000170710 00000 n +0000040920 00000 n +0000040983 00000 n +0000170645 00000 n +0000041045 00000 n +0000041123 00000 n +0000170527 00000 n +0000041179 00000 n +0000041227 00000 n +0000170423 00000 n +0000041286 00000 n +0000041349 00000 n +0000170319 00000 n +0000041410 00000 n +0000041473 00000 n +0000170254 00000 n +0000041539 00000 n +0000042820 00000 n +0000043749 00000 n +0000044711 00000 n +0000045331 00000 n +0000046165 00000 n +0000152757 00000 n +0000066612 00000 n +0000067033 00000 n +0000067280 00000 n +0000067727 00000 n +0000068176 00000 n +0000068599 00000 n +0000068622 00000 n +0000069092 00000 n +0000069404 00000 n +0000072069 00000 n +0000072289 00000 n +0000087042 00000 n +0000087306 00000 n +0000099298 00000 n +0000099550 00000 n +0000110101 00000 n +0000110347 00000 n +0000121141 00000 n +0000121384 00000 n +0000131746 00000 n +0000131983 00000 n +0000146229 00000 n +0000146520 00000 n +0000152502 00000 n +0000152977 00000 n +0000155249 00000 n +0000157521 00000 n +0000159793 00000 n +0000162066 00000 n +0000164338 00000 n +0000166610 00000 n +0000168882 00000 n +0000170100 00000 n +0000170177 00000 n +0000171036 00000 n +0000171214 00000 n +0000171384 00000 n +0000171544 00000 n +0000171744 00000 n +0000171926 00000 n +0000172169 00000 n +0000172341 00000 n +0000172461 00000 n +0000172554 00000 n +0000172647 00000 n +0000172685 00000 n +0000172948 00000 n trailer -<< /Size 419 -/Root 417 0 R -/Info 418 0 R +<< /Size 413 +/Root 411 0 R +/Info 412 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -173127 +173158 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-book-tagging-off.tpf b/required/latex-lab/testfiles-sec/test-book-tagging-off.tpf index 4f0a480e2..d1c3793da 100644 --- a/required/latex-lab/testfiles-sec/test-book-tagging-off.tpf +++ b/required/latex-lab/testfiles-sec/test-book-tagging-off.tpf @@ -110,12 +110,15 @@ endobj endobj 39 0 obj << -/Length 307 +/Length 445 >> stream /opacity1 gs BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)-354(1)]TJ/F48 24.7871 Tf 0 -49.814 Td [(B)]TJ/F51 14.3462 Tf 0 -57.783 Td [(1.1)-1100(section)]TJ/F45 9.9626 Tf 0 -21.818 Td [(some)-333(text)]TJ/F53 11.9552 Tf 0 -27.886 Td [(1.1.1)-1125(section)]TJ/F45 9.9626 Tf 169.366 -331.163 Td [(3)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F54 9.9626 Tf [-734( )]TJ +/F47 20.6625 Tf [161(1)]TJ/F48 24.7871 Tf 0 -49.814 Td [(B)]TJ/F51 14.3462 Tf 0 -57.783 Td [(1.1)]TJ/F54 9.9626 Tf [-1584( )]TJ +/F51 14.3462 Tf [232(section)]TJ/F45 9.9626 Tf 0 -21.818 Td [(some)-333(text)]TJ/F53 11.9552 Tf 0 -27.886 Td [(1.1.1)]TJ/F54 9.9626 Tf [-1350( )]TJ +/F53 11.9552 Tf [278(section)]TJ/F45 9.9626 Tf 169.366 -331.163 Td [(3)]TJ ET endstream endobj @@ -132,10 +135,10 @@ endobj 37 0 obj << /ExtGState 1 0 R -/Font << /F47 40 0 R /F48 24 0 R /F51 41 0 R /F45 25 0 R /F53 42 0 R >> +/Font << /F47 40 0 R /F54 41 0 R /F48 24 0 R /F51 42 0 R /F45 25 0 R /F53 43 0 R >> >> endobj -45 0 obj +46 0 obj << /Length 110 >> @@ -146,23 +149,23 @@ BT ET endstream endobj -44 0 obj +45 0 obj << /Type /Page -/Contents 45 0 R -/Resources 43 0 R +/Contents 46 0 R +/Resources 44 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 26 0 R >> endobj -43 0 obj +44 0 obj << /ExtGState 1 0 R /Font << /F45 25 0 R /F49 30 0 R >> >> endobj -46 0 obj +47 0 obj << /Type /Metadata /Subtype /XML /Length 12080 @@ -405,31 +408,32 @@ stream endstream endobj -49 0 obj +50 0 obj << -/Length 202 +/Length 248 >> stream /opacity1 gs BT -/F49 9.9626 Tf 106.869 686.127 Td [(1.2.)-778(SECTION)]TJ/F45 9.9626 Tf [-27099(5)]TJ 14.944 -27.963 Td [(some)-333(text)]TJ/F51 14.3462 Tf -14.944 -32.942 Td [(1.2)-1100(section)]TJ +/F49 9.9626 Tf 106.869 686.127 Td [(1.2.)-778(SECTION)]TJ/F45 9.9626 Tf [-27099(5)]TJ 14.944 -27.963 Td [(some)-333(text)]TJ/F51 14.3462 Tf -14.944 -32.942 Td [(1.2)]TJ/F54 9.9626 Tf [-1584( )]TJ +/F51 14.3462 Tf [232(section)]TJ ET endstream endobj -48 0 obj +49 0 obj << /Type /Page -/Contents 49 0 R -/Resources 47 0 R +/Contents 50 0 R +/Resources 48 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 50 0 R +/Parent 51 0 R >> endobj -47 0 obj +48 0 obj << /ExtGState 1 0 R -/Font << /F49 30 0 R /F45 25 0 R /F51 41 0 R >> +/Font << /F49 30 0 R /F45 25 0 R /F51 42 0 R /F54 41 0 R >> >> endobj 1 0 obj @@ -444,25 +448,53 @@ endobj 4 0 obj << >> endobj -52 0 obj +53 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4] endobj -53 0 obj +54 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] endobj -54 0 obj +55 0 obj +[333] +endobj +56 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -55 0 obj +57 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -56 0 obj +58 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj -57 0 obj +59 0 obj [789.9 744] endobj -58 0 obj +60 0 obj +<< +/Length1 1144 +/Length2 1422 +/Length3 0 +/Length 2566 +>> +[BINARY STREAM] +endobj +61 0 obj +<< +/Type /FontDescriptor +/FontName /MUQHVU+PdfTeX-Space +/Flags 4 +/FontBBox [0 -290 333 1127] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 0 +/XHeight 500 +/CharSet (/space) +/FontFile 60 0 R +>> +endobj +62 0 obj << /Length1 727 /Length2 10615 @@ -471,7 +503,7 @@ endobj >> [BINARY STREAM] endobj -59 0 obj +63 0 obj << /Type /FontDescriptor /FontName /ASRMKV+SFBX1200 @@ -484,10 +516,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/c/e/i/n/o/one/period/s/t) -/FontFile 58 0 R +/FontFile 62 0 R >> endobj -60 0 obj +64 0 obj << /Length1 727 /Length2 9891 @@ -496,7 +528,7 @@ endobj >> [BINARY STREAM] endobj -61 0 obj +65 0 obj << /Type /FontDescriptor /FontName /LUJKLC+SFBX1440 @@ -509,10 +541,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/c/e/i/n/o/one/period/s/t/two) -/FontFile 60 0 R +/FontFile 64 0 R >> endobj -62 0 obj +66 0 obj << /Length1 727 /Length2 9724 @@ -521,7 +553,7 @@ endobj >> [BINARY STREAM] endobj -63 0 obj +67 0 obj << /Type /FontDescriptor /FontName /LYNCJF+SFBX2074 @@ -534,10 +566,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/h/one/p/r/t) -/FontFile 62 0 R +/FontFile 66 0 R >> endobj -64 0 obj +68 0 obj << /Length1 727 /Length2 1503 @@ -546,7 +578,7 @@ endobj >> [BINARY STREAM] endobj -65 0 obj +69 0 obj << /Type /FontDescriptor /FontName /GYACJK+SFBX2488 @@ -559,10 +591,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/A/B) -/FontFile 64 0 R +/FontFile 68 0 R >> endobj -66 0 obj +70 0 obj << /Length1 721 /Length2 11266 @@ -571,7 +603,7 @@ endobj >> [BINARY STREAM] endobj -67 0 obj +71 0 obj << /Type /FontDescriptor /FontName /XLQZEX+SFRM1000 @@ -584,10 +616,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/b/c/e/five/four/i/m/o/one/s/t/three/two/x) -/FontFile 66 0 R +/FontFile 70 0 R >> endobj -68 0 obj +72 0 obj << /Length1 727 /Length2 5649 @@ -596,7 +628,7 @@ endobj >> [BINARY STREAM] endobj -69 0 obj +73 0 obj << /Type /FontDescriptor /FontName /NSHLUJ+SFSL1000 @@ -609,16 +641,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/C/E/H/I/N/O/P/R/S/T/one/period/two) -/FontFile 68 0 R +/FontFile 72 0 R >> endobj -51 0 obj +52 0 obj << /Type /Encoding /Differences [46/period 49/one/two/three/four/five 65/A/B/C 69/E 72/H/I 78/N/O/P 82/R/S/T 97/a/b/c 101/e 104/h/i 109/m/n/o/p 114/r/s/t 120/x] >> endobj -70 0 obj +74 0 obj << /Length 2030 >> @@ -762,20 +794,20 @@ end %%EOF endstream endobj -42 0 obj +43 0 obj << /Type /Font /Subtype /Type1 /BaseFont /ASRMKV+SFBX1200 -/FontDescriptor 59 0 R +/FontDescriptor 63 0 R /FirstChar 46 /LastChar 116 -/Widths 52 0 R -/Encoding 51 0 R -/ToUnicode 70 0 R +/Widths 53 0 R +/Encoding 52 0 R +/ToUnicode 74 0 R >> endobj -71 0 obj +75 0 obj << /Length 2030 >> @@ -919,20 +951,20 @@ end %%EOF endstream endobj -41 0 obj +42 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LUJKLC+SFBX1440 -/FontDescriptor 61 0 R +/FontDescriptor 65 0 R /FirstChar 46 /LastChar 116 -/Widths 53 0 R -/Encoding 51 0 R -/ToUnicode 71 0 R +/Widths 54 0 R +/Encoding 52 0 R +/ToUnicode 75 0 R >> endobj -72 0 obj +76 0 obj << /Length 2030 >> @@ -1081,15 +1113,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /LYNCJF+SFBX2074 -/FontDescriptor 63 0 R +/FontDescriptor 67 0 R /FirstChar 49 /LastChar 116 -/Widths 54 0 R -/Encoding 51 0 R -/ToUnicode 72 0 R +/Widths 56 0 R +/Encoding 52 0 R +/ToUnicode 76 0 R >> endobj -73 0 obj +77 0 obj << /Length 2030 >> @@ -1238,15 +1270,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /GYACJK+SFBX2488 -/FontDescriptor 65 0 R +/FontDescriptor 69 0 R /FirstChar 65 /LastChar 66 -/Widths 57 0 R -/Encoding 51 0 R -/ToUnicode 73 0 R +/Widths 59 0 R +/Encoding 52 0 R +/ToUnicode 77 0 R >> endobj -74 0 obj +78 0 obj << /Length 2030 >> @@ -1395,15 +1427,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /XLQZEX+SFRM1000 -/FontDescriptor 67 0 R +/FontDescriptor 71 0 R /FirstChar 49 /LastChar 120 -/Widths 56 0 R -/Encoding 51 0 R -/ToUnicode 74 0 R +/Widths 58 0 R +/Encoding 52 0 R +/ToUnicode 78 0 R >> endobj -75 0 obj +79 0 obj << /Length 2030 >> @@ -1552,57 +1584,107 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /NSHLUJ+SFSL1000 -/FontDescriptor 69 0 R +/FontDescriptor 73 0 R /FirstChar 46 /LastChar 84 +/Widths 57 0 R +/Encoding 52 0 R +/ToUnicode 79 0 R +>> +endobj +80 0 obj +<< +/Length 654 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: ProcSet (CIDInit) +%%IncludeResource: ProcSet (CIDInit) +%%BeginResource: CMap (TeX-pdftexspace-builtin-0) +%%Title: (TeX-pdftexspace-builtin-0 TeX pdftexspace-builtin 0) +%%Version: 1.000 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo +<< /Registry (TeX) +/Ordering (pdftexspace-builtin) +/Supplement 0 +>> def +/CMapName /TeX-pdftexspace-builtin-0 def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +0 beginbfrange +endbfrange +1 beginbfchar +<20> <0020> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj +41 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /MUQHVU+PdfTeX-Space +/FontDescriptor 61 0 R +/FirstChar 32 +/LastChar 32 /Widths 55 0 R -/Encoding 51 0 R -/ToUnicode 75 0 R +/ToUnicode 80 0 R >> endobj 26 0 obj << /Type /Pages /Count 6 -/Parent 76 0 R -/Kids [22 0 R 28 0 R 32 0 R 35 0 R 38 0 R 44 0 R] +/Parent 81 0 R +/Kids [22 0 R 28 0 R 32 0 R 35 0 R 38 0 R 45 0 R] >> endobj -50 0 obj +51 0 obj << /Type /Pages /Count 1 -/Parent 76 0 R -/Kids [48 0 R] +/Parent 81 0 R +/Kids [49 0 R] >> endobj -76 0 obj +81 0 obj << /Type /Pages /Count 7 -/Kids [26 0 R 50 0 R] +/Kids [26 0 R 51 0 R] >> endobj -77 0 obj +82 0 obj << /Type /Catalog -/Pages 76 0 R -/Lang (en)/Metadata 46 0 R +/Pages 81 0 R +/Lang (en)/Metadata 47 0 R >> endobj -78 0 obj +83 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 79 +0 84 0000000005 65535 f -0000015035 00000 n -0000015082 00000 n -0000015104 00000 n -0000015126 00000 n +0000015243 00000 n +0000015290 00000 n +0000015312 00000 n +0000015334 00000 n 0000000006 00000 f 0000000007 00000 f 0000000008 00000 f @@ -1622,66 +1704,71 @@ xref 0000000324 00000 n 0000000206 00000 n 0000000015 00000 n -0000081277 00000 n -0000083543 00000 n -0000085987 00000 n +0000084389 00000 n +0000086655 00000 n +0000089976 00000 n 0000000674 00000 n 0000000556 00000 n 0000000400 00000 n -0000085810 00000 n +0000088922 00000 n 0000001027 00000 n 0000000909 00000 n 0000000750 00000 n 0000001364 00000 n 0000001246 00000 n 0000001091 00000 n -0000001924 00000 n -0000001806 00000 n +0000002062 00000 n +0000001944 00000 n 0000001440 00000 n -0000079010 00000 n -0000076743 00000 n -0000074476 00000 n -0000002323 00000 n -0000002205 00000 n -0000002036 00000 n -0000002399 00000 n -0000014947 00000 n -0000014829 00000 n -0000014568 00000 n -0000086096 00000 n -0000072207 00000 n -0000015148 00000 n -0000015590 00000 n -0000016012 00000 n -0000016432 00000 n -0000016678 00000 n -0000017117 00000 n -0000017145 00000 n -0000028585 00000 n -0000028829 00000 n -0000039544 00000 n -0000039792 00000 n -0000050340 00000 n -0000050577 00000 n -0000052904 00000 n -0000053127 00000 n -0000065212 00000 n -0000065475 00000 n -0000071948 00000 n -0000072387 00000 n -0000074654 00000 n -0000076921 00000 n -0000079188 00000 n -0000081454 00000 n -0000083721 00000 n -0000086170 00000 n -0000086236 00000 n -0000086314 00000 n +0000082122 00000 n +0000089812 00000 n +0000079855 00000 n +0000077588 00000 n +0000002473 00000 n +0000002355 00000 n +0000002186 00000 n +0000002549 00000 n +0000015143 00000 n +0000015025 00000 n +0000014718 00000 n +0000090085 00000 n +0000075319 00000 n +0000015356 00000 n +0000015798 00000 n +0000016220 00000 n +0000016242 00000 n +0000016662 00000 n +0000016908 00000 n +0000017347 00000 n +0000017375 00000 n +0000020039 00000 n +0000020257 00000 n +0000031697 00000 n +0000031941 00000 n +0000042656 00000 n +0000042904 00000 n +0000053452 00000 n +0000053689 00000 n +0000056016 00000 n +0000056239 00000 n +0000068324 00000 n +0000068587 00000 n +0000075060 00000 n +0000075499 00000 n +0000077766 00000 n +0000080033 00000 n +0000082300 00000 n +0000084566 00000 n +0000086833 00000 n +0000089099 00000 n +0000090159 00000 n +0000090225 00000 n +0000090303 00000 n trailer -<< /Size 79 -/Root 77 0 R -/Info 78 0 R +<< /Size 84 +/Root 82 0 R +/Info 83 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -86446 +90435 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-faulty-nesting.luatex.tlg b/required/latex-lab/testfiles-sec/test-faulty-nesting.luatex.tlg index 86fa41cfd..f9fe4dddb 100644 --- a/required/latex-lab/testfiles-sec/test-faulty-nesting.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-faulty-nesting.luatex.tlg @@ -14,7 +14,7 @@ Package tagpdf Warning: There are still open structures on the stack! (tagpdf) but their nesting can be wrong. Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~14 structure objects -(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) with ~9 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-faulty-nesting.tlg b/required/latex-lab/testfiles-sec/test-faulty-nesting.tlg index 83e9df78e..5381a1d0a 100644 --- a/required/latex-lab/testfiles-sec/test-faulty-nesting.tlg +++ b/required/latex-lab/testfiles-sec/test-faulty-nesting.tlg @@ -14,7 +14,7 @@ Package tagpdf Warning: There are still open structures on the stack! (tagpdf) but their nesting can be wrong. Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~13 structure objects -(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) with ~9 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh1215-color.luatex.tlg b/required/latex-lab/testfiles-sec/test-gh1215-color.luatex.tlg index 3bb8a554f..d020cf00c 100644 --- a/required/latex-lab/testfiles-sec/test-gh1215-color.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-gh1215-color.luatex.tlg @@ -84,13 +84,15 @@ Overfull \vbox (112.1524pt too high) has occurred while \output is active ..\OT1/cmr/bx/n/20.74 e ..\OT1/cmr/bx/n/20.74 r ..\penalty 10000 -..\glue 7.7775 plus 3.88875 minus 2.5925 +..\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +..\glue 0.0 ..\OT1/cmr/bx/n/20.74 1 ..\penalty 10000 ..\glue(\parfillskip) 0.0 plus 1.0fil ..\glue(\rightskip) 0.0 plus 1.0fil .\penalty 10000 .\glue 20.0 +.\glue 0.0 .\glue(\parskip) 0.0 plus 1.0 .\glue(\parskip) 0.0 .\glue(\baselineskip) 8.68948 @@ -136,6 +138,7 @@ Overfull \vbox (112.1524pt too high) has occurred while \output is active ...\OT1/cmr/bx/n/14.4 . ...\OT1/cmr/bx/n/14.4 1 ...\glue 16.19998 +...\glue 0.0 ..\OT1/cmr/bx/n/14.4 s ..\OT1/cmr/bx/n/14.4 u ..\OT1/cmr/bx/n/14.4 b @@ -171,6 +174,7 @@ Overfull \vbox (112.1524pt too high) has occurred while \output is active ...\OT1/cmr/bx/n/12 1 ...\pdfcolorstack 0 pop ...\glue 13.5 +...\glue 0.0 ..\pdfcolorstack 0 push {0 1 0 rg 0 1 0 RG} ..\OT1/cmr/bx/n/12 s ..\OT1/cmr/bx/n/12 u @@ -298,13 +302,18 @@ Completed box being shipped out [2] ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 ....\TU/lmr/m/n/10 -....\glue 4.4475 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\pdfliteral page +....\pdfliteral page ....\OT1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.68948 @@ -355,8 +364,12 @@ Completed box being shipped out [2] .....\OT1/cmr/bx/n/14.4 1 .....\OT1/cmr/bx/n/14.4 . .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 s @@ -396,8 +409,12 @@ Completed box being shipped out [2] .....\OT1/cmr/bx/n/12 1 .....\OT1/cmr/bx/n/12 . .....\OT1/cmr/bx/n/12 1 +.....\pdfliteral page +.....\pdfliteral page .....\pdfcolorstack 0 pop .....\glue 13.5 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\pdfcolorstack 0 push {0 1 0 rg 0 1 0 RG} @@ -412,9 +429,9 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 +...\pdfcolorstack 0 pop ...\pdfliteral page ...\pdfliteral page -...\pdfcolorstack 0 pop ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1.1}subsub}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\penalty 10000 @@ -469,8 +486,8 @@ Completed box being shipped out [2] .\pdfliteral page <><> (test-gh1215-color.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~19 structure objects -(tagpdf) with ~12 'MC' leaf nodes. +(tagpdf) Writing out ~18 structure objects +(tagpdf) with ~15 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh1215-color.tlg b/required/latex-lab/testfiles-sec/test-gh1215-color.tlg index 7777a64ba..de80af188 100644 --- a/required/latex-lab/testfiles-sec/test-gh1215-color.tlg +++ b/required/latex-lab/testfiles-sec/test-gh1215-color.tlg @@ -17,15 +17,15 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,9,-1,} -...\marks4{b+,9,-1,} +...\marks4{b-,12,-1,} +...\marks4{b+,12,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,9,15,} -...\marks4{e+,9,15,} +...\marks4{e-,12,14,} +...\marks4{e+,12,14,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -39,8 +39,8 @@ Completed box being shipped out [1] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,10,-1,} -..\marks4{b+,10,-1,} +..\marks4{b-,13,-1,} +..\marks4{b+,13,-1,} ..\glue(\baselineskip) 18.87984 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -50,8 +50,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,10,15,} -..\marks4{e+,10,15,} +..\marks4{e-,13,14,} +..\marks4{e+,13,14,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -70,8 +70,8 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,11,-1,} -...\marks4{b+,11,-1,} +...\marks4{b-,14,-1,} +...\marks4{b+,14,-1,} ...\hbox(6.8872+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(6.8872+0.0)x345.0, glue set 242.80273fil @@ -95,8 +95,8 @@ Completed box being shipped out [2] .....\T1/cmr/m/sl/10 B ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,11,15,} -...\marks4{e+,11,15,} +...\marks4{e-,14,14,} +...\marks4{e+,14,14,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -113,10 +113,10 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 10.68713 ...\hbox(14.31287+4.03178)x345.0, glue set 123.96104fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 +....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\T1/cmr/bx/n/20.74 C ....\T1/cmr/bx/n/20.74 h ....\T1/cmr/bx/n/20.74 a @@ -126,36 +126,45 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/20.74 1 ....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,1,7,Span,,,} -...\marks4{b+,1,7,Span,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} +...\marks4{b-,1,6,chapter,,,} +...\marks4{b+,1,6,chapter,,,} +...\marks4{e-,1,6,} +...\marks4{e+,1,6,} +...\marks4{b-,2,7,heading-number,,,} +...\marks4{b+,2,7,heading-number,,,} +...\marks4{e-,2,7,} +...\marks4{e+,2,7,} +...\marks4{b-,3,6,chapter,,,} +...\marks4{b+,3,6,chapter,,,} ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79831 ...\hbox(17.1699+0.0)x345.0, glue set 147.1718fil -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmr/bx/n/24.88 b ....\T1/cmr/bx/n/24.88 l ....\T1/cmr/bx/n/24.88 u ....\T1/cmr/bx/n/24.88 b -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,2,8,Span,,,} -...\marks4{b+,2,8,Span,,,} -...\marks4{e-,2,8,} -...\marks4{e+,2,8,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\marks1{\__mark_value:nn {1}{\MakeUppercase []{Chapter\ 1. \ blub}}} ...\marks2{\__mark_value:nn {2}{}} ...\write1{\@writefile{toc}{\protect \contentsline {chapter}{\protect \numberline {1}blub}{\thepage }{target*.1}\protected@file@percent }} @@ -171,34 +180,42 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.06242 ...\hbox(9.93758+0.0)x345.0, glue set 285.08627fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x36.07138 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,4,10,heading-number,,,} +.....\marks4{b+,4,10,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 .....\T1/cmr/bx/n/14.4 . .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,4,10,} +.....\marks4{e+,4,10,} +.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,5,9,section,,,} +.....\marks4{b+,5,9,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,5,9,} +.....\marks4{e+,5,9,} +....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 s ....\T1/cmr/bx/n/14.4 u ....\T1/cmr/bx/n/14.4 b -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,3,11,section-number,,,} -...\marks4{b+,3,11,section-number,,,} -...\marks4{e-,3,11,} -...\marks4{e+,3,11,} -...\marks4{b-,4,10,section,,,} -...\marks4{b+,4,10,section,,,} -...\marks4{e-,4,10,} -...\marks4{e+,4,10,} +...\marks4{b-,6,9,section,,,} +...\marks4{b+,6,9,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,6,9,} +...\marks4{e+,6,9,} ...\marks2{\__mark_value:nn {3}{\MakeUppercase []{1.1. \ sub}}} ...\penalty 10000 ...\marks3{\__mark_value:nn {4}{\MakeUppercase []{1.1. \ sub}}} @@ -211,22 +228,34 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.71869 ...\hbox(8.28131+0.0)x345.0, glue set 263.12fil -....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(7.78143+0.0)x41.23993 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,7,13,heading-number,,,} +.....\marks4{b+,7,13,heading-number,,,} .....\pdfcolorstack 0 push {0 1 0 rg 0 1 0 RG} .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,7,13,} +.....\marks4{e+,7,13,} +.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/subsection <> BDC} +.....\marks4{b-,8,12,subsection,,,} +.....\marks4{b+,8,12,subsection,,,} .....\pdfcolorstack 0 pop .....\glue 13.4967 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,8,12,} +.....\marks4{e+,8,12,} +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/subsection <> BDC} ....\pdfcolorstack 0 push {0 1 0 rg 0 1 0 RG} ....\T1/cmr/bx/n/12 s @@ -235,19 +264,15 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/12 s ....\T1/cmr/bx/n/12 u ....\T1/cmr/bx/n/12 b -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,5,14,section-number,,,} -...\marks4{b+,5,14,section-number,,,} -...\marks4{e-,5,14,} -...\marks4{e+,5,14,} -...\marks4{b-,6,13,subsection,,,} -...\marks4{b+,6,13,subsection,,,} -...\marks4{e-,6,13,} -...\marks4{e+,6,13,} +...\marks4{b-,9,12,subsection,,,} +...\marks4{b+,9,12,subsection,,,} ...\pdfcolorstack 0 pop +...\pdfliteral page{EMC} +...\marks4{e-,9,12,} +...\marks4{e+,9,12,} ...\write1{\@writefile{toc}{\protect \contentsline {subsection}{\protect \numberline {1.1.1}subsub}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\penalty 10000 @@ -256,7 +281,7 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 5.0989 ...\hbox(6.9011+1.94397)x345.0, glue set 293.85277fil -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\hbox(0.0+0.0)x0.0 ....\penalty 10000 @@ -272,35 +297,35 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/10 h ....\write1{\@writefile{toc}{\protect \contentsline {paragraph}{paragraph}{\thepage }{target*.4}\protected@file@percent }} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,7,16,paragraph,,,} -...\marks4{b+,7,16,paragraph,,,} -...\marks4{e-,7,16,} -...\marks4{e+,7,16,} -...\marks4{b-,8,18,text-block,,,} -...\marks4{b+,8,18,text-block,,,} -...\marks4{e-,8,18,} -...\marks4{e+,8,18,} +...\marks4{b-,10,15,paragraph,,,} +...\marks4{b+,10,15,paragraph,,,} +...\marks4{e-,10,15,} +...\marks4{e+,10,15,} +...\marks4{b-,11,17,text-block,,,} +...\marks4{b+,11,17,text-block,,,} +...\marks4{e-,11,17,} +...\marks4{e+,11,17,} ...\kern -1.94397 ...\hbox(0.0+1.94397)x0.0 ...\glue -1.94397 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,12,-1,} -..\marks4{b+,12,-1,} +..\marks4{b-,15,-1,} +..\marks4{b+,15,-1,} ..\glue(\baselineskip) 25.29494 ..\hbox(0.0+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} ...\hbox(0.0+0.0)x345.0 ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,12,15,} -..\marks4{e+,12,15,} +..\marks4{e-,15,14,} +..\marks4{e+,15,14,} ..\pdfrunninglinkon .\kern 0.0 .\kern -627.36243 @@ -308,8 +333,8 @@ Completed box being shipped out [2] .\kern 627.36243 <><> (test-gh1215-color.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~18 structure objects -(tagpdf) with ~12 'MC' leaf nodes. +(tagpdf) Writing out ~17 structure objects +(tagpdf) with ~15 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh725-opt-arg.luatex.tlg b/required/latex-lab/testfiles-sec/test-gh725-opt-arg.luatex.tlg index d4787e1a0..bc82dca13 100644 --- a/required/latex-lab/testfiles-sec/test-gh725-opt-arg.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-gh725-opt-arg.luatex.tlg @@ -50,13 +50,18 @@ Completed box being shipped out [1] ....\OT1/cmr/bx/n/20.74 t ....\penalty 10000 ....\TU/lmr/m/n/10 -....\glue 4.4475 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\pdfliteral page +....\pdfliteral page ....\OT1/cmr/bx/n/20.74 I ....\penalty 10000 ....\glue(\parfillskip) 0.0 ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 11.34 @@ -192,13 +197,18 @@ Completed box being shipped out [3] ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 ....\TU/lmr/m/n/10 -....\glue 4.4475 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\pdfliteral page +....\pdfliteral page ....\OT1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 7.30724 @@ -276,8 +286,8 @@ Completed box being shipped out [3] .\pdfliteral page <><> (test-gh725-opt-arg.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~15 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) Writing out ~13 structure objects +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh725-opt-arg.tlg b/required/latex-lab/testfiles-sec/test-gh725-opt-arg.tlg index e11545787..d6881719e 100644 --- a/required/latex-lab/testfiles-sec/test-gh725-opt-arg.tlg +++ b/required/latex-lab/testfiles-sec/test-gh725-opt-arg.tlg @@ -17,13 +17,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,3,-1,} -...\marks4{b+,3,-1,} +...\marks4{b-,4,-1,} +...\marks4{b+,4,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,3,5,} -...\marks4{e+,3,5,} +...\marks4{e-,4,5,} +...\marks4{e+,4,5,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -41,10 +41,10 @@ Completed box being shipped out [1] ...\glue(\baselineskip) 10.68713 ...\hbox(14.31287+0.0)x345.0, glue set 143.38777fil ....\glue(\leftskip) 0.0 plus 1.0fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 +....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/part <> BDC} ....\T1/cmr/bx/n/20.74 P ....\kern-0.61159 ....\T1/cmr/bx/n/20.74 a @@ -52,24 +52,35 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/20.74 t ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/20.74 I ....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/part <> BDC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,1,7,Span,,,} -...\marks4{b+,1,7,Span,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} +...\marks4{b-,1,6,part,,,} +...\marks4{b+,1,6,part,,,} +...\marks4{e-,1,6,} +...\marks4{e+,1,6,} +...\marks4{b-,2,7,heading-number,,,} +...\marks4{b+,2,7,heading-number,,,} +...\marks4{e-,2,7,} +...\marks4{e+,2,7,} +...\marks4{b-,3,6,part,,,} +...\marks4{b+,3,6,part,,,} ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 11.34456 ...\hbox(18.65544+6.2185)x345.0, glue set 139.21857fil ....\glue(\leftskip) 0.0 plus 1.0fil -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmr/bx/n/24.88 P ....\kern-0.72366 @@ -78,14 +89,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/24.88 t ....\glue 8.68394 plus 4.34196 minus 2.89464 ....\T1/cmr/bx/n/24.88 ] -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,2,8,Span,,,} -...\marks4{b+,2,8,Span,,,} -...\marks4{e-,2,8,} -...\marks4{e+,2,8,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\marks1{\__mark_value:nn {1}{}} ...\marks2{\__mark_value:nn {2}{}} ...\write1{\@writefile{toc}{\protect \contentsline {part}{\protect \numberline {I}Part ]}{\thepage }{target*.1}\protected@file@percent }} @@ -98,8 +107,8 @@ Completed box being shipped out [1] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,4,-1,} -..\marks4{b+,4,-1,} +..\marks4{b-,5,-1,} +..\marks4{b+,5,-1,} ..\glue(\baselineskip) 18.87984 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -107,8 +116,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,4,5,} -..\marks4{e+,4,5,} +..\marks4{e-,5,5,} +..\marks4{e+,5,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -127,13 +136,13 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,5,-1,} -...\marks4{b+,5,-1,} +...\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-,5,5,} -...\marks4{e+,5,5,} +...\marks4{e-,6,5,} +...\marks4{e+,6,5,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -147,14 +156,14 @@ Completed box being shipped out [2] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,6,-1,} -..\marks4{b+,6,-1,} +..\marks4{b-,7,-1,} +..\marks4{b+,7,-1,} ..\glue(\baselineskip) 25.29494 ..\hbox(0.0+0.0)x345.0 ...\hbox(0.0+0.0)x345.0 ..\pdfliteral page{EMC} -..\marks4{e-,6,5,} -..\marks4{e+,6,5,} +..\marks4{e-,7,5,} +..\marks4{e+,7,5,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [3] @@ -172,13 +181,13 @@ Completed box being shipped out [3] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,10,-1,} -...\marks4{b+,10,-1,} +...\marks4{b-,12,-1,} +...\marks4{b+,12,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,10,9,} -...\marks4{e+,10,9,} +...\marks4{e-,12,8,} +...\marks4{e+,12,8,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -196,10 +205,10 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 10.68713 ...\hbox(14.31287+4.03178)x345.0, glue set 123.96104fil -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\T1/cmr/bx/n/20.74 C ....\T1/cmr/bx/n/20.74 h ....\T1/cmr/bx/n/20.74 a @@ -209,23 +218,34 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/20.74 1 ....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,7,11,Span,,,} -...\marks4{b+,7,11,Span,,,} -...\marks4{e-,7,11,} -...\marks4{e+,7,11,} +...\marks4{b-,8,9,chapter,,,} +...\marks4{b+,8,9,chapter,,,} +...\marks4{e-,8,9,} +...\marks4{e+,8,9,} +...\marks4{b-,9,10,heading-number,,,} +...\marks4{b+,9,10,heading-number,,,} +...\marks4{e-,9,10,} +...\marks4{e+,9,10,} +...\marks4{b-,10,9,chapter,,,} +...\marks4{b+,10,9,chapter,,,} ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 7.31277 ...\hbox(18.65544+6.2185)x345.0, glue set 117.99341fil -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmr/bx/n/24.88 C ....\T1/cmr/bx/n/24.88 h @@ -236,14 +256,12 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/24.88 r ....\glue 8.68394 plus 4.34196 minus 2.89464 ....\T1/cmr/bx/n/24.88 ] -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,8,12,Span,,,} -...\marks4{b+,8,12,Span,,,} -...\marks4{e-,8,12,} -...\marks4{e+,8,12,} +...\pdfliteral page{EMC} +...\marks4{e-,10,9,} +...\marks4{e+,10,9,} ...\marks1{\__mark_value:nn {3}{\MakeUppercase []{Chapter\ 1. \ Chapter ] }}} ...\marks2{\__mark_value:nn {4}{}} ...\write1{\@writefile{toc}{\protect \contentsline {chapter}{\protect \numberline {1} Chapter ] }{\thepage }{target*.2}\protected@file@percent }} @@ -255,7 +273,7 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\lineskip) 1.0 ...\hbox(6.8872+0.0)x345.0, glue set 324.17175fil -....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 S ....\T1/cmr/m/n/10 t @@ -265,18 +283,18 @@ Completed box being shipped out [3] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,9,14,text-block,,,} -...\marks4{b+,9,14,text-block,,,} -...\marks4{e-,9,14,} -...\marks4{e+,9,14,} +...\marks4{b-,11,12,text-block,,,} +...\marks4{b+,11,12,text-block,,,} +...\marks4{e-,11,12,} +...\marks4{e+,11,12,} ...\kern 0.0 ...\hbox(0.0+0.0)x0.0 ...\glue 0.0 plus 1.0fil ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,11,-1,} -..\marks4{b+,11,-1,} +..\marks4{b-,13,-1,} +..\marks4{b+,13,-1,} ..\glue(\baselineskip) 18.87984 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -284,8 +302,8 @@ Completed box being shipped out [3] ....\T1/cmr/m/n/10 3 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,11,9,} -..\marks4{e+,11,9,} +..\marks4{e-,13,8,} +..\marks4{e+,13,8,} ..\pdfrunninglinkon .\kern 0.0 .\kern -627.36243 @@ -293,8 +311,8 @@ Completed box being shipped out [3] .\kern 627.36243 <><> (test-gh725-opt-arg.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~14 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) Writing out ~12 structure objects +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh777-sec-end.luatex.tlg b/required/latex-lab/testfiles-sec/test-gh777-sec-end.luatex.tlg index dd57502ee..f917fa2a3 100644 --- a/required/latex-lab/testfiles-sec/test-gh777-sec-end.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-gh777-sec-end.luatex.tlg @@ -10,8 +10,8 @@ Don't change this file in any respect. ] [4 ] [5]<><> (test-gh777-sec-end.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~32 structure objects -(tagpdf) with ~30 'MC' leaf nodes. +(tagpdf) Writing out ~27 structure objects +(tagpdf) with ~32 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh777-sec-end.tlg b/required/latex-lab/testfiles-sec/test-gh777-sec-end.tlg index 6e632e677..094a624bd 100644 --- a/required/latex-lab/testfiles-sec/test-gh777-sec-end.tlg +++ b/required/latex-lab/testfiles-sec/test-gh777-sec-end.tlg @@ -10,8 +10,8 @@ Don't change this file in any respect. ] [4 ] [5]<><> (test-gh777-sec-end.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~31 structure objects -(tagpdf) with ~30 'MC' leaf nodes. +(tagpdf) Writing out ~26 structure objects +(tagpdf) with ~32 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh787.luatex.tlg b/required/latex-lab/testfiles-sec/test-gh787.luatex.tlg index c79213a5d..9290cac89 100644 --- a/required/latex-lab/testfiles-sec/test-gh787.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-gh787.luatex.tlg @@ -52,16 +52,20 @@ Completed box being shipped out [1] ......\penalty 10000 ......\hbox(0.0+0.0)x0.0, direction TLT .......\hbox(0.0+0.0)x0.0, shifted -18.0, direction TLT -........\pdfliteral page -........\pdfliteral page ........\pdfdest name{section.1} xyz ........\pdfdest name{section.1} xyz ........\penalty 10000 ......\kern0.0 ......\glue 0.0 +......\pdfliteral page +......\pdfliteral page ......\OT1/cmr/bx/n/14.4 1 +......\pdfliteral page +......\pdfliteral page ......\TU/lmr/m/n/10 ......\glue 12.86998 +......\TU/lmr/m/n/10 +......\glue -3.33 .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 A @@ -162,7 +166,7 @@ Completed box being shipped out [1] <><> (test-gh787.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~11 structure objects -(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) with ~8 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh787.tlg b/required/latex-lab/testfiles-sec/test-gh787.tlg index cb172dfa6..d66621a29 100644 --- a/required/latex-lab/testfiles-sec/test-gh787.tlg +++ b/required/latex-lab/testfiles-sec/test-gh787.tlg @@ -32,13 +32,13 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\pdfrunninglinkoff ....\pdfliteral page{/Artifact BMC} -....\marks4{b-,6,-1,} -....\marks4{b+,6,-1,} +....\marks4{b-,7,-1,} +....\marks4{b+,7,-1,} ....\hbox(0.0+0.0)x345.0 .....\hbox(0.0+0.0)x345.0 ....\pdfliteral page{EMC} -....\marks4{e-,6,5,} -....\marks4{e+,6,5,} +....\marks4{e-,7,5,} +....\marks4{e+,7,5,} ....\pdfrunninglinkon ...\glue 25.0 ...\glue(\lineskip) 0.0 @@ -49,21 +49,33 @@ Completed box being shipped out [1] ....\pdfdest struct22 name{Doc-Start} xyz ....\glue(\topskip) 0.06242 ....\hbox(9.93758+0.0)x345.0, glue set 172.46158fil -.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -.....\pdfliteral shipout page{/section-number <> BDC} .....\hbox(9.20918+0.0)x23.75433 ......\penalty 10000 ......\hbox(0.0+0.0)x0.0 .......\hbox(0.0+0.0)x0.0, shifted -18.0 ........\pdfdest name{section.1} xyz -........\pdfdest struct27 name{section.1} xyz +........\pdfdest struct26 name{section.1} xyz ........\penalty 10000 ......\kern 0.0 ......\glue 0.0 +......\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/heading-number <> BDC} +......\marks4{b-,1,7,heading-number,,,} +......\marks4{b+,1,7,heading-number,,,} ......\T1/cmr/bx/n/14.4 1 +......\pdfliteral page{EMC} +......\marks4{e-,1,7,} +......\marks4{e+,1,7,} +......\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +......\pdfliteral shipout page{/section <> BDC} +......\marks4{b-,2,6,section,,,} +......\marks4{b+,2,6,section,,,} ......\glue 15.83623 -.....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +......\pdffakespace +......\pdfliteral page{EMC} +......\marks4{e-,2,6,} +......\marks4{e+,2,6,} +.....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/section <> BDC} .....\T1/cmr/bx/n/14.4 A .....\glue 5.27875 plus 2.63672 minus 1.76134 @@ -81,18 +93,14 @@ Completed box being shipped out [1] .....\T1/cmr/bx/n/14.4 I .....\T1/cmr/bx/n/14.4 O .....\T1/cmr/bx/n/14.4 N -.....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{b-,1,7,section-number,,,} -....\marks4{b+,1,7,section-number,,,} -....\marks4{e-,1,7,} -....\marks4{e+,1,7,} -....\marks4{b-,2,6,section,,,} -....\marks4{b+,2,6,section,,,} -....\marks4{e-,2,6,} -....\marks4{e+,2,6,} +....\marks4{b-,3,6,section,,,} +....\marks4{b+,3,6,section,,,} +....\pdfliteral page{EMC} +....\marks4{e-,3,6,} +....\marks4{e+,3,6,} ....\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}A short section}{\thepage }{section.1}\protected@file@percent }} ....\penalty 10000 ....\glue 9.90036 plus 0.86089 @@ -103,7 +111,7 @@ Completed box being shipped out [1] ....\glue(\parskip) 0.0 ....\glue(\baselineskip) 5.1128 ....\hbox(6.8872+0.0)x345.0, glue set 277.79419fil -.....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\T1/cmr/m/n/10 T .....\kern-0.83313 @@ -122,32 +130,32 @@ Completed box being shipped out [1] .....\penalty 10000 .....\glue 3.33252 plus 1.66626 minus 1.11084 .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/Link <> BDC} .....\pdfstartlink(*+*)x* attr{/Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 1 } action goto name{section.1} .....\T1/cmr/m/n/10 1 .....\pdfendlink .....\write1{\new@label@record{@tag@objr@page@1}{{tagabspage}{\__property_code_tagabspage: }}} .....\pdfliteral page{EMC} -.....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +.....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-block <> BDC} .....\T1/cmr/m/n/10 . .....\pdfliteral page{EMC} .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 -....\marks4{b-,3,9,text-block,,,} -....\marks4{b+,3,9,text-block,,,} -....\marks4{e-,3,9,} -....\marks4{e+,3,9,} -....\marks4{b-,4,10,Link,,,} -....\marks4{b+,4,10,Link,,,} -....\marks4{e-,4,10,} -....\marks4{e+,4,10,} -....\marks4{b-,5,9,text-block,,,} -....\marks4{b+,5,9,text-block,,,} -....\marks4{e-,5,9,} -....\marks4{e+,5,9,} +....\marks4{b-,4,9,text-block,,,} +....\marks4{b+,4,9,text-block,,,} +....\marks4{e-,4,9,} +....\marks4{e+,4,9,} +....\marks4{b-,5,10,Link,,,} +....\marks4{b+,5,10,Link,,,} +....\marks4{e-,5,10,} +....\marks4{e+,5,10,} +....\marks4{b-,6,9,text-block,,,} +....\marks4{b+,6,9,text-block,,,} +....\marks4{e-,6,9,} +....\marks4{e+,6,9,} ....\kern 0.0 ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 plus 1.0fil @@ -155,8 +163,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 0.0001fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,7,-1,} -...\marks4{b+,7,-1,} +...\marks4{b-,8,-1,} +...\marks4{b+,8,-1,} ...\glue(\baselineskip) 23.5849 ...\hbox(6.4151+0.0)x345.0 ....\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -164,8 +172,8 @@ Completed box being shipped out [1] .....\T1/cmr/m/n/10 1 .....\glue 0.0 plus 1.0fil ...\pdfliteral page{EMC} -...\marks4{e-,7,5,} -...\marks4{e+,7,5,} +...\marks4{e-,8,5,} +...\marks4{e+,8,5,} ...\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -175,7 +183,7 @@ Completed box being shipped out [1] <><> (test-gh787.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~10 structure objects -(tagpdf) with ~7 'MC' leaf nodes. +(tagpdf) with ~8 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh830-comma.luatex.tlg b/required/latex-lab/testfiles-sec/test-gh830-comma.luatex.tlg index 5ece982f9..7a212460d 100644 --- a/required/latex-lab/testfiles-sec/test-gh830-comma.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-gh830-comma.luatex.tlg @@ -55,13 +55,18 @@ Completed box being shipped out [1] ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 ....\TU/lmr/m/n/10 -....\glue 4.4475 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\pdfliteral page +....\pdfliteral page ....\OT1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.68948 @@ -288,13 +293,18 @@ Completed box being shipped out [3] ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 ....\TU/lmr/m/n/10 -....\glue 4.4475 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 4.4475 plus 3.88875 minus 2.5925 +....\TU/lmr/m/n/10 +....\glue -3.33 +....\pdfliteral page +....\pdfliteral page ....\OT1/cmr/bx/n/20.74 2 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.68948 @@ -373,8 +383,8 @@ Completed box being shipped out [3] .\pdfliteral page <><> (test-gh830-comma.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~13 structure objects -(tagpdf) with ~10 'MC' leaf nodes. +(tagpdf) Writing out ~11 structure objects +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-gh830-comma.tlg b/required/latex-lab/testfiles-sec/test-gh830-comma.tlg index 414680793..35326a60a 100644 --- a/required/latex-lab/testfiles-sec/test-gh830-comma.tlg +++ b/required/latex-lab/testfiles-sec/test-gh830-comma.tlg @@ -17,13 +17,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,3,-1,} -...\marks4{b+,3,-1,} +...\marks4{b-,4,-1,} +...\marks4{b+,4,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,3,5,} -...\marks4{e+,3,5,} +...\marks4{e-,4,5,} +...\marks4{e+,4,5,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -42,10 +42,10 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 10.68713 ...\hbox(14.31287+4.03178)x345.0, glue set 123.96104fil -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 +....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\T1/cmr/bx/n/20.74 C ....\T1/cmr/bx/n/20.74 h ....\T1/cmr/bx/n/20.74 a @@ -55,23 +55,34 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/20.74 1 ....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,1,7,Span,,,} -...\marks4{b+,1,7,Span,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} +...\marks4{b-,1,6,chapter,,,} +...\marks4{b+,1,6,chapter,,,} +...\marks4{e-,1,6,} +...\marks4{e+,1,6,} +...\marks4{b-,2,7,heading-number,,,} +...\marks4{b+,2,7,heading-number,,,} +...\marks4{e-,2,7,} +...\marks4{e+,2,7,} +...\marks4{b-,3,6,chapter,,,} +...\marks4{b+,3,6,chapter,,,} ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79831 ...\hbox(17.1699+4.8366)x345.0, glue set 8.9956fil -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmr/bx/n/24.88 c ....\kern-0.72366 @@ -101,14 +112,12 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/24.88 m ....\T1/cmr/bx/n/24.88 m ....\T1/cmr/bx/n/24.88 a -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,2,8,Span,,,} -...\marks4{b+,2,8,Span,,,} -...\marks4{e-,2,8,} -...\marks4{e+,2,8,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\marks1{\__mark_value:nn {1}{\MakeUppercase []{Chapter\ 1. \ chapter title without comma}}} ...\marks2{\__mark_value:nn {2}{}} ...\write1{\@writefile{toc}{\protect \contentsline {chapter}{\protect \numberline {1}chapter title without comma}{\thepage }{target*.1}\protected@file@percent }} @@ -122,8 +131,8 @@ Completed box being shipped out [1] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,4,-1,} -..\marks4{b+,4,-1,} +..\marks4{b-,5,-1,} +..\marks4{b+,5,-1,} ..\glue(\baselineskip) 18.87984 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -131,8 +140,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,4,5,} -..\marks4{e+,4,5,} +..\marks4{e-,5,5,} +..\marks4{e+,5,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -151,8 +160,8 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,5,-1,} -...\marks4{b+,5,-1,} +...\marks4{b-,6,-1,} +...\marks4{b+,6,-1,} ...\hbox(6.8872+0.0)x345.0 ....\hbox(6.8872+0.0)x345.0, glue set 87.28516fil .....\T1/cmr/m/n/10 2 @@ -197,8 +206,8 @@ Completed box being shipped out [2] .....\T1/cmr/m/sl/10 M .....\T1/cmr/m/sl/10 A ...\pdfliteral page{EMC} -...\marks4{e-,5,5,} -...\marks4{e+,5,5,} +...\marks4{e-,6,5,} +...\marks4{e+,6,5,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -213,14 +222,14 @@ Completed box being shipped out [2] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,6,-1,} -..\marks4{b+,6,-1,} +..\marks4{b-,7,-1,} +..\marks4{b+,7,-1,} ..\glue(\baselineskip) 25.29494 ..\hbox(0.0+0.0)x345.0 ...\hbox(0.0+0.0)x345.0 ..\pdfliteral page{EMC} -..\marks4{e-,6,5,} -..\marks4{e+,6,5,} +..\marks4{e-,7,5,} +..\marks4{e+,7,5,} ..\pdfrunninglinkon .\kern 0.0 Completed box being shipped out [3] @@ -238,13 +247,13 @@ Completed box being shipped out [3] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,9,-1,} -...\marks4{b+,9,-1,} +...\marks4{b-,11,-1,} +...\marks4{b+,11,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,9,9,} -...\marks4{e+,9,9,} +...\marks4{e-,11,8,} +...\marks4{e+,11,8,} ...\pdfrunninglinkon ..\glue 18.06749 ..\glue(\lineskip) 0.0 @@ -261,10 +270,10 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 10.68713 ...\hbox(14.31287+4.03178)x345.0, glue set 123.96104fil -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\glue 0.0 +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\T1/cmr/bx/n/20.74 C ....\T1/cmr/bx/n/20.74 h ....\T1/cmr/bx/n/20.74 a @@ -274,23 +283,34 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace +....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/20.74 2 ....\pdfliteral page{EMC} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\pdfliteral shipout page{/chapter <> BDC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,7,11,Span,,,} -...\marks4{b+,7,11,Span,,,} -...\marks4{e-,7,11,} -...\marks4{e+,7,11,} +...\marks4{b-,8,9,chapter,,,} +...\marks4{b+,8,9,chapter,,,} +...\marks4{e-,8,9,} +...\marks4{e+,8,9,} +...\marks4{b-,9,10,heading-number,,,} +...\marks4{b+,9,10,heading-number,,,} +...\marks4{e-,9,10,} +...\marks4{e+,9,10,} +...\marks4{b-,10,9,chapter,,,} +...\marks4{b+,10,9,chapter,,,} ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79831 ...\hbox(17.1699+4.8366)x345.0, glue set 24.19254fil -....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/Span <> BDC} ....\hbox(0.0+0.0)x0.0 ....\T1/cmr/bx/n/24.88 c ....\kern-0.72366 @@ -318,14 +338,12 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/24.88 m ....\T1/cmr/bx/n/24.88 m ....\T1/cmr/bx/n/24.88 a -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil -...\marks4{b-,8,12,Span,,,} -...\marks4{b+,8,12,Span,,,} -...\marks4{e-,8,12,} -...\marks4{e+,8,12,} +...\pdfliteral page{EMC} +...\marks4{e-,10,9,} +...\marks4{e+,10,9,} ...\marks1{\__mark_value:nn {3}{\MakeUppercase []{Chapter\ 2. \ chapter title, with comma}}} ...\marks2{\__mark_value:nn {4}{}} ...\write1{\@writefile{toc}{\protect \contentsline {chapter}{\protect \numberline {2}chapter title, with comma}{\thepage }{target*.2}\protected@file@percent }} @@ -339,8 +357,8 @@ Completed box being shipped out [3] ...\glue 0.0 ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,10,-1,} -..\marks4{b+,10,-1,} +..\marks4{b-,12,-1,} +..\marks4{b+,12,-1,} ..\glue(\baselineskip) 18.87984 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -348,8 +366,8 @@ Completed box being shipped out [3] ....\T1/cmr/m/n/10 3 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,10,9,} -..\marks4{e+,10,9,} +..\marks4{e-,12,8,} +..\marks4{e+,12,8,} ..\pdfrunninglinkon .\kern 0.0 .\kern -627.36243 @@ -357,8 +375,8 @@ Completed box being shipped out [3] .\kern 627.36243 <><> (test-gh830-comma.aux) Package tagpdf Info: Finalizing the tagging structure: -(tagpdf) Writing out ~12 structure objects -(tagpdf) with ~10 'MC' leaf nodes. +(tagpdf) Writing out ~10 structure objects +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-prefix.luatex.tlg b/required/latex-lab/testfiles-sec/test-prefix.luatex.tlg index 572de7996..f8736b154 100644 --- a/required/latex-lab/testfiles-sec/test-prefix.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-prefix.luatex.tlg @@ -2,9 +2,11 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. The instance 'part' of type 'headformat' has values: > heading-indent => 0pt -> title-format => ##1 -> prefix-number-sep => \WordSpaceAmount {1} -> number-title-sep => 20pt +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \par \nobreak \vspace {20pt} +> separator-c => \ +> separator-d => > from template => display. } l. ...\ShowInstanceValues{headformat}{part} @@ -54,13 +56,15 @@ Completed box being shipped out [1] ....\OT1/cmr/bx/n/20.74 r ....\OT1/cmr/bx/n/20.74 t ....\penalty 10000 -....\glue 7.7775 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +....\glue 0.0 ....\OT1/cmr/bx/n/20.74 I ....\penalty 10000 ....\glue(\parfillskip) 0.0 ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 12.72224 @@ -166,7 +170,8 @@ Completed box being shipped out [2] ....\OT1/cmr/bx/n/20.74 t ....\OT1/cmr/bx/n/20.74 t ....\penalty 10000 -....\glue 7.7775 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +....\glue 0.0 ....\OT1/cmr/bx/n/20.74 I ....\kern0.64812 (font) ....\OT1/cmr/bx/n/20.74 I @@ -175,6 +180,7 @@ Completed box being shipped out [2] ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 12.72224 @@ -283,13 +289,15 @@ Completed box being shipped out [3] ....\OT1/cmr/bx/n/20.74 e ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 -....\glue 7.7775 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +....\glue 0.0 ....\OT1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.89679 @@ -328,11 +336,13 @@ Completed box being shipped out [3] .....\glue 0.0 .....\OT1/cmr/bx/n/14.4 ^^a7 .....\penalty 10000 -.....\glue 5.4 plus 2.7 minus 1.79999 +.....\glue(\spaceskip) 5.4 plus 2.7 minus 1.79999 +.....\glue 0.0 .....\OT1/cmr/bx/n/14.4 1 .....\OT1/cmr/bx/n/14.4 . .....\OT1/cmr/bx/n/14.4 1 .....\glue 16.19998 +.....\glue 0.0 ....\OT1/cmr/bx/n/14.4 F ....\kern-1.35 (font) ....\OT1/cmr/bx/n/14.4 o @@ -361,13 +371,15 @@ Completed box being shipped out [3] .....\OT1/cmr/bx/n/12 ^^a7 .....\OT1/cmr/bx/n/12 ^^a7 .....\penalty 10000 -.....\glue 4.5 plus 2.25 minus 1.5 +.....\glue(\spaceskip) 4.5 plus 2.25 minus 1.5 +.....\glue 0.0 .....\OT1/cmr/bx/n/12 1 .....\OT1/cmr/bx/n/12 . .....\OT1/cmr/bx/n/12 1 .....\OT1/cmr/bx/n/12 . .....\OT1/cmr/bx/n/12 1 .....\glue 13.5 +.....\glue 0.0 ....\OT1/cmr/bx/n/12 B ....\OT1/cmr/bx/n/12 a ....\OT1/cmr/bx/n/12 r diff --git a/required/latex-lab/testfiles-sec/test-prefix.tlg b/required/latex-lab/testfiles-sec/test-prefix.tlg index 6c1483a2a..8d688381e 100644 --- a/required/latex-lab/testfiles-sec/test-prefix.tlg +++ b/required/latex-lab/testfiles-sec/test-prefix.tlg @@ -2,9 +2,11 @@ This is a generated file for the l3build validation system. Don't change this file in any respect. The instance 'part' of type 'headformat' has values: > heading-indent => 0pt -> title-format => ##1 -> prefix-number-sep => \WordSpaceAmount {1} -> number-title-sep => 20pt +> order => prefix,separator-a,?,number,punct,separator-b,?,title,separator-c,subtitle +> separator-a => \nobreakspace +> separator-b => \par \nobreak \vspace {20pt} +> separator-c => \ +> separator-d => > from template => display. } l. ...\ShowInstanceValues{headformat}{part} @@ -49,12 +51,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/20.74 t ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace ....\T1/cmr/bx/n/20.74 I ....\penalty 10000 ....\glue(\parfillskip) 0.0 ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 12.8301 @@ -144,6 +148,7 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/20.74 t ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace ....\T1/cmr/bx/n/20.74 I ....\kern0.61157 ....\T1/cmr/bx/n/20.74 I @@ -152,6 +157,7 @@ Completed box being shipped out [2] ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 12.8301 @@ -241,12 +247,14 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace ....\T1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79831 @@ -276,10 +284,12 @@ Completed box being shipped out [3] .....\T1/cmr/bx/n/14.4 ^^9f .....\penalty 10000 .....\glue 5.27875 plus 2.63936 minus 1.75958 +.....\pdffakespace .....\T1/cmr/bx/n/14.4 1 .....\T1/cmr/bx/n/14.4 . .....\T1/cmr/bx/n/14.4 1 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 F ....\kern-1.3197 ....\T1/cmr/bx/n/14.4 o @@ -304,12 +314,14 @@ Completed box being shipped out [3] .....\T1/cmr/bx/n/12 ^^9f .....\penalty 10000 .....\glue 4.4989 plus 2.24945 minus 1.49963 +.....\pdffakespace .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 .....\T1/cmr/bx/n/12 . .....\T1/cmr/bx/n/12 1 .....\glue 13.4967 +.....\pdffakespace ....\T1/cmr/bx/n/12 B ....\T1/cmr/bx/n/12 a ....\T1/cmr/bx/n/12 r diff --git a/required/latex-lab/testfiles-sec/test-report-gh1984.luatex.tlg b/required/latex-lab/testfiles-sec/test-report-gh1984.luatex.tlg index 00bb125eb..ef87190b6 100644 --- a/required/latex-lab/testfiles-sec/test-report-gh1984.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-report-gh1984.luatex.tlg @@ -183,13 +183,15 @@ Completed box being shipped out [2] ....\OT1/cmr/bx/n/20.74 e ....\OT1/cmr/bx/n/20.74 r ....\penalty 10000 -....\glue 7.7775 plus 3.88875 minus 2.5925 +....\glue(\spaceskip) 7.7775 plus 3.88875 minus 2.5925 +....\glue 0.0 ....\OT1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.68948 diff --git a/required/latex-lab/testfiles-sec/test-report-gh1984.tlg b/required/latex-lab/testfiles-sec/test-report-gh1984.tlg index 179205b1b..df6d1fea4 100644 --- a/required/latex-lab/testfiles-sec/test-report-gh1984.tlg +++ b/required/latex-lab/testfiles-sec/test-report-gh1984.tlg @@ -160,12 +160,14 @@ Completed box being shipped out [2] ....\T1/cmr/bx/n/20.74 r ....\penalty 10000 ....\glue 7.33878 plus 3.66937 minus 2.44624 +....\pdffakespace ....\T1/cmr/bx/n/20.74 1 ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 plus 1.0fil ...\penalty 10000 ...\glue 20.0 +...\glue 0.0 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79831 diff --git a/required/latex-lab/testfiles-sec/test-runin.luatex.tlg b/required/latex-lab/testfiles-sec/test-runin.luatex.tlg index a4a40813f..bccb5be99 100644 --- a/required/latex-lab/testfiles-sec/test-runin.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-runin.luatex.tlg @@ -46,6 +46,8 @@ Completed box being shipped out [1] ....\pdfliteral page ....\TU/lmr/m/n/10 ....\glue 8.16994 +....\TU/lmr/m/n/10 +....\glue -3.33 ....\OT1/cmr/bx/n/10 T ....\kern-0.95833 (font) ....\OT1/cmr/bx/n/10 e @@ -105,6 +107,8 @@ Completed box being shipped out [1] ....\pdfliteral page ....\TU/lmr/m/n/10 ....\glue 8.16994 +....\TU/lmr/m/n/10 +....\glue -3.33 ....\OT1/cmr/bx/n/10 T ....\kern-0.95833 (font) ....\OT1/cmr/bx/n/10 e @@ -194,6 +198,8 @@ Completed box being shipped out [1] ....\pdfliteral page ....\TU/lmr/m/n/10 ....\glue 8.16994 +....\TU/lmr/m/n/10 +....\glue -3.33 ....\OT1/cmr/bx/n/10 T ....\kern-0.95833 (font) ....\OT1/cmr/bx/n/10 e @@ -285,6 +291,8 @@ Completed box being shipped out [1] ....\pdfliteral page ....\TU/lmr/m/n/10 ....\glue 8.16994 +....\TU/lmr/m/n/10 +....\glue -3.33 ....\OT1/cmr/bx/n/10 T ....\kern-0.95833 (font) ....\OT1/cmr/bx/n/10 e diff --git a/required/latex-lab/testfiles-sec/test-runin.tlg b/required/latex-lab/testfiles-sec/test-runin.tlg index ae45e5f1c..713a34707 100644 --- a/required/latex-lab/testfiles-sec/test-runin.tlg +++ b/required/latex-lab/testfiles-sec/test-runin.tlg @@ -39,7 +39,7 @@ Completed box being shipped out [1] ....\glue 0.0 ....\pdfliteral page{EMC} ....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/10 0 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 0 @@ -51,6 +51,7 @@ Completed box being shipped out [1] ....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 T ....\kern-0.9581 ....\T1/cmr/bx/n/10 e @@ -85,8 +86,8 @@ Completed box being shipped out [1] ...\marks4{b+,1,6,paragraph,,,} ...\marks4{e-,1,6,} ...\marks4{e+,1,6,} -...\marks4{b-,2,7,section-number,,,} -...\marks4{b+,2,7,section-number,,,} +...\marks4{b-,2,7,heading-number,,,} +...\marks4{b+,2,7,heading-number,,,} ...\marks4{e-,2,7,} ...\marks4{e+,2,7,} ...\marks4{b-,3,6,paragraph,,,} @@ -110,7 +111,7 @@ Completed box being shipped out [1] ....\glue 0.0 ....\pdfliteral page{EMC} ....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/10 0 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 0 @@ -122,6 +123,7 @@ Completed box being shipped out [1] ....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 T ....\kern-0.9581 ....\T1/cmr/bx/n/10 e @@ -142,8 +144,8 @@ Completed box being shipped out [1] ...\marks4{b+,5,12,paragraph,,,} ...\marks4{e-,5,12,} ...\marks4{e+,5,12,} -...\marks4{b-,6,13,section-number,,,} -...\marks4{b+,6,13,section-number,,,} +...\marks4{b-,6,13,heading-number,,,} +...\marks4{b+,6,13,heading-number,,,} ...\marks4{e-,6,13,} ...\marks4{e+,6,13,} ...\marks4{b-,7,12,paragraph,,,} @@ -219,7 +221,7 @@ Completed box being shipped out [1] ....\glue 0.0 ....\pdfliteral page{EMC} ....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/10 0 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 0 @@ -231,6 +233,7 @@ Completed box being shipped out [1] ....\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 T ....\kern-0.9581 ....\T1/cmr/bx/n/10 e @@ -251,8 +254,8 @@ Completed box being shipped out [1] ...\marks4{b+,11,24,paragraph,,,} ...\marks4{e-,11,24,} ...\marks4{e+,11,24,} -...\marks4{b-,12,25,section-number,,,} -...\marks4{b+,12,25,section-number,,,} +...\marks4{b-,12,25,heading-number,,,} +...\marks4{b+,12,25,heading-number,,,} ...\marks4{e-,12,25,} ...\marks4{e+,12,25,} ...\marks4{b-,13,24,paragraph,,,} @@ -330,7 +333,7 @@ Completed box being shipped out [1] ....\glue 0.0 ....\pdfliteral page{EMC} ....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} +....\pdfliteral shipout page{/heading-number <> BDC} ....\T1/cmr/bx/n/10 0 ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 0 @@ -342,6 +345,7 @@ Completed box being shipped out [1] ....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/paragraph <> BDC} ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 T ....\kern-0.9581 ....\T1/cmr/bx/n/10 e @@ -362,8 +366,8 @@ Completed box being shipped out [1] ...\marks4{b+,17,36,paragraph,,,} ...\marks4{e-,17,36,} ...\marks4{e+,17,36,} -...\marks4{b-,18,37,section-number,,,} -...\marks4{b+,18,37,section-number,,,} +...\marks4{b-,18,37,heading-number,,,} +...\marks4{b+,18,37,heading-number,,,} ...\marks4{e-,18,37,} ...\marks4{e+,18,37,} ...\marks4{b-,19,36,paragraph,,,} diff --git a/required/latex-lab/testfiles-sec/test-sec-keys.tpf b/required/latex-lab/testfiles-sec/test-sec-keys.tpf index 6607eb302..152a68566 100644 --- a/required/latex-lab/testfiles-sec/test-sec-keys.tpf +++ b/required/latex-lab/testfiles-sec/test-sec-keys.tpf @@ -245,12 +245,18 @@ endstream endobj 33 0 obj << -/Length 1270 +/Length 1560 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(Con)31(ten)30(ts)]TJ/F48 9.9626 Tf 0 -21.915 Td [(1)-925(n)32(um)32(b)-32(ered-1,)-383(to)-32(c,)-383(b)-32(o)-32(ok,)-383(text)-18299(1)]TJ 0 -21.915 Td [(2)-925(to)-32(c-2)-29902(1)]TJ 0 -21.916 Td [(to)-32(c-2*)-30827(1)]TJ 0 -21.915 Td [(4)-925(to)-32(c-4)-29902(1)]TJ 0 -21.915 Td [(to)-32(c-4*)-30827(1)]TJ 0 -21.916 Td [(5)-925(Hello)-29785(1)]TJ 0 -21.915 Td [(to)-32(c,text)-30013(1)]TJ 0 -21.916 Td [(6)-925(nameref)-28391(1)]TJ/F47 14.3462 Tf 0 -32.942 Td [(1)-1100(n)31(um)30(b)-30(ered-1,)-367(to)-30(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(starred-1,)-367(text)]TJ 0 -27.796 Td [(2)-1100(n)31(um)30(b)-30(ered-2,)-367(to)-30(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(starred-2,)-367(to)-30(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(3)-1100(n)31(um)30(b)-30(ered-3,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(starred-3,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.797 Td [(4)-1100(n)31(um)30(b)-30(ered-4,)-367(to)-30(c,)-367(text)]TJ 0 -27.796 Td [(starred-4,)-367(to)-30(c,)-367(text)]TJ 0 -27.796 Td [(5)-1100(Hello)]TJ 0 -27.796 Td [(to)-31(c)1(,tex)-1(t)]TJ 0 -27.796 Td [(6)-1100(nameref)]TJ/F45 9.9626 Tf 0 -21.819 Td [(bla)]TJ 169.366 -59.825 Td [(1)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(Con)31(ten)30(ts)]TJ/F48 9.9626 Tf 0 -21.915 Td [(1)-925(n)32(um)32(b)-32(ered-1,)-383(to)-32(c,)-383(b)-32(o)-32(ok,)-383(text)-18299(1)]TJ 0 -21.915 Td [(2)-925(to)-32(c-2)-29902(1)]TJ 0 -21.916 Td [(to)-32(c-2*)-30827(1)]TJ 0 -21.915 Td [(4)-925(to)-32(c-4)-29902(1)]TJ 0 -21.915 Td [(to)-32(c-4*)-30827(1)]TJ 0 -21.916 Td [(5)-925(Hello)-29785(1)]TJ 0 -21.915 Td [(to)-32(c,text)-30013(1)]TJ 0 -21.916 Td [(6)-925(nameref)-28391(1)]TJ/F47 14.3462 Tf 0 -32.942 Td [(1)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(n)30(um)31(b)-31(ered-1,)-366(to)-31(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(starred-1,)-367(text)]TJ 0 -27.796 Td [(2)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(n)30(um)31(b)-31(ered-2,)-366(to)-31(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(starred-2,)-367(to)-30(c,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.796 Td [(3)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(n)30(um)31(b)-31(ered-3,)-366(b)-31(o)-31(o)1(k,)-367(text)]TJ 0 -27.796 Td [(starred-3,)-367(b)-30(o)-31(ok,)-366(text)]TJ 0 -27.797 Td [(4)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(n)30(um)31(b)-31(ered-4,)-366(to)-31(c,)-367(t)1(e)-1(xt)]TJ 0 -27.796 Td [(starred-4,)-367(to)-30(c,)-367(text)]TJ 0 -27.796 Td [(5)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Hello)]TJ 0 -27.796 Td [(to)-31(c)1(,tex)-1(t)]TJ 0 -27.796 Td [(6)]TJ/F49 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(name)-1(ref)]TJ/F45 9.9626 Tf 0 -21.819 Td [(bla)]TJ 169.366 -59.825 Td [(1)]TJ ET endstream endobj @@ -261,7 +267,7 @@ endobj /Resources 32 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 51 0 R +/Parent 52 0 R /Annots [ 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R ] >> endobj @@ -366,52 +372,52 @@ endobj /D [21 0 R /XYZ 133.768 466.903 null] >> endobj -40 0 obj +41 0 obj << /D [21 0 R /XYZ 133.768 439.107 null] >> endobj -41 0 obj +42 0 obj << /D [21 0 R /XYZ 133.768 411.311 null] >> endobj -42 0 obj +43 0 obj << /D [21 0 R /XYZ 133.768 383.515 null] >> endobj -43 0 obj +44 0 obj << /D [21 0 R /XYZ 133.768 355.718 null] >> endobj -44 0 obj +45 0 obj << /D [21 0 R /XYZ 133.768 327.922 null] >> endobj -45 0 obj +46 0 obj << /D [21 0 R /XYZ 133.768 300.126 null] >> endobj -46 0 obj +47 0 obj << /D [21 0 R /XYZ 133.768 272.33 null] >> endobj -47 0 obj +48 0 obj << /D [21 0 R /XYZ 133.768 244.534 null] >> endobj -48 0 obj +49 0 obj << /D [21 0 R /XYZ 133.768 216.738 null] >> endobj -49 0 obj +50 0 obj << /D [21 0 R /XYZ 133.768 188.942 null] >> @@ -419,7 +425,7 @@ endobj 32 0 obj << /ExtGState 1 0 R -/Font << /F47 37 0 R /F48 38 0 R /F45 50 0 R >> +/Font << /F47 37 0 R /F48 38 0 R /F49 40 0 R /F45 51 0 R >> >> endobj 1 0 obj @@ -434,64 +440,92 @@ endobj 4 0 obj << >> endobj -52 0 obj +53 0 obj << /S /GoTo /D (section.1) >> endobj -54 0 obj +55 0 obj (\376\377\0001\000\040\000n\000u\000m\000b\000e\000r\000e\000d\000-\0001\000,\000\040\000t\000o\000c\000,\000\040\000b\000o\000o\000k\000,\000\040\000t\000e\000x\000t) endobj -55 0 obj +56 0 obj << /S /GoTo /D (section.2) >> endobj -57 0 obj +58 0 obj (\376\377\0002\000\040\000b\000o\000o\000k\000-\0002) endobj -58 0 obj +59 0 obj << /S /GoTo /D (section*.3) >> endobj -60 0 obj +61 0 obj (\376\377\000b\000o\000o\000k\000-\0002\000*) endobj -61 0 obj +62 0 obj << /S /GoTo /D (section.3) >> endobj -63 0 obj +64 0 obj (\376\377\0003\000\040\000b\000o\000o\000k\000-\0003) endobj -64 0 obj +65 0 obj << /S /GoTo /D (section*.4) >> endobj -66 0 obj +67 0 obj (\376\377\000b\000o\000o\000k\000-\0003\000*) endobj -67 0 obj +68 0 obj << /S /GoTo /D (section.5) >> endobj -69 0 obj +70 0 obj (\376\377\000t\000e\000x\000t) endobj -70 0 obj +71 0 obj << /S /GoTo /D (section*.6) >> endobj -72 0 obj +73 0 obj (\376\377\000t\000o\000c\000,\000t\000e\000x\000t) endobj -73 0 obj +74 0 obj << /S /GoTo /D (section.6) >> endobj -75 0 obj +76 0 obj (\376\377\000n\000a\000m\000e\000r\000e\000f) endobj -77 0 obj +78 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7] endobj -78 0 obj +79 0 obj +[333] +endobj +80 0 obj [574.9 894.2 319.4 383.2 319.4 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4 606.8] endobj -79 0 obj +81 0 obj [305.5 366.6 305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4 794.3 580.4] endobj -80 0 obj +82 0 obj +<< +/Length1 1144 +/Length2 1422 +/Length3 0 +/Length 2566 +>> +[BINARY STREAM] +endobj +83 0 obj +<< +/Type /FontDescriptor +/FontName /MUQHVU+PdfTeX-Space +/Flags 4 +/FontBBox [0 -290 333 1127] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 0 +/XHeight 500 +/CharSet (/space) +/FontFile 82 0 R +>> +endobj +84 0 obj << /Length1 727 /Length2 14821 @@ -500,7 +534,7 @@ endobj >> [BINARY STREAM] endobj -81 0 obj +85 0 obj << /Type /FontDescriptor /FontName /GBFUTW+SFBX1000 @@ -513,10 +547,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/a/asterisk/b/c/comma/d/e/f/five/four/hyphen/k/l/m/n/o/one/r/six/t/two/u/x) -/FontFile 80 0 R +/FontFile 84 0 R >> endobj -82 0 obj +86 0 obj << /Length1 727 /Length2 13048 @@ -525,7 +559,7 @@ endobj >> [BINARY STREAM] endobj -83 0 obj +87 0 obj << /Type /FontDescriptor /FontName /FYUGWA+SFBX1440 @@ -538,10 +572,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/H/a/b/c/comma/d/e/f/five/four/hyphen/k/l/m/n/o/one/r/s/six/t/three/two/u/x) -/FontFile 82 0 R +/FontFile 86 0 R >> endobj -84 0 obj +88 0 obj << /Length1 721 /Length2 2995 @@ -550,7 +584,7 @@ endobj >> [BINARY STREAM] endobj -85 0 obj +89 0 obj << /Type /FontDescriptor /FontName /XQSCAO+SFRM1000 @@ -563,16 +597,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/a/b/l/one) -/FontFile 84 0 R +/FontFile 88 0 R >> endobj -76 0 obj +77 0 obj << /Type /Encoding /Differences [42/asterisk 44/comma/hyphen 49/one/two/three/four/five/six 67/C 72/H 97/a/b/c/d/e/f 107/k/l/m/n/o 114/r/s/t/u 120/x] >> endobj -86 0 obj +90 0 obj << /Length 2030 >> @@ -721,15 +755,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /GBFUTW+SFBX1000 -/FontDescriptor 81 0 R +/FontDescriptor 85 0 R /FirstChar 42 /LastChar 120 -/Widths 78 0 R -/Encoding 76 0 R -/ToUnicode 86 0 R +/Widths 80 0 R +/Encoding 77 0 R +/ToUnicode 90 0 R >> endobj -87 0 obj +91 0 obj << /Length 2030 >> @@ -878,15 +912,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /FYUGWA+SFBX1440 -/FontDescriptor 83 0 R +/FontDescriptor 87 0 R /FirstChar 44 /LastChar 120 -/Widths 79 0 R -/Encoding 76 0 R -/ToUnicode 87 0 R +/Widths 81 0 R +/Encoding 77 0 R +/ToUnicode 91 0 R >> endobj -88 0 obj +92 0 obj << /Length 2030 >> @@ -1030,155 +1064,205 @@ end %%EOF endstream endobj -50 0 obj +51 0 obj << /Type /Font /Subtype /Type1 /BaseFont /XQSCAO+SFRM1000 -/FontDescriptor 85 0 R +/FontDescriptor 89 0 R /FirstChar 49 /LastChar 108 -/Widths 77 0 R -/Encoding 76 0 R -/ToUnicode 88 0 R +/Widths 78 0 R +/Encoding 77 0 R +/ToUnicode 92 0 R >> endobj -51 0 obj +93 0 obj +<< +/Length 654 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: ProcSet (CIDInit) +%%IncludeResource: ProcSet (CIDInit) +%%BeginResource: CMap (TeX-pdftexspace-builtin-0) +%%Title: (TeX-pdftexspace-builtin-0 TeX pdftexspace-builtin 0) +%%Version: 1.000 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo +<< /Registry (TeX) +/Ordering (pdftexspace-builtin) +/Supplement 0 +>> def +/CMapName /TeX-pdftexspace-builtin-0 def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +0 beginbfrange +endbfrange +1 beginbfchar +<20> <0020> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj +40 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /MUQHVU+PdfTeX-Space +/FontDescriptor 83 0 R +/FirstChar 32 +/LastChar 32 +/Widths 79 0 R +/ToUnicode 93 0 R +>> +endobj +52 0 obj << /Type /Pages /Count 1 /Kids [21 0 R] >> endobj -89 0 obj +94 0 obj << /Type /Outlines -/First 53 0 R -/Last 74 0 R +/First 54 0 R +/Last 75 0 R /Count 8 >> endobj -74 0 obj +75 0 obj << -/Title 75 0 R -/A 73 0 R -/Parent 89 0 R -/Prev 71 0 R +/Title 76 0 R +/A 74 0 R +/Parent 94 0 R +/Prev 72 0 R >> endobj -71 0 obj +72 0 obj << -/Title 72 0 R -/A 70 0 R -/Parent 89 0 R -/Prev 68 0 R -/Next 74 0 R +/Title 73 0 R +/A 71 0 R +/Parent 94 0 R +/Prev 69 0 R +/Next 75 0 R >> endobj -68 0 obj +69 0 obj << -/Title 69 0 R -/A 67 0 R -/Parent 89 0 R -/Prev 65 0 R -/Next 71 0 R +/Title 70 0 R +/A 68 0 R +/Parent 94 0 R +/Prev 66 0 R +/Next 72 0 R >> endobj -65 0 obj +66 0 obj << -/Title 66 0 R -/A 64 0 R -/Parent 89 0 R -/Prev 62 0 R -/Next 68 0 R +/Title 67 0 R +/A 65 0 R +/Parent 94 0 R +/Prev 63 0 R +/Next 69 0 R >> endobj -62 0 obj +63 0 obj << -/Title 63 0 R -/A 61 0 R -/Parent 89 0 R -/Prev 59 0 R -/Next 65 0 R +/Title 64 0 R +/A 62 0 R +/Parent 94 0 R +/Prev 60 0 R +/Next 66 0 R >> endobj -59 0 obj +60 0 obj << -/Title 60 0 R -/A 58 0 R -/Parent 89 0 R -/Prev 56 0 R -/Next 62 0 R +/Title 61 0 R +/A 59 0 R +/Parent 94 0 R +/Prev 57 0 R +/Next 63 0 R >> endobj -56 0 obj +57 0 obj << -/Title 57 0 R -/A 55 0 R -/Parent 89 0 R -/Prev 53 0 R -/Next 59 0 R +/Title 58 0 R +/A 56 0 R +/Parent 94 0 R +/Prev 54 0 R +/Next 60 0 R >> endobj -53 0 obj +54 0 obj << -/Title 54 0 R -/A 52 0 R -/Parent 89 0 R -/Next 56 0 R +/Title 55 0 R +/A 53 0 R +/Parent 94 0 R +/Next 57 0 R >> endobj -90 0 obj +95 0 obj << -/Names [(Doc-Start) 35 0 R (page.1) 34 0 R (section*.1) 36 0 R (section*.2) 40 0 R (section*.3) 42 0 R (section*.4) 44 0 R] +/Names [(Doc-Start) 35 0 R (page.1) 34 0 R (section*.1) 36 0 R (section*.2) 41 0 R (section*.3) 43 0 R (section*.4) 45 0 R] /Limits [(Doc-Start) (section*.4)] >> endobj -91 0 obj +96 0 obj << -/Names [(section*.5) 46 0 R (section*.6) 48 0 R (section.1) 39 0 R (section.2) 41 0 R (section.3) 43 0 R (section.4) 45 0 R] +/Names [(section*.5) 47 0 R (section*.6) 49 0 R (section.1) 39 0 R (section.2) 42 0 R (section.3) 44 0 R (section.4) 46 0 R] /Limits [(section*.5) (section.4)] >> endobj -92 0 obj +97 0 obj << -/Names [(section.5) 47 0 R (section.6) 49 0 R] +/Names [(section.5) 48 0 R (section.6) 50 0 R] /Limits [(section.5) (section.6)] >> endobj -93 0 obj +98 0 obj << -/Kids [90 0 R 91 0 R 92 0 R] +/Kids [95 0 R 96 0 R 97 0 R] /Limits [(Doc-Start) (section.6)] >> endobj -94 0 obj +99 0 obj << -/Dests 93 0 R +/Dests 98 0 R >> endobj -95 0 obj +100 0 obj << /Type /Catalog -/Pages 51 0 R -/Outlines 89 0 R -/Names 94 0 R +/Pages 52 0 R +/Outlines 94 0 R +/Names 99 0 R /PageMode /UseOutlines/OpenAction [21 0 R /Fit]/Lang (en)/PageLabels <>]>>/Metadata 31 0 R >> endobj -96 0 obj +101 0 obj << /Producer (pdfTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 97 +0 102 0000000005 65535 f -0000016196 00000 n -0000016243 00000 n -0000016265 00000 n -0000016287 00000 n +0000016498 00000 n +0000016545 00000 n +0000016567 00000 n +0000016589 00000 n 0000000006 00000 f 0000000007 00000 f 0000000008 00000 f @@ -1195,87 +1279,92 @@ xref 0000000019 00000 f 0000000020 00000 f 0000000000 00000 f -0000013519 00000 n -0000013712 00000 n -0000013885 00000 n -0000014058 00000 n -0000014232 00000 n -0000014404 00000 n -0000014578 00000 n -0000014750 00000 n -0000014924 00000 n -0000015097 00000 n +0000013809 00000 n +0000014002 00000 n +0000014175 00000 n +0000014348 00000 n +0000014522 00000 n +0000014694 00000 n +0000014868 00000 n +0000015040 00000 n +0000015214 00000 n +0000015387 00000 n 0000000015 00000 n -0000016108 00000 n +0000016398 00000 n 0000012190 00000 n -0000015270 00000 n -0000015329 00000 n -0000015389 00000 n -0000057294 00000 n -0000055027 00000 n -0000015449 00000 n -0000015509 00000 n -0000015569 00000 n -0000015629 00000 n -0000015689 00000 n -0000015749 00000 n -0000015809 00000 n -0000015869 00000 n -0000015928 00000 n -0000015988 00000 n -0000016048 00000 n -0000059561 00000 n -0000059739 00000 n -0000016309 00000 n -0000060468 00000 n -0000016355 00000 n -0000016539 00000 n -0000060381 00000 n -0000016585 00000 n -0000016655 00000 n -0000060294 00000 n -0000016702 00000 n -0000016764 00000 n -0000060207 00000 n -0000016810 00000 n -0000016880 00000 n -0000060120 00000 n -0000016927 00000 n -0000016989 00000 n -0000060033 00000 n -0000017035 00000 n -0000017082 00000 n -0000059946 00000 n -0000017129 00000 n -0000017196 00000 n -0000059872 00000 n -0000017242 00000 n -0000052769 00000 n -0000017304 00000 n -0000017673 00000 n -0000018161 00000 n -0000018617 00000 n -0000034263 00000 n -0000034558 00000 n -0000048431 00000 n -0000048727 00000 n -0000052540 00000 n -0000052938 00000 n -0000055205 00000 n -0000057472 00000 n -0000059798 00000 n -0000060542 00000 n -0000060723 00000 n -0000060905 00000 n -0000061008 00000 n -0000061093 00000 n -0000061129 00000 n -0000061317 00000 n +0000015560 00000 n +0000015619 00000 n +0000015679 00000 n +0000060500 00000 n +0000058233 00000 n +0000015739 00000 n +0000063658 00000 n +0000015799 00000 n +0000015859 00000 n +0000015919 00000 n +0000015979 00000 n +0000016039 00000 n +0000016099 00000 n +0000016159 00000 n +0000016218 00000 n +0000016278 00000 n +0000016338 00000 n +0000062767 00000 n +0000063822 00000 n +0000016611 00000 n +0000064551 00000 n +0000016657 00000 n +0000016841 00000 n +0000064464 00000 n +0000016887 00000 n +0000016957 00000 n +0000064377 00000 n +0000017004 00000 n +0000017066 00000 n +0000064290 00000 n +0000017112 00000 n +0000017182 00000 n +0000064203 00000 n +0000017229 00000 n +0000017291 00000 n +0000064116 00000 n +0000017337 00000 n +0000017384 00000 n +0000064029 00000 n +0000017431 00000 n +0000017498 00000 n +0000063955 00000 n +0000017544 00000 n +0000055975 00000 n +0000017606 00000 n +0000017975 00000 n +0000017997 00000 n +0000018485 00000 n +0000018941 00000 n +0000021605 00000 n +0000021823 00000 n +0000037469 00000 n +0000037764 00000 n +0000051637 00000 n +0000051933 00000 n +0000055746 00000 n +0000056144 00000 n +0000058411 00000 n +0000060678 00000 n +0000062945 00000 n +0000063881 00000 n +0000064625 00000 n +0000064806 00000 n +0000064988 00000 n +0000065091 00000 n +0000065176 00000 n +0000065212 00000 n +0000065401 00000 n trailer -<< /Size 97 -/Root 95 0 R -/Info 96 0 R +<< /Size 102 +/Root 100 0 R +/Info 101 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -61526 +65611 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-sec-running.luatex.tlg b/required/latex-lab/testfiles-sec/test-sec-running.luatex.tlg index 05529080d..4a14492d8 100644 --- a/required/latex-lab/testfiles-sec/test-sec-running.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-sec-running.luatex.tlg @@ -48,6 +48,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\OT1/cmr/bx/n/14.4 1 .....\glue 16.19998 +.....\glue 0.0 ....\OT1/cmr/bx/n/14.4 s ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 c @@ -126,6 +127,7 @@ Completed box being shipped out [2] .....\glue 0.0 .....\OT1/cmr/bx/n/14.4 2 .....\glue 16.19998 +.....\glue 0.0 ....\OT1/cmr/bx/n/14.4 s ....\OT1/cmr/bx/n/14.4 e ....\OT1/cmr/bx/n/14.4 c @@ -204,6 +206,7 @@ Completed box being shipped out [3] .....\glue 0.0 .....\OT1/cmr/bx/n/14.4 3 .....\glue 16.19998 +.....\glue 0.0 ....\OT1/cmr/bx/n/14.4 u ....\OT1/cmr/bx/n/14.4 n ....\discretionary (penalty 50) @@ -612,6 +615,7 @@ Completed box being shipped out [8] ....\OT1/cmr/bx/n/10 . ....\OT1/cmr/bx/n/10 1 ....\glue 11.49994 +....\glue 0.0 ....\OT1/cmr/bx/n/10 s ....\OT1/cmr/bx/n/10 e ....\OT1/cmr/bx/n/10 c @@ -691,6 +695,7 @@ Completed box being shipped out [9] ....\OT1/cmr/bx/n/10 . ....\OT1/cmr/bx/n/10 2 ....\glue 11.49994 +....\glue 0.0 ....\OT1/cmr/bx/n/10 s ....\OT1/cmr/bx/n/10 e ....\OT1/cmr/bx/n/10 c diff --git a/required/latex-lab/testfiles-sec/test-sec-running.tlg b/required/latex-lab/testfiles-sec/test-sec-running.tlg index 4d716651d..2527ec0a1 100644 --- a/required/latex-lab/testfiles-sec/test-sec-running.tlg +++ b/required/latex-lab/testfiles-sec/test-sec-running.tlg @@ -40,6 +40,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\T1/cmr/bx/n/14.4 1 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 s ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 c @@ -108,6 +109,7 @@ Completed box being shipped out [2] .....\glue 0.0 .....\T1/cmr/bx/n/14.4 2 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 s ....\T1/cmr/bx/n/14.4 e ....\T1/cmr/bx/n/14.4 c @@ -174,6 +176,7 @@ Completed box being shipped out [3] .....\glue 0.0 .....\T1/cmr/bx/n/14.4 3 .....\glue 15.83623 +.....\pdffakespace ....\T1/cmr/bx/n/14.4 u ....\T1/cmr/bx/n/14.4 n ....\T1/cmr/bx/n/14.4 n @@ -523,6 +526,7 @@ Completed box being shipped out [8] ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 1 ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 s ....\T1/cmr/bx/n/10 e ....\T1/cmr/bx/n/10 c @@ -594,6 +598,7 @@ Completed box being shipped out [9] ....\T1/cmr/bx/n/10 . ....\T1/cmr/bx/n/10 2 ....\glue 11.4972 +....\pdffakespace ....\T1/cmr/bx/n/10 s ....\T1/cmr/bx/n/10 e ....\T1/cmr/bx/n/10 c diff --git a/required/latex-lab/testfiles-sec/test-startsection-def.luatex.tlg b/required/latex-lab/testfiles-sec/test-startsection-def.luatex.tlg index 4948fa33b..38997a5e0 100644 --- a/required/latex-lab/testfiles-sec/test-startsection-def.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-startsection-def.luatex.tlg @@ -55,6 +55,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\OT1/cmr/m/sc/10 1 .....\glue 11.05545 +.....\glue 0.0 ....\OT1/cmr/m/sc/10 b ....\OT1/cmr/m/sc/10 l ....\OT1/cmr/m/sc/10 u @@ -101,6 +102,7 @@ Completed box being shipped out [1] ....\OT1/cmr/m/sc/10 . ....\OT1/cmr/m/sc/10 1 ....\glue 11.05545 +....\glue 0.0 ....\OT1/cmr/m/sc/10 b ....\OT1/cmr/m/sc/10 l ....\OT1/cmr/m/sc/10 u diff --git a/required/latex-lab/testfiles-sec/test-startsection-def.tlg b/required/latex-lab/testfiles-sec/test-startsection-def.tlg index a2cb3e476..4540fafc0 100644 --- a/required/latex-lab/testfiles-sec/test-startsection-def.tlg +++ b/required/latex-lab/testfiles-sec/test-startsection-def.tlg @@ -44,6 +44,7 @@ Completed box being shipped out [1] .....\glue 0.0 .....\T1/cmr/m/sc/10 1 .....\glue 11.05286 +.....\pdffakespace ....\T1/cmr/m/sc/10 b ....\T1/cmr/m/sc/10 l ....\T1/cmr/m/sc/10 u @@ -80,6 +81,7 @@ Completed box being shipped out [1] ....\T1/cmr/m/sc/10 . ....\T1/cmr/m/sc/10 1 ....\glue 11.05286 +....\pdffakespace ....\T1/cmr/m/sc/10 b ....\T1/cmr/m/sc/10 l ....\T1/cmr/m/sc/10 u diff --git a/required/latex-lab/testfiles-sec/test-stop-sect-pdf.luatex.tpf b/required/latex-lab/testfiles-sec/test-stop-sect-pdf.luatex.tpf index 47959a3fd..c04e90479 100644 --- a/required/latex-lab/testfiles-sec/test-stop-sect-pdf.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-stop-sect-pdf.luatex.tpf @@ -1,28 +1,32 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ 27 0 obj -<< /Length 940 >> +<< /Length 1030 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Section)]TJ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(some)]TJ @@ -32,15 +36,19 @@ BT 1 0 0 1 158.73 635.414 Tm [(text)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 602.469 Tm [(2)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 141.838 602.469 Tm [<0067>]TJ +1 0 0 1 141.838 602.469 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F18 14.3462 Tf 1 0 0 1 157.978 602.469 Tm [(Section)]TJ @@ -48,7 +56,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 580.648 Tm [(text)]TJ @@ -88,7 +96,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 15 0 R 14 0 R 17 0 R 21 0 R 20 0 R 23 0 R] +<< /Nums [0 [ 15 0 R 14 0 R 14 0 R 17 0 R 21 0 R 20 0 R 20 0 R 23 0 R] ] >> endobj 33 0 obj @@ -98,7 +106,7 @@ endobj << /Kids [33 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 35 0 obj << /justify <> @@ -123,16 +131,16 @@ endobj << /Type /StructElem /S /Sect /P 9 0 R /K [14 0 R 16 0 R] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /T /S /section /P 13 0 R /K [15 0 R <> ] /ID (ID.007) >> +<< /Type /StructElem /T /S /section /P 13 0 R /K [15 0 R <> <> ] /ID (ID.007) >> endobj 15 0 obj -<< /Type /StructElem /S /section-number /P 14 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /S /heading-number /P 14 0 R /K <> /ID (ID.008) >> endobj 16 0 obj << /Type /StructElem /S /semantic-para /P 13 0 R /K 17 0 R /ID (ID.009) >> endobj 17 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.010) >> +<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.010) >> endobj 18 0 obj << /Type /StructElem /S /Div /P 9 0 R /K 19 0 R /ID (ID.011) >> @@ -141,16 +149,16 @@ endobj << /Type /StructElem /S /Sect /P 18 0 R /K [20 0 R 22 0 R] /ID (ID.012) >> endobj 20 0 obj -<< /Type /StructElem /T /S /section /P 19 0 R /K [21 0 R <> ] /ID (ID.013) >> +<< /Type /StructElem /T /S /section /P 19 0 R /K [21 0 R <> <> ] /ID (ID.013) >> endobj 21 0 obj -<< /Type /StructElem /S /section-number /P 20 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /S /heading-number /P 20 0 R /K <> /ID (ID.014) >> endobj 22 0 obj << /Type /StructElem /S /semantic-para /P 19 0 R /K 23 0 R /ID (ID.015) >> endobj 23 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 22 0 R /K <> /ID (ID.016) >> +<< /Type /StructElem /C /justify /S /text-block /P 22 0 R /K <> /ID (ID.016) >> endobj 5 0 obj << /Type /StructTreeRoot /IDTree 34 0 R /ClassMap 35 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> @@ -727,59 +735,59 @@ endobj xref 0 52 0000000008 65535 f -0000001266 00000 n -0000001313 00000 n -0000001335 00000 n -0000001357 00000 n -0000004261 00000 n -0000001415 00000 n -0000001828 00000 n +0000001356 00000 n +0000001403 00000 n +0000001425 00000 n +0000001447 00000 n +0000004542 00000 n +0000001505 00000 n +0000001932 00000 n 0000000000 00000 f -0000002669 00000 n -0000002763 00000 n -0000002839 00000 n -0000002915 00000 n -0000002991 00000 n -0000003082 00000 n -0000003243 00000 n -0000003364 00000 n -0000003456 00000 n -0000003585 00000 n -0000003666 00000 n -0000003758 00000 n -0000003919 00000 n -0000004040 00000 n -0000004132 00000 n -0000004379 00000 n -0000001155 00000 n -0000001020 00000 n +0000002880 00000 n +0000002974 00000 n +0000003050 00000 n +0000003126 00000 n +0000003202 00000 n +0000003293 00000 n +0000003489 00000 n +0000003610 00000 n +0000003702 00000 n +0000003831 00000 n +0000003912 00000 n +0000004004 00000 n +0000004200 00000 n +0000004321 00000 n +0000004413 00000 n +0000004660 00000 n +0000001245 00000 n +0000001110 00000 n 0000000020 00000 n -0000040810 00000 n -0000018392 00000 n -0000042753 00000 n -0000042911 00000 n -0000001379 00000 n -0000001493 00000 n -0000001791 00000 n -0000002507 00000 n -0000016548 00000 n -0000016735 00000 n -0000017430 00000 n -0000016767 00000 n -0000016840 00000 n -0000017666 00000 n -0000018546 00000 n -0000018746 00000 n -0000027671 00000 n -0000018931 00000 n -0000038782 00000 n -0000027920 00000 n -0000039021 00000 n -0000040969 00000 n -0000042973 00000 n -0000043088 00000 n +0000041091 00000 n +0000018673 00000 n +0000043034 00000 n +0000043192 00000 n +0000001469 00000 n +0000001597 00000 n +0000001895 00000 n +0000002718 00000 n +0000016829 00000 n +0000017016 00000 n +0000017711 00000 n +0000017048 00000 n +0000017121 00000 n +0000017947 00000 n +0000018827 00000 n +0000019027 00000 n +0000027952 00000 n +0000019212 00000 n +0000039063 00000 n +0000028201 00000 n +0000039302 00000 n +0000041250 00000 n +0000043254 00000 n +0000043369 00000 n trailer << /Size 52 /Root 50 0 R /Info 51 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -43220 +43501 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-stop-sect-pdf.tpf b/required/latex-lab/testfiles-sec/test-stop-sect-pdf.tpf index f3c8c6ddc..b08cee7d0 100644 --- a/required/latex-lab/testfiles-sec/test-stop-sect-pdf.tpf +++ b/required/latex-lab/testfiles-sec/test-stop-sect-pdf.tpf @@ -245,38 +245,48 @@ endstream endobj 26 0 obj << -/Length 662 +/Length 818 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F48 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Section)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(some)]TJ/F48 9.9626 Tf( )Tj/F45 9.9626 Tf 24.956 0 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 602.475 Td [(2)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F48 9.9626 Tf 157.434 602.475 Td [( )]TJ +ET +EMC +/section <> BDC BT /F47 14.3462 Tf 157.434 602.475 Td [(Section)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 580.656 Td [(text)]TJ ET @@ -301,7 +311,7 @@ endobj 25 0 obj << /ExtGState 1 0 R -/Font << /F47 27 0 R /F45 28 0 R /F48 29 0 R >> +/Font << /F47 27 0 R /F48 28 0 R /F45 29 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -321,7 +331,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 13 0 R 17 0 R 21 0 R 20 0 R 23 0 R ] +<< /Nums [0 [ 14 0 R 13 0 R 13 0 R 17 0 R 21 0 R 20 0 R 20 0 R 23 0 R ] ] >> endobj 32 0 obj @@ -331,7 +341,7 @@ endobj << /Kids [32 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 34 0 obj << /justify <> @@ -353,16 +363,16 @@ endobj << /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 16 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /section /P 12 0 R /K [14 0 R <>] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /P 12 0 R /K [14 0 R <> <>] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /S /section-number /P 13 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /P 13 0 R /K <> /ID (ID.007) >> endobj 16 0 obj << /Type /StructElem /S /semantic-para /P 12 0 R /K 17 0 R /ID (ID.008) >> endobj 17 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.009) >> +<< /Type /StructElem /C /justify /S /text-block /P 16 0 R /K <> /ID (ID.009) >> endobj 18 0 obj << /Type /StructElem /S /Div /P 9 0 R /K 19 0 R /ID (ID.010) >> @@ -371,25 +381,25 @@ endobj << /Type /StructElem /S /Sect /P 18 0 R /K [20 0 R 22 0 R] /ID (ID.011) >> endobj 20 0 obj -<< /Type /StructElem /T /S /section /P 19 0 R /K [21 0 R <>] /ID (ID.012) >> +<< /Type /StructElem /T /S /section /P 19 0 R /K [21 0 R <> <>] /ID (ID.012) >> endobj 21 0 obj -<< /Type /StructElem /S /section-number /P 20 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /S /heading-number /P 20 0 R /K <> /ID (ID.013) >> endobj 22 0 obj << /Type /StructElem /S /semantic-para /P 19 0 R /K 23 0 R /ID (ID.014) >> endobj 23 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 22 0 R /K <> /ID (ID.015) >> +<< /Type /StructElem /C /justify /S /text-block /P 22 0 R /K <> /ID (ID.015) >> endobj 5 0 obj << /Type /StructTreeRoot /IDTree 33 0 R /ClassMap 34 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -35 0 obj -[333] +36 0 obj +[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] endobj 37 0 obj -[499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7] +[333] endobj 38 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7] @@ -469,7 +479,7 @@ endobj /FontFile 43 0 R >> endobj -36 0 obj +35 0 obj << /Type /Encoding /Differences [49/one/two 83/S 99/c 101/e 105/i 109/m/n/o 115/s/t 120/x] @@ -628,7 +638,7 @@ endobj /FirstChar 49 /LastChar 116 /Widths 38 0 R -/Encoding 36 0 R +/Encoding 35 0 R /ToUnicode 45 0 R >> endobj @@ -776,7 +786,7 @@ end %%EOF endstream endobj -28 0 obj +29 0 obj << /Type /Font /Subtype /Type1 @@ -784,8 +794,8 @@ endobj /FontDescriptor 44 0 R /FirstChar 49 /LastChar 120 -/Widths 37 0 R -/Encoding 36 0 R +/Widths 36 0 R +/Encoding 35 0 R /ToUnicode 46 0 R >> endobj @@ -827,7 +837,7 @@ end %%EOF endstream endobj -29 0 obj +28 0 obj << /Type /Font /Subtype /Type1 @@ -835,7 +845,7 @@ endobj /FontDescriptor 40 0 R /FirstChar 32 /LastChar 32 -/Widths 35 0 R +/Widths 37 0 R /ToUnicode 47 0 R >> endobj @@ -862,60 +872,60 @@ endobj xref 0 50 0000000008 65535 f -0000013149 00000 n -0000013196 00000 n -0000013218 00000 n -0000013240 00000 n -0000016040 00000 n -0000013298 00000 n -0000013695 00000 n +0000013305 00000 n +0000013352 00000 n +0000013374 00000 n +0000013396 00000 n +0000016383 00000 n +0000013454 00000 n +0000013865 00000 n 0000000000 00000 f -0000014536 00000 n -0000014630 00000 n -0000014706 00000 n -0000014782 00000 n -0000014873 00000 n -0000015032 00000 n -0000012902 00000 n -0000015151 00000 n -0000015243 00000 n -0000015370 00000 n -0000015451 00000 n -0000015543 00000 n -0000015702 00000 n -0000015821 00000 n -0000015913 00000 n +0000014813 00000 n +0000014907 00000 n +0000014983 00000 n +0000015059 00000 n +0000015150 00000 n +0000015342 00000 n +0000013058 00000 n +0000015461 00000 n +0000015553 00000 n +0000015680 00000 n +0000015761 00000 n +0000015853 00000 n +0000016045 00000 n +0000016164 00000 n +0000016256 00000 n 0000000015 00000 n -0000013037 00000 n +0000013193 00000 n 0000012181 00000 n -0000043597 00000 n -0000045864 00000 n -0000046755 00000 n -0000046919 00000 n -0000013262 00000 n -0000013376 00000 n -0000013658 00000 n -0000014374 00000 n -0000016158 00000 n -0000041398 00000 n -0000016180 00000 n -0000016619 00000 n -0000017023 00000 n -0000019687 00000 n -0000019905 00000 n -0000030538 00000 n -0000030779 00000 n -0000041163 00000 n -0000041508 00000 n -0000043775 00000 n -0000046042 00000 n -0000046978 00000 n -0000047093 00000 n +0000043940 00000 n +0000047098 00000 n +0000046207 00000 n +0000047262 00000 n +0000013418 00000 n +0000013546 00000 n +0000013828 00000 n +0000014651 00000 n +0000041741 00000 n +0000016501 00000 n +0000016940 00000 n +0000016962 00000 n +0000017366 00000 n +0000020030 00000 n +0000020248 00000 n +0000030881 00000 n +0000031122 00000 n +0000041506 00000 n +0000041851 00000 n +0000044118 00000 n +0000046385 00000 n +0000047321 00000 n +0000047436 00000 n trailer << /Size 50 /Root 48 0 R /Info 49 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -47225 +47568 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-stop-sect.luatex.tlg b/required/latex-lab/testfiles-sec/test-stop-sect.luatex.tlg index 50ce138ef..41c075f67 100644 --- a/required/latex-lab/testfiles-sec/test-stop-sect.luatex.tlg +++ b/required/latex-lab/testfiles-sec/test-stop-sect.luatex.tlg @@ -4,7 +4,7 @@ Don't change this file in any respect. ]<><> (test-stop-sect.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~19 structure objects -(tagpdf) with ~10 'MC' leaf nodes. +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-stop-sect.tlg b/required/latex-lab/testfiles-sec/test-stop-sect.tlg index fff90118b..34979c9e5 100644 --- a/required/latex-lab/testfiles-sec/test-stop-sect.tlg +++ b/required/latex-lab/testfiles-sec/test-stop-sect.tlg @@ -4,7 +4,7 @@ Don't change this file in any respect. ]<><> (test-stop-sect.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~18 structure objects -(tagpdf) with ~10 'MC' leaf nodes. +(tagpdf) with ~13 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-sec/test-suppress-sect.luatex.tpf b/required/latex-lab/testfiles-sec/test-suppress-sect.luatex.tpf index 7ca9c19a3..1c64e9808 100644 --- a/required/latex-lab/testfiles-sec/test-suppress-sect.luatex.tpf +++ b/required/latex-lab/testfiles-sec/test-suppress-sect.luatex.tpf @@ -1,21 +1,25 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ 25 0 obj -<< /Length 1368 >> +<< /Length 1458 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Section)]TJ /F15 9.96264 Tf @@ -34,21 +38,25 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(text)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 602.469 Tm [(2)]TJ +ET +EMC +/section<> BDC +BT /F15 9.96264 Tf -1 0 0 1 141.838 602.469 Tm [<0067>]TJ +1 0 0 1 141.838 602.469 Tm [<0067>-1287<0067>]TJ ET EMC -/section<> BDC +/section<> BDC BT /F18 14.3462 Tf 1 0 0 1 157.978 602.469 Tm [(section)]TJ @@ -64,7 +72,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 580.648 Tm [(text)]TJ @@ -104,7 +112,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 13 0 R 16 0 R 19 0 R 18 0 R 21 0 R] +<< /Nums [0 [ 14 0 R 13 0 R 13 0 R 16 0 R 19 0 R 18 0 R 18 0 R 21 0 R] ] >> endobj 31 0 obj @@ -114,7 +122,7 @@ endobj << /Kids [31 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 33 0 obj << /justify <> @@ -136,31 +144,31 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /section /P 9 0 R /K [14 0 R <> ] /ID (ID.006) >> +<< /Type /StructElem /T /S /section /P 9 0 R /K [14 0 R <> <> ] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /S /section-number /P 13 0 R /K <> /ID (ID.007) >> +<< /Type /StructElem /S /heading-number /P 13 0 R /K <> /ID (ID.007) >> endobj 15 0 obj << /Type /StructElem /S /semantic-para /P 9 0 R /K 16 0 R /ID (ID.008) >> endobj 16 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.009) >> +<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.009) >> endobj 17 0 obj << /Type /StructElem /S /Sect /P 9 0 R /K [18 0 R 20 0 R] /ID (ID.010) >> endobj 18 0 obj -<< /Type /StructElem /T /S /section /P 17 0 R /K [19 0 R <> ] /ID (ID.011) >> +<< /Type /StructElem /T /S /section /P 17 0 R /K [19 0 R <> <> ] /ID (ID.011) >> endobj 19 0 obj -<< /Type /StructElem /S /section-number /P 18 0 R /K <> /ID (ID.012) >> +<< /Type /StructElem /S /heading-number /P 18 0 R /K <> /ID (ID.012) >> endobj 20 0 obj << /Type /StructElem /S /semantic-para /P 17 0 R /K 21 0 R /ID (ID.013) >> endobj 21 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.014) >> +<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.014) >> endobj 5 0 obj << /Type /StructTreeRoot /IDTree 32 0 R /ClassMap 33 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> @@ -737,57 +745,57 @@ endobj xref 0 50 0000000008 65535 f -0000001694 00000 n -0000001741 00000 n -0000001763 00000 n -0000001785 00000 n -0000004569 00000 n -0000001843 00000 n -0000002224 00000 n +0000001784 00000 n +0000001831 00000 n +0000001853 00000 n +0000001875 00000 n +0000004850 00000 n +0000001933 00000 n +0000002328 00000 n 0000000000 00000 f -0000003065 00000 n -0000003166 00000 n -0000003242 00000 n -0000003318 00000 n -0000003394 00000 n -0000003602 00000 n -0000003723 00000 n -0000003814 00000 n -0000003943 00000 n -0000004034 00000 n -0000004227 00000 n -0000004348 00000 n -0000004440 00000 n -0000004687 00000 n -0000001583 00000 n -0000001448 00000 n +0000003276 00000 n +0000003377 00000 n +0000003453 00000 n +0000003529 00000 n +0000003605 00000 n +0000003848 00000 n +0000003969 00000 n +0000004060 00000 n +0000004189 00000 n +0000004280 00000 n +0000004508 00000 n +0000004629 00000 n +0000004721 00000 n +0000004968 00000 n +0000001673 00000 n +0000001538 00000 n 0000000020 00000 n -0000039903 00000 n -0000018690 00000 n -0000041846 00000 n -0000042004 00000 n -0000001807 00000 n -0000001921 00000 n -0000002187 00000 n -0000002903 00000 n -0000016856 00000 n -0000017033 00000 n -0000017728 00000 n -0000017065 00000 n -0000017138 00000 n -0000017964 00000 n -0000018844 00000 n -0000019044 00000 n -0000028188 00000 n -0000019233 00000 n -0000037884 00000 n -0000028440 00000 n -0000038114 00000 n -0000040062 00000 n -0000042066 00000 n -0000042181 00000 n +0000040184 00000 n +0000018971 00000 n +0000042127 00000 n +0000042285 00000 n +0000001897 00000 n +0000002025 00000 n +0000002291 00000 n +0000003114 00000 n +0000017137 00000 n +0000017314 00000 n +0000018009 00000 n +0000017346 00000 n +0000017419 00000 n +0000018245 00000 n +0000019125 00000 n +0000019325 00000 n +0000028469 00000 n +0000019514 00000 n +0000038165 00000 n +0000028721 00000 n +0000038395 00000 n +0000040343 00000 n +0000042347 00000 n +0000042462 00000 n trailer << /Size 50 /Root 48 0 R /Info 49 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -42313 +42594 %%EOF diff --git a/required/latex-lab/testfiles-sec/test-suppress-sect.tpf b/required/latex-lab/testfiles-sec/test-suppress-sect.tpf index 86157edad..8adfcebb0 100644 --- a/required/latex-lab/testfiles-sec/test-suppress-sect.tpf +++ b/required/latex-lab/testfiles-sec/test-suppress-sect.tpf @@ -245,38 +245,48 @@ endstream endobj 24 0 obj << -/Length 886 +/Length 1042 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F48 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Section)]TJ/F48 9.9626 Tf( )Tj/F47 14.3462 Tf 55.381 0 Td [(not)]TJ/F48 9.9626 Tf( )Tj/F47 14.3462 Tf 28.048 0 Td [(in)]TJ/F48 9.9626 Tf( )Tj/F47 14.3462 Tf 18.407 0 Td [(Sect)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(text)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 602.475 Td [(2)]TJ ET EMC -/section <> BDC +/section <> BDC +BT +/F48 9.9626 Tf 157.434 602.475 Td [( )]TJ +ET +EMC +/section <> BDC BT /F47 14.3462 Tf 157.434 602.475 Td [(section)]TJ/F48 9.9626 Tf( )Tj/F47 14.3462 Tf 52.839 0 Td [(in)]TJ/F48 9.9626 Tf( )Tj/F47 14.3462 Tf 18.407 0 Td [(Sect)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 580.656 Td [(text)]TJ ET @@ -321,7 +331,7 @@ endobj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 13 0 R 12 0 R 16 0 R 19 0 R 18 0 R 21 0 R ] +<< /Nums [0 [ 13 0 R 12 0 R 12 0 R 16 0 R 19 0 R 18 0 R 18 0 R 21 0 R ] ] >> endobj 30 0 obj @@ -331,7 +341,7 @@ endobj << /Kids [30 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 32 0 obj << /justify <> @@ -350,31 +360,31 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.004) >> endobj 12 0 obj -<< /Type /StructElem /T /S /section /P 9 0 R /K [13 0 R <>] /ID (ID.005) >> +<< /Type /StructElem /T /S /section /P 9 0 R /K [13 0 R <> <>] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /S /section-number /P 12 0 R /K <> /ID (ID.006) >> +<< /Type /StructElem /S /heading-number /P 12 0 R /K <> /ID (ID.006) >> endobj 15 0 obj << /Type /StructElem /S /semantic-para /P 9 0 R /K 16 0 R /ID (ID.007) >> endobj 16 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /C /justify /S /text-block /P 15 0 R /K <> /ID (ID.008) >> endobj 17 0 obj << /Type /StructElem /S /Sect /P 9 0 R /K [18 0 R 20 0 R] /ID (ID.009) >> endobj 18 0 obj -<< /Type /StructElem /T /S /section /P 17 0 R /K [19 0 R <>] /ID (ID.010) >> +<< /Type /StructElem /T /S /section /P 17 0 R /K [19 0 R <> <>] /ID (ID.010) >> endobj 19 0 obj -<< /Type /StructElem /S /section-number /P 18 0 R /K <> /ID (ID.011) >> +<< /Type /StructElem /S /heading-number /P 18 0 R /K <> /ID (ID.011) >> endobj 20 0 obj << /Type /StructElem /S /semantic-para /P 17 0 R /K 21 0 R /ID (ID.012) >> endobj 21 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.013) >> +<< /Type /StructElem /C /justify /S /text-block /P 20 0 R /K <> /ID (ID.013) >> endobj 5 0 obj << /Type /StructTreeRoot /IDTree 31 0 R /ClassMap 32 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> @@ -856,58 +866,58 @@ endobj xref 0 48 0000000008 65535 f -0000013373 00000 n -0000013420 00000 n -0000013442 00000 n -0000013464 00000 n -0000016144 00000 n -0000013522 00000 n -0000013887 00000 n +0000013529 00000 n +0000013576 00000 n +0000013598 00000 n +0000013620 00000 n +0000016487 00000 n +0000013678 00000 n +0000014057 00000 n 0000000000 00000 f -0000014728 00000 n -0000014829 00000 n -0000014905 00000 n -0000014981 00000 n -0000015187 00000 n -0000013126 00000 n -0000015306 00000 n -0000015397 00000 n -0000015524 00000 n -0000015615 00000 n -0000015806 00000 n +0000015005 00000 n +0000015106 00000 n +0000015182 00000 n +0000015258 00000 n +0000015497 00000 n +0000013282 00000 n +0000015616 00000 n +0000015707 00000 n +0000015834 00000 n 0000015925 00000 n -0000016017 00000 n +0000016149 00000 n +0000016268 00000 n +0000016360 00000 n 0000000015 00000 n -0000013261 00000 n +0000013417 00000 n 0000012181 00000 n -0000043210 00000 n -0000046368 00000 n -0000045477 00000 n -0000046532 00000 n -0000013486 00000 n -0000013600 00000 n -0000013850 00000 n -0000014566 00000 n -0000041013 00000 n -0000016262 00000 n -0000016701 00000 n -0000016723 00000 n -0000017127 00000 n -0000019791 00000 n -0000020009 00000 n -0000030871 00000 n -0000031114 00000 n -0000040784 00000 n -0000041121 00000 n -0000043388 00000 n -0000045655 00000 n -0000046591 00000 n -0000046706 00000 n +0000043553 00000 n +0000046711 00000 n +0000045820 00000 n +0000046875 00000 n +0000013642 00000 n +0000013770 00000 n +0000014020 00000 n +0000014843 00000 n +0000041356 00000 n +0000016605 00000 n +0000017044 00000 n +0000017066 00000 n +0000017470 00000 n +0000020134 00000 n +0000020352 00000 n +0000031214 00000 n +0000031457 00000 n +0000041127 00000 n +0000041464 00000 n +0000043731 00000 n +0000045998 00000 n +0000046934 00000 n +0000047049 00000 n trailer << /Size 48 /Root 46 0 R /Info 47 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -46838 +47181 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-000.tlg b/required/latex-lab/testfiles-table-luatex/table-000.tlg index 909db5e3d..41a854038 100644 --- a/required/latex-lab/testfiles-table-luatex/table-000.tlg +++ b/required/latex-lab/testfiles-table-luatex/table-000.tlg @@ -131,6 +131,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles-table-luatex/table-001-pdf.tpf b/required/latex-lab/testfiles-table-luatex/table-001-pdf.tpf index 129b4b383..f41b62c65 100644 --- a/required/latex-lab/testfiles-table-luatex/table-001-pdf.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-001-pdf.tpf @@ -130,7 +130,7 @@ endobj << /Kids [45 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 47 0 obj << /justify <> @@ -669,63 +669,63 @@ xref 0000001700 00000 n 0000001722 00000 n 0000001744 00000 n -0000005970 00000 n +0000006077 00000 n 0000001802 00000 n 0000002437 00000 n 0000000000 00000 f -0000003278 00000 n -0000003386 00000 n -0000003462 00000 n -0000003538 00000 n -0000003614 00000 n +0000003385 00000 n +0000003493 00000 n +0000003569 00000 n +0000003645 00000 n 0000003721 00000 n -0000003850 00000 n -0000003934 00000 n -0000004015 00000 n -0000004124 00000 n -0000004241 00000 n +0000003828 00000 n +0000003957 00000 n +0000004041 00000 n +0000004122 00000 n +0000004231 00000 n 0000004348 00000 n -0000004439 00000 n -0000004523 00000 n -0000004604 00000 n -0000004713 00000 n -0000004792 00000 n +0000004455 00000 n +0000004546 00000 n +0000004630 00000 n +0000004711 00000 n +0000004820 00000 n 0000004899 00000 n -0000005028 00000 n -0000005112 00000 n -0000005193 00000 n -0000005302 00000 n -0000005381 00000 n +0000005006 00000 n +0000005135 00000 n +0000005219 00000 n +0000005300 00000 n +0000005409 00000 n 0000005488 00000 n -0000005579 00000 n -0000005663 00000 n -0000005744 00000 n -0000005853 00000 n -0000006088 00000 n +0000005595 00000 n +0000005686 00000 n +0000005770 00000 n +0000005851 00000 n +0000005960 00000 n +0000006195 00000 n 0000001554 00000 n 0000001419 00000 n 0000000020 00000 n -0000031922 00000 n -0000019909 00000 n -0000032080 00000 n +0000032029 00000 n +0000020016 00000 n +0000032187 00000 n 0000001766 00000 n 0000001894 00000 n 0000002400 00000 n -0000003116 00000 n -0000018252 00000 n -0000018947 00000 n -0000018284 00000 n -0000018357 00000 n -0000019183 00000 n -0000020063 00000 n -0000020263 00000 n -0000029908 00000 n -0000020438 00000 n -0000030138 00000 n -0000032142 00000 n -0000032257 00000 n +0000003223 00000 n +0000018359 00000 n +0000019054 00000 n +0000018391 00000 n +0000018464 00000 n +0000019290 00000 n +0000020170 00000 n +0000020370 00000 n +0000030015 00000 n +0000020545 00000 n +0000030245 00000 n +0000032249 00000 n +0000032364 00000 n trailer << /Size 60 /Root 58 0 R /Info 59 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -32389 +32496 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-009-pdf.tpf b/required/latex-lab/testfiles-table-luatex/table-009-pdf.tpf index 823c703a5..e7e5b4a54 100644 --- a/required/latex-lab/testfiles-table-luatex/table-009-pdf.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-009-pdf.tpf @@ -156,7 +156,7 @@ endobj << /Kids [55 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 57 0 obj << /justify <> @@ -176,7 +176,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -713,72 +713,72 @@ xref 0000001899 00000 n 0000001921 00000 n 0000001943 00000 n -0000007854 00000 n +0000008113 00000 n 0000002001 00000 n 0000002612 00000 n -0000004949 00000 n -0000003467 00000 n +0000005208 00000 n +0000003574 00000 n 0000000012 00000 f -0000003535 00000 n +0000003642 00000 n 0000000014 00000 f -0000003605 00000 n +0000003712 00000 n 0000000020 00000 f -0000004485 00000 n -0000003686 00000 n -0000004758 00000 n -0000004587 00000 n -0000004860 00000 n +0000004744 00000 n +0000003793 00000 n +0000005017 00000 n +0000004846 00000 n +0000005119 00000 n 0000000000 00000 f -0000005010 00000 n -0000005108 00000 n -0000005197 00000 n -0000005286 00000 n -0000005375 00000 n -0000005495 00000 n -0000005598 00000 n -0000005724 00000 n -0000005833 00000 n -0000005965 00000 n -0000006097 00000 n -0000006229 00000 n -0000006322 00000 n -0000006466 00000 n -0000006575 00000 n -0000006696 00000 n -0000006779 00000 n -0000006862 00000 n -0000006971 00000 n -0000007092 00000 n -0000007175 00000 n -0000007258 00000 n -0000007367 00000 n -0000007499 00000 n -0000007631 00000 n -0000007763 00000 n -0000007991 00000 n +0000005269 00000 n +0000005367 00000 n +0000005456 00000 n +0000005545 00000 n +0000005634 00000 n +0000005754 00000 n +0000005857 00000 n +0000005983 00000 n +0000006092 00000 n +0000006224 00000 n +0000006356 00000 n +0000006488 00000 n +0000006581 00000 n +0000006725 00000 n +0000006834 00000 n +0000006955 00000 n +0000007038 00000 n +0000007121 00000 n +0000007230 00000 n +0000007351 00000 n +0000007434 00000 n +0000007517 00000 n +0000007626 00000 n +0000007758 00000 n +0000007890 00000 n +0000008022 00000 n +0000008250 00000 n 0000001777 00000 n 0000001642 00000 n 0000000020 00000 n -0000021877 00000 n -0000034414 00000 n -0000034572 00000 n +0000022136 00000 n +0000034673 00000 n +0000034831 00000 n 0000001965 00000 n 0000002100 00000 n 0000002575 00000 n -0000003271 00000 n -0000020155 00000 n -0000020308 00000 n -0000020930 00000 n -0000020340 00000 n -0000021151 00000 n -0000022031 00000 n -0000032425 00000 n -0000022231 00000 n -0000032630 00000 n -0000034634 00000 n -0000034749 00000 n +0000003378 00000 n +0000020414 00000 n +0000020567 00000 n +0000021189 00000 n +0000020599 00000 n +0000021410 00000 n +0000022290 00000 n +0000032684 00000 n +0000022490 00000 n +0000032889 00000 n +0000034893 00000 n +0000035008 00000 n trailer << /Size 69 /Root 67 0 R /Info 68 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -34881 +35140 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf.tpf b/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf.tpf index 80ea9f354..8bf1024a1 100644 --- a/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf.tpf @@ -305,7 +305,7 @@ endobj << /Kids [69 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 71 0 obj << /colspan-2 <> @@ -907,87 +907,87 @@ xref 0000004805 00000 n 0000004827 00000 n 0000004849 00000 n -0000011207 00000 n +0000011314 00000 n 0000004907 00000 n 0000005926 00000 n 0000000000 00000 f -0000006760 00000 n -0000006845 00000 n -0000006921 00000 n -0000006997 00000 n -0000007073 00000 n -0000007239 00000 n -0000007329 00000 n -0000007400 00000 n -0000007471 00000 n -0000007561 00000 n -0000007632 00000 n -0000007703 00000 n -0000007793 00000 n -0000007913 00000 n -0000007995 00000 n -0000008085 00000 n -0000008194 00000 n -0000008303 00000 n -0000008384 00000 n -0000008507 00000 n -0000008597 00000 n -0000008706 00000 n -0000008777 00000 n -0000008867 00000 n -0000008976 00000 n -0000009047 00000 n -0000009137 00000 n -0000009246 00000 n -0000009317 00000 n -0000009407 00000 n -0000009516 00000 n -0000009587 00000 n -0000009677 00000 n -0000009786 00000 n -0000009857 00000 n -0000009947 00000 n -0000010056 00000 n -0000010127 00000 n -0000010217 00000 n -0000010326 00000 n -0000010397 00000 n -0000010487 00000 n -0000010596 00000 n -0000010667 00000 n -0000010757 00000 n -0000010866 00000 n -0000010937 00000 n -0000011027 00000 n -0000011136 00000 n +0000006867 00000 n +0000006952 00000 n +0000007028 00000 n +0000007104 00000 n +0000007180 00000 n +0000007346 00000 n +0000007436 00000 n +0000007507 00000 n +0000007578 00000 n +0000007668 00000 n +0000007739 00000 n +0000007810 00000 n +0000007900 00000 n +0000008020 00000 n +0000008102 00000 n +0000008192 00000 n +0000008301 00000 n +0000008410 00000 n +0000008491 00000 n +0000008614 00000 n +0000008704 00000 n +0000008813 00000 n +0000008884 00000 n +0000008974 00000 n +0000009083 00000 n +0000009154 00000 n +0000009244 00000 n +0000009353 00000 n +0000009424 00000 n +0000009514 00000 n +0000009623 00000 n +0000009694 00000 n +0000009784 00000 n +0000009893 00000 n +0000009964 00000 n +0000010054 00000 n +0000010163 00000 n +0000010234 00000 n +0000010324 00000 n +0000010433 00000 n +0000010504 00000 n +0000010594 00000 n +0000010703 00000 n +0000010774 00000 n +0000010864 00000 n +0000010973 00000 n +0000011044 00000 n +0000011134 00000 n +0000011243 00000 n 0000002903 00000 n 0000002768 00000 n 0000000020 00000 n -0000025453 00000 n -0000041887 00000 n -0000042045 00000 n -0000011325 00000 n +0000025560 00000 n +0000041994 00000 n +0000042152 00000 n +0000011432 00000 n 0000004659 00000 n 0000004524 00000 n 0000003002 00000 n 0000004871 00000 n 0000005047 00000 n 0000005889 00000 n -0000006605 00000 n -0000023499 00000 n -0000023796 00000 n -0000024491 00000 n -0000023828 00000 n -0000023901 00000 n -0000024727 00000 n -0000025607 00000 n -0000039787 00000 n -0000025807 00000 n -0000040103 00000 n -0000042114 00000 n -0000042229 00000 n +0000006712 00000 n +0000023606 00000 n +0000023903 00000 n +0000024598 00000 n +0000023935 00000 n +0000024008 00000 n +0000024834 00000 n +0000025714 00000 n +0000039894 00000 n +0000025914 00000 n +0000040210 00000 n +0000042221 00000 n +0000042336 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -42361 +42468 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf2.tpf b/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf2.tpf index 0130edd68..c93a3b390 100644 --- a/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf2.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-010-longtable-pdf2.tpf @@ -326,7 +326,7 @@ endobj << /Kids [85 0 R ] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 87 0 obj << /colspan-2 <> @@ -346,7 +346,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1075,106 +1075,106 @@ xref 0000005355 00000 n 0000005377 00000 n 0000005399 00000 n -0000014158 00000 n +0000014417 00000 n 0000005457 00000 n 0000006501 00000 n -0000008834 00000 n -0000007354 00000 n +0000009093 00000 n +0000007461 00000 n 0000000012 00000 f -0000007422 00000 n +0000007529 00000 n 0000000014 00000 f -0000007492 00000 n +0000007599 00000 n 0000000020 00000 f -0000008372 00000 n -0000007573 00000 n -0000008645 00000 n -0000008474 00000 n -0000008747 00000 n +0000008631 00000 n +0000007680 00000 n +0000008904 00000 n +0000008733 00000 n +0000009006 00000 n 0000000000 00000 f -0000008895 00000 n -0000008993 00000 n -0000009082 00000 n -0000009171 00000 n -0000009260 00000 n -0000009457 00000 n -0000009565 00000 n -0000009648 00000 n -0000009731 00000 n -0000009839 00000 n -0000009922 00000 n -0000010005 00000 n -0000010107 00000 n -0000010239 00000 n -0000010333 00000 n -0000010441 00000 n -0000010562 00000 n -0000010684 00000 n -0000010777 00000 n -0000010912 00000 n -0000011014 00000 n -0000011145 00000 n +0000009154 00000 n +0000009252 00000 n +0000009341 00000 n +0000009430 00000 n +0000009519 00000 n +0000009716 00000 n +0000009824 00000 n +0000009907 00000 n +0000009990 00000 n +0000010098 00000 n +0000010181 00000 n +0000010264 00000 n +0000010366 00000 n +0000010498 00000 n +0000010592 00000 n +0000010700 00000 n +0000010821 00000 n +0000010943 00000 n +0000011036 00000 n +0000011171 00000 n +0000011273 00000 n +0000011404 00000 n 0000000020 00000 n 0000000168 00000 n -0000011321 00000 n -0000011404 00000 n -0000011506 00000 n -0000011627 00000 n -0000011710 00000 n -0000011812 00000 n -0000011933 00000 n -0000012016 00000 n -0000012118 00000 n -0000012239 00000 n -0000012322 00000 n -0000012424 00000 n -0000012545 00000 n -0000012628 00000 n -0000012730 00000 n -0000012851 00000 n -0000012934 00000 n -0000013036 00000 n -0000013157 00000 n -0000013240 00000 n -0000013342 00000 n -0000013463 00000 n -0000013546 00000 n -0000013648 00000 n -0000013769 00000 n -0000013852 00000 n -0000013954 00000 n -0000014075 00000 n +0000011580 00000 n +0000011663 00000 n +0000011765 00000 n +0000011886 00000 n +0000011969 00000 n +0000012071 00000 n +0000012192 00000 n +0000012275 00000 n +0000012377 00000 n +0000012498 00000 n +0000012581 00000 n +0000012683 00000 n +0000012804 00000 n +0000012887 00000 n +0000012989 00000 n +0000013110 00000 n +0000013193 00000 n +0000013295 00000 n +0000013416 00000 n +0000013499 00000 n +0000013601 00000 n +0000013722 00000 n +0000013805 00000 n +0000013907 00000 n +0000014028 00000 n +0000014111 00000 n +0000014213 00000 n +0000014334 00000 n 0000003489 00000 n 0000003354 00000 n 0000000368 00000 n -0000028371 00000 n -0000054610 00000 n -0000052667 00000 n -0000054769 00000 n -0000014295 00000 n +0000028630 00000 n +0000054869 00000 n +0000052926 00000 n +0000055028 00000 n +0000014554 00000 n 0000005233 00000 n 0000005098 00000 n 0000003576 00000 n 0000005421 00000 n 0000005604 00000 n 0000006463 00000 n -0000007160 00000 n -0000026470 00000 n -0000026501 00000 n -0000026802 00000 n -0000027424 00000 n -0000026834 00000 n -0000027645 00000 n -0000028525 00000 n -0000036517 00000 n -0000028725 00000 n -0000050819 00000 n -0000036725 00000 n -0000051024 00000 n -0000052825 00000 n -0000054838 00000 n -0000054954 00000 n +0000007267 00000 n +0000026729 00000 n +0000026760 00000 n +0000027061 00000 n +0000027683 00000 n +0000027093 00000 n +0000027904 00000 n +0000028784 00000 n +0000036776 00000 n +0000028984 00000 n +0000051078 00000 n +0000036984 00000 n +0000051283 00000 n +0000053084 00000 n +0000055097 00000 n +0000055213 00000 n trailer << /Size 103 /Root 101 0 R /Info 102 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -55087 +55346 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-011-endheadbox.tpf b/required/latex-lab/testfiles-table-luatex/table-011-endheadbox.tpf index 6de09a86b..c09424f77 100644 --- a/required/latex-lab/testfiles-table-luatex/table-011-endheadbox.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-011-endheadbox.tpf @@ -269,7 +269,7 @@ endobj << /Kids [70 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 72 0 obj << /TH-both <> @@ -287,7 +287,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -860,87 +860,87 @@ xref 0000004080 00000 n 0000004102 00000 n 0000004124 00000 n -0000011292 00000 n +0000011551 00000 n 0000004182 00000 n 0000005012 00000 n -0000007272 00000 n -0000005792 00000 n +0000007531 00000 n +0000005899 00000 n 0000000012 00000 f -0000005860 00000 n +0000005967 00000 n 0000000014 00000 f -0000005930 00000 n +0000006037 00000 n 0000000020 00000 f -0000006810 00000 n -0000006011 00000 n -0000007083 00000 n -0000006912 00000 n -0000007185 00000 n +0000007069 00000 n +0000006118 00000 n +0000007342 00000 n +0000007171 00000 n +0000007444 00000 n 0000000000 00000 f -0000007333 00000 n -0000007431 00000 n -0000007520 00000 n -0000007609 00000 n -0000007698 00000 n -0000007866 00000 n -0000007968 00000 n -0000008100 00000 n -0000008232 00000 n -0000008334 00000 n -0000008455 00000 n -0000008538 00000 n -0000008640 00000 n -0000008761 00000 n -0000008844 00000 n -0000008946 00000 n -0000009067 00000 n -0000009150 00000 n -0000009252 00000 n -0000009373 00000 n -0000009456 00000 n -0000009558 00000 n -0000009679 00000 n -0000009762 00000 n -0000009864 00000 n -0000009985 00000 n -0000010068 00000 n -0000010170 00000 n -0000010291 00000 n -0000010374 00000 n -0000010476 00000 n -0000010597 00000 n -0000010680 00000 n -0000010782 00000 n -0000010903 00000 n -0000010986 00000 n -0000011088 00000 n -0000011209 00000 n +0000007592 00000 n +0000007690 00000 n +0000007779 00000 n +0000007868 00000 n +0000007957 00000 n +0000008125 00000 n +0000008227 00000 n +0000008359 00000 n +0000008491 00000 n +0000008593 00000 n +0000008714 00000 n +0000008797 00000 n +0000008899 00000 n +0000009020 00000 n +0000009103 00000 n +0000009205 00000 n +0000009326 00000 n +0000009409 00000 n +0000009511 00000 n +0000009632 00000 n +0000009715 00000 n +0000009817 00000 n +0000009938 00000 n +0000010021 00000 n +0000010123 00000 n +0000010244 00000 n +0000010327 00000 n +0000010429 00000 n +0000010550 00000 n +0000010633 00000 n +0000010735 00000 n +0000010856 00000 n +0000010939 00000 n +0000011041 00000 n +0000011162 00000 n +0000011245 00000 n +0000011347 00000 n +0000011468 00000 n 0000002777 00000 n 0000002642 00000 n 0000000020 00000 n -0000025360 00000 n -0000040477 00000 n -0000040635 00000 n -0000011429 00000 n +0000025619 00000 n +0000040736 00000 n +0000040894 00000 n +0000011688 00000 n 0000003958 00000 n 0000003823 00000 n 0000002852 00000 n 0000004146 00000 n 0000004308 00000 n 0000004975 00000 n -0000005671 00000 n -0000023600 00000 n -0000023791 00000 n -0000024413 00000 n -0000023823 00000 n -0000024634 00000 n -0000025514 00000 n -0000038488 00000 n -0000025714 00000 n -0000038693 00000 n -0000040704 00000 n -0000040819 00000 n +0000005778 00000 n +0000023859 00000 n +0000024050 00000 n +0000024672 00000 n +0000024082 00000 n +0000024893 00000 n +0000025773 00000 n +0000038747 00000 n +0000025973 00000 n +0000038952 00000 n +0000040963 00000 n +0000041078 00000 n trailer << /Size 84 /Root 82 0 R /Info 83 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -40951 +41210 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-014-pbox-longtable.tpf b/required/latex-lab/testfiles-table-luatex/table-014-pbox-longtable.tpf index fa4600b7c..86805417c 100644 --- a/required/latex-lab/testfiles-table-luatex/table-014-pbox-longtable.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-014-pbox-longtable.tpf @@ -231,7 +231,7 @@ endobj << /Kids [94 0 R 95 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 97 0 obj << /itemize <> @@ -251,7 +251,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1026,117 +1026,117 @@ xref 0000002971 00000 n 0000002993 00000 n 0000003015 00000 n -0000013858 00000 n +0000014117 00000 n 0000003073 00000 n 0000004442 00000 n -0000006790 00000 n -0000005308 00000 n +0000007049 00000 n +0000005415 00000 n 0000000012 00000 f -0000005376 00000 n +0000005483 00000 n 0000000014 00000 f -0000005446 00000 n +0000005553 00000 n 0000000020 00000 f -0000006326 00000 n -0000005527 00000 n -0000006599 00000 n -0000006428 00000 n -0000006701 00000 n +0000006585 00000 n +0000005634 00000 n +0000006858 00000 n +0000006687 00000 n +0000006960 00000 n 0000000000 00000 f -0000006851 00000 n -0000006965 00000 n -0000007054 00000 n -0000007143 00000 n -0000007232 00000 n -0000007344 00000 n -0000007446 00000 n -0000007567 00000 n -0000007660 00000 n -0000007763 00000 n -0000007873 00000 n -0000007977 00000 n -0000008105 00000 n -0000008204 00000 n -0000008298 00000 n -0000008439 00000 n -0000008580 00000 n -0000008682 00000 n -0000008803 00000 n -0000008896 00000 n -0000008990 00000 n -0000009131 00000 n -0000009233 00000 n -0000009354 00000 n -0000009437 00000 n -0000009549 00000 n -0000009651 00000 n -0000009772 00000 n -0000009865 00000 n -0000009968 00000 n -0000010078 00000 n -0000010182 00000 n -0000010310 00000 n -0000010409 00000 n -0000010503 00000 n -0000010644 00000 n -0000010786 00000 n -0000010888 00000 n -0000011010 00000 n -0000011103 00000 n -0000011197 00000 n -0000011339 00000 n -0000011441 00000 n -0000011563 00000 n -0000011646 00000 n -0000011758 00000 n -0000011860 00000 n -0000011982 00000 n -0000012075 00000 n -0000012178 00000 n -0000012288 00000 n -0000012392 00000 n -0000012521 00000 n -0000012620 00000 n -0000012714 00000 n -0000012856 00000 n -0000012998 00000 n -0000013100 00000 n -0000013222 00000 n -0000013315 00000 n -0000013409 00000 n -0000013551 00000 n -0000013653 00000 n -0000013775 00000 n -0000013995 00000 n +0000007110 00000 n +0000007224 00000 n +0000007313 00000 n +0000007402 00000 n +0000007491 00000 n +0000007603 00000 n +0000007705 00000 n +0000007826 00000 n +0000007919 00000 n +0000008022 00000 n +0000008132 00000 n +0000008236 00000 n +0000008364 00000 n +0000008463 00000 n +0000008557 00000 n +0000008698 00000 n +0000008839 00000 n +0000008941 00000 n +0000009062 00000 n +0000009155 00000 n +0000009249 00000 n +0000009390 00000 n +0000009492 00000 n +0000009613 00000 n +0000009696 00000 n +0000009808 00000 n +0000009910 00000 n +0000010031 00000 n +0000010124 00000 n +0000010227 00000 n +0000010337 00000 n +0000010441 00000 n +0000010569 00000 n +0000010668 00000 n +0000010762 00000 n +0000010903 00000 n +0000011045 00000 n +0000011147 00000 n +0000011269 00000 n +0000011362 00000 n +0000011456 00000 n +0000011598 00000 n +0000011700 00000 n +0000011822 00000 n +0000011905 00000 n +0000012017 00000 n +0000012119 00000 n +0000012241 00000 n +0000012334 00000 n +0000012437 00000 n +0000012547 00000 n +0000012651 00000 n +0000012780 00000 n +0000012879 00000 n +0000012973 00000 n +0000013115 00000 n +0000013257 00000 n +0000013359 00000 n +0000013481 00000 n +0000013574 00000 n +0000013668 00000 n +0000013810 00000 n +0000013912 00000 n +0000014034 00000 n +0000014254 00000 n 0000002837 00000 n 0000002702 00000 n 0000000020 00000 n -0000027949 00000 n -0000045747 00000 n -0000047492 00000 n -0000047673 00000 n +0000028208 00000 n +0000046006 00000 n +0000047751 00000 n +0000047932 00000 n 0000003037 00000 n 0000003256 00000 n 0000004115 00000 n 0000004398 00000 n -0000005101 00000 n -0000043895 00000 n -0000026170 00000 n -0000026195 00000 n -0000026375 00000 n -0000026999 00000 n -0000026408 00000 n -0000027222 00000 n -0000028105 00000 n -0000037992 00000 n -0000028308 00000 n -0000043691 00000 n -0000038199 00000 n -0000043962 00000 n -0000045908 00000 n -0000047735 00000 n -0000047851 00000 n +0000005208 00000 n +0000044154 00000 n +0000026429 00000 n +0000026454 00000 n +0000026634 00000 n +0000027258 00000 n +0000026667 00000 n +0000027481 00000 n +0000028364 00000 n +0000038251 00000 n +0000028567 00000 n +0000043950 00000 n +0000038458 00000 n +0000044221 00000 n +0000046167 00000 n +0000047994 00000 n +0000048110 00000 n trailer << /Size 114 /Root 112 0 R /Info 113 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47984 +48243 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/table-014-pbox.tpf b/required/latex-lab/testfiles-table-luatex/table-014-pbox.tpf index 11aaffd2a..4937a98c0 100644 --- a/required/latex-lab/testfiles-table-luatex/table-014-pbox.tpf +++ b/required/latex-lab/testfiles-table-luatex/table-014-pbox.tpf @@ -231,7 +231,7 @@ endobj << /Kids [91 0 R 92 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 94 0 obj << /justify <> @@ -1030,115 +1030,115 @@ xref 0000002979 00000 n 0000003001 00000 n 0000003023 00000 n -0000012545 00000 n +0000012652 00000 n 0000003081 00000 n 0000004593 00000 n 0000000000 00000 f -0000005479 00000 n -0000005580 00000 n -0000005656 00000 n -0000005732 00000 n -0000005808 00000 n +0000005586 00000 n +0000005687 00000 n +0000005763 00000 n +0000005839 00000 n 0000005915 00000 n -0000006006 00000 n -0000006106 00000 n -0000006196 00000 n -0000006305 00000 n -0000006386 00000 n -0000006477 00000 n -0000006575 00000 n -0000006667 00000 n -0000006783 00000 n -0000006870 00000 n -0000006952 00000 n -0000007081 00000 n -0000007210 00000 n -0000007300 00000 n -0000007409 00000 n -0000007490 00000 n -0000007572 00000 n -0000007701 00000 n -0000007791 00000 n -0000007900 00000 n -0000007971 00000 n -0000008050 00000 n +0000006022 00000 n +0000006113 00000 n +0000006213 00000 n +0000006303 00000 n +0000006412 00000 n +0000006493 00000 n +0000006584 00000 n +0000006682 00000 n +0000006774 00000 n +0000006890 00000 n +0000006977 00000 n +0000007059 00000 n +0000007188 00000 n +0000007317 00000 n +0000007407 00000 n +0000007516 00000 n +0000007597 00000 n +0000007679 00000 n +0000007808 00000 n +0000007898 00000 n +0000008007 00000 n +0000008078 00000 n 0000008157 00000 n -0000008248 00000 n -0000008348 00000 n -0000008438 00000 n -0000008547 00000 n -0000008628 00000 n -0000008719 00000 n -0000008817 00000 n -0000008909 00000 n -0000009025 00000 n -0000009112 00000 n -0000009194 00000 n -0000009323 00000 n -0000009453 00000 n -0000009543 00000 n -0000009653 00000 n -0000009734 00000 n -0000009816 00000 n -0000009946 00000 n -0000010036 00000 n -0000010146 00000 n -0000010217 00000 n -0000010296 00000 n +0000008264 00000 n +0000008355 00000 n +0000008455 00000 n +0000008545 00000 n +0000008654 00000 n +0000008735 00000 n +0000008826 00000 n +0000008924 00000 n +0000009016 00000 n +0000009132 00000 n +0000009219 00000 n +0000009301 00000 n +0000009430 00000 n +0000009560 00000 n +0000009650 00000 n +0000009760 00000 n +0000009841 00000 n +0000009923 00000 n +0000010053 00000 n +0000010143 00000 n +0000010253 00000 n +0000010324 00000 n 0000010403 00000 n -0000010494 00000 n -0000010594 00000 n -0000010684 00000 n -0000010794 00000 n -0000010875 00000 n -0000010966 00000 n -0000011064 00000 n -0000011156 00000 n -0000011273 00000 n -0000011360 00000 n -0000011442 00000 n -0000011572 00000 n -0000011702 00000 n -0000011792 00000 n -0000011902 00000 n -0000011983 00000 n -0000012065 00000 n -0000012195 00000 n -0000012285 00000 n -0000012395 00000 n -0000012466 00000 n -0000012663 00000 n +0000010510 00000 n +0000010601 00000 n +0000010701 00000 n +0000010791 00000 n +0000010901 00000 n +0000010982 00000 n +0000011073 00000 n +0000011171 00000 n +0000011263 00000 n +0000011380 00000 n +0000011467 00000 n +0000011549 00000 n +0000011679 00000 n +0000011809 00000 n +0000011899 00000 n +0000012009 00000 n +0000012090 00000 n +0000012172 00000 n +0000012302 00000 n +0000012392 00000 n +0000012502 00000 n +0000012573 00000 n +0000012770 00000 n 0000002821 00000 n 0000002686 00000 n 0000000020 00000 n -0000026694 00000 n -0000044537 00000 n -0000046281 00000 n -0000046462 00000 n +0000026801 00000 n +0000044644 00000 n +0000046388 00000 n +0000046569 00000 n 0000003045 00000 n 0000003264 00000 n 0000004122 00000 n 0000004549 00000 n -0000005272 00000 n -0000042685 00000 n -0000024828 00000 n -0000024853 00000 n -0000025032 00000 n -0000025729 00000 n -0000025064 00000 n -0000025138 00000 n -0000025967 00000 n -0000026850 00000 n -0000036735 00000 n -0000027051 00000 n -0000042462 00000 n -0000036970 00000 n -0000042752 00000 n -0000044697 00000 n -0000046524 00000 n -0000046640 00000 n +0000005379 00000 n +0000042792 00000 n +0000024935 00000 n +0000024960 00000 n +0000025139 00000 n +0000025836 00000 n +0000025171 00000 n +0000025245 00000 n +0000026074 00000 n +0000026957 00000 n +0000036842 00000 n +0000027158 00000 n +0000042569 00000 n +0000037077 00000 n +0000042859 00000 n +0000044804 00000 n +0000046631 00000 n +0000046747 00000 n trailer << /Size 112 /Root 110 0 R /Info 111 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -46773 +46880 %%EOF diff --git a/required/latex-lab/testfiles-table-luatex/tagging-965.tpf b/required/latex-lab/testfiles-table-luatex/tagging-965.tpf index 293ddfc49..ec5a342ee 100644 --- a/required/latex-lab/testfiles-table-luatex/tagging-965.tpf +++ b/required/latex-lab/testfiles-table-luatex/tagging-965.tpf @@ -140,7 +140,7 @@ endobj << /Kids [48 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 50 0 obj << /justify <> @@ -159,7 +159,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -761,42 +761,42 @@ xref 0000003382 00000 n 0000003404 00000 n 0000003426 00000 n -0000007618 00000 n +0000007877 00000 n 0000003563 00000 n 0000003917 00000 n -0000006220 00000 n -0000004738 00000 n +0000006479 00000 n +0000004845 00000 n 0000000012 00000 f -0000004806 00000 n +0000004913 00000 n 0000000014 00000 f -0000004876 00000 n +0000004983 00000 n 0000000020 00000 f -0000005756 00000 n -0000004957 00000 n -0000006029 00000 n -0000005858 00000 n -0000006131 00000 n +0000006015 00000 n +0000005064 00000 n +0000006288 00000 n +0000006117 00000 n +0000006390 00000 n 0000000000 00000 f -0000006281 00000 n -0000006379 00000 n -0000006468 00000 n -0000006557 00000 n -0000006646 00000 n -0000006766 00000 n -0000006869 00000 n -0000006965 00000 n -0000007067 00000 n -0000007171 00000 n -0000007265 00000 n -0000007406 00000 n -0000007527 00000 n -0000007755 00000 n +0000006540 00000 n +0000006638 00000 n +0000006727 00000 n +0000006816 00000 n +0000006905 00000 n +0000007025 00000 n +0000007128 00000 n +0000007224 00000 n +0000007326 00000 n +0000007430 00000 n +0000007524 00000 n +0000007665 00000 n +0000007786 00000 n +0000008014 00000 n 0000000609 00000 n 0000000474 00000 n 0000000020 00000 n -0000039329 00000 n -0000026497 00000 n -0000039487 00000 n +0000039588 00000 n +0000026756 00000 n +0000039746 00000 n 0000000684 00000 n 0000001150 00000 n 0000001355 00000 n @@ -806,20 +806,20 @@ xref 0000003518 00000 n 0000003613 00000 n 0000003880 00000 n -0000004576 00000 n -0000024928 00000 n -0000025550 00000 n -0000024960 00000 n -0000025771 00000 n -0000026651 00000 n -0000026851 00000 n -0000037340 00000 n -0000027030 00000 n -0000037545 00000 n -0000039549 00000 n -0000039699 00000 n +0000004683 00000 n +0000025187 00000 n +0000025809 00000 n +0000025219 00000 n +0000026030 00000 n +0000026910 00000 n +0000027110 00000 n +0000037599 00000 n +0000027289 00000 n +0000037804 00000 n +0000039808 00000 n +0000039958 00000 n trailer << /Size 62 /Root 60 0 R /Info 61 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -39864 +40123 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-000.tlg b/required/latex-lab/testfiles-table-pdftex/table-000.tlg index d0449be01..c760dc96b 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-000.tlg +++ b/required/latex-lab/testfiles-table-pdftex/table-000.tlg @@ -115,6 +115,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles-table-pdftex/table-001-pdf.tpf b/required/latex-lab/testfiles-table-pdftex/table-001-pdf.tpf index a333482ac..94207880a 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-001-pdf.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-001-pdf.tpf @@ -349,7 +349,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 45 0 obj << /justify <> @@ -660,59 +660,59 @@ xref 0000013352 00000 n 0000013374 00000 n 0000013396 00000 n -0000017688 00000 n +0000017795 00000 n 0000013454 00000 n 0000014101 00000 n 0000000000 00000 f -0000014942 00000 n -0000015050 00000 n -0000015126 00000 n -0000015202 00000 n +0000015049 00000 n +0000015157 00000 n +0000015233 00000 n 0000015309 00000 n +0000015416 00000 n 0000013082 00000 n -0000015436 00000 n -0000015520 00000 n -0000015601 00000 n +0000015543 00000 n +0000015627 00000 n 0000015708 00000 n -0000015823 00000 n +0000015815 00000 n 0000015930 00000 n -0000016057 00000 n -0000016141 00000 n -0000016222 00000 n +0000016037 00000 n +0000016164 00000 n +0000016248 00000 n 0000016329 00000 n -0000016444 00000 n +0000016436 00000 n 0000016551 00000 n -0000016678 00000 n -0000016762 00000 n -0000016843 00000 n +0000016658 00000 n +0000016785 00000 n +0000016869 00000 n 0000016950 00000 n -0000017065 00000 n +0000017057 00000 n 0000017172 00000 n -0000017299 00000 n -0000017383 00000 n -0000017464 00000 n -0000017572 00000 n +0000017279 00000 n +0000017406 00000 n +0000017490 00000 n +0000017571 00000 n +0000017679 00000 n 0000000015 00000 n 0000013217 00000 n 0000012176 00000 n -0000024616 00000 n -0000024794 00000 n +0000024723 00000 n +0000024901 00000 n 0000013418 00000 n 0000013574 00000 n 0000014064 00000 n -0000014780 00000 n -0000022454 00000 n -0000017806 00000 n -0000018245 00000 n -0000022225 00000 n -0000022527 00000 n -0000024853 00000 n -0000024968 00000 n +0000014887 00000 n +0000022561 00000 n +0000017913 00000 n +0000018352 00000 n +0000022332 00000 n +0000022634 00000 n +0000024960 00000 n +0000025075 00000 n trailer << /Size 53 /Root 51 0 R /Info 52 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -25100 +25207 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-009-pdf.tpf b/required/latex-lab/testfiles-table-pdftex/table-009-pdf.tpf index fe3ac39ca..2b509f960 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-009-pdf.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-009-pdf.tpf @@ -358,7 +358,7 @@ endobj << /Kids [41 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 43 0 obj << /justify <> @@ -664,57 +664,57 @@ xref 0000013448 00000 n 0000013470 00000 n 0000013492 00000 n -0000017715 00000 n +0000017822 00000 n 0000013550 00000 n 0000014186 00000 n 0000000000 00000 f -0000015061 00000 n -0000015146 00000 n -0000015222 00000 n -0000015298 00000 n +0000015168 00000 n +0000015253 00000 n +0000015329 00000 n 0000015405 00000 n +0000015512 00000 n 0000013178 00000 n -0000015532 00000 n -0000015646 00000 n -0000015743 00000 n -0000015861 00000 n -0000015979 00000 n -0000016097 00000 n -0000016178 00000 n -0000016308 00000 n -0000016405 00000 n +0000015639 00000 n +0000015753 00000 n +0000015850 00000 n +0000015968 00000 n +0000016086 00000 n +0000016204 00000 n +0000016285 00000 n +0000016415 00000 n 0000016512 00000 n 0000016619 00000 n 0000016726 00000 n -0000016823 00000 n +0000016833 00000 n 0000016930 00000 n 0000017037 00000 n -0000017145 00000 n -0000017242 00000 n -0000017361 00000 n -0000017480 00000 n -0000017599 00000 n +0000017144 00000 n +0000017252 00000 n +0000017349 00000 n +0000017468 00000 n +0000017587 00000 n +0000017706 00000 n 0000000015 00000 n 0000013313 00000 n 0000012176 00000 n -0000024961 00000 n -0000025139 00000 n +0000025068 00000 n +0000025246 00000 n 0000013514 00000 n 0000013691 00000 n 0000014149 00000 n -0000014865 00000 n -0000022786 00000 n -0000017833 00000 n -0000018178 00000 n -0000022551 00000 n -0000022872 00000 n -0000025198 00000 n -0000025313 00000 n +0000014972 00000 n +0000022893 00000 n +0000017940 00000 n +0000018285 00000 n +0000022658 00000 n +0000022979 00000 n +0000025305 00000 n +0000025420 00000 n trailer << /Size 51 /Root 49 0 R /Info 50 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -25445 +25552 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf.tpf b/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf.tpf index 2f2e34bef..f5bd3c97d 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf.tpf @@ -449,7 +449,7 @@ endobj << /Kids [68 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 70 0 obj << /colspan-2 <> @@ -901,88 +901,88 @@ xref 0000015337 00000 n 0000015359 00000 n 0000015381 00000 n -0000022269 00000 n +0000022376 00000 n 0000015439 00000 n 0000016547 00000 n 0000000000 00000 f -0000017381 00000 n -0000017466 00000 n -0000017542 00000 n -0000017618 00000 n -0000017780 00000 n -0000017870 00000 n -0000015055 00000 n +0000017488 00000 n +0000017573 00000 n +0000017649 00000 n +0000017725 00000 n +0000017887 00000 n 0000017977 00000 n +0000015055 00000 n 0000018084 00000 n -0000018174 00000 n +0000018191 00000 n 0000018281 00000 n 0000018388 00000 n -0000018478 00000 n +0000018495 00000 n +0000018585 00000 n 0000001652 00000 n -0000018596 00000 n -0000018714 00000 n -0000018804 00000 n -0000018912 00000 n -0000019020 00000 n -0000019101 00000 n -0000019223 00000 n -0000019313 00000 n +0000018703 00000 n +0000018821 00000 n +0000018911 00000 n +0000019019 00000 n +0000019127 00000 n +0000019208 00000 n +0000019330 00000 n 0000019420 00000 n 0000019527 00000 n -0000019617 00000 n +0000019634 00000 n 0000019724 00000 n 0000019831 00000 n -0000019921 00000 n +0000019938 00000 n 0000020028 00000 n 0000020135 00000 n -0000020225 00000 n +0000020242 00000 n 0000020332 00000 n 0000020439 00000 n -0000020529 00000 n -0000020637 00000 n -0000020745 00000 n -0000020835 00000 n -0000020943 00000 n -0000021051 00000 n -0000021141 00000 n -0000021249 00000 n -0000021357 00000 n -0000021447 00000 n +0000020546 00000 n +0000020636 00000 n +0000020744 00000 n +0000020852 00000 n +0000020942 00000 n +0000021050 00000 n +0000021158 00000 n +0000021248 00000 n +0000021356 00000 n +0000021464 00000 n 0000021554 00000 n 0000021661 00000 n -0000021751 00000 n +0000021768 00000 n 0000021858 00000 n 0000021965 00000 n -0000022055 00000 n +0000022072 00000 n 0000022162 00000 n +0000022269 00000 n 0000001787 00000 n 0000000015 00000 n -0000043094 00000 n -0000043985 00000 n -0000044149 00000 n +0000043201 00000 n +0000044092 00000 n +0000044256 00000 n 0000001887 00000 n 0000015190 00000 n 0000014058 00000 n 0000015403 00000 n 0000015684 00000 n 0000016510 00000 n -0000017226 00000 n -0000022387 00000 n -0000040846 00000 n -0000022409 00000 n -0000022952 00000 n -0000025616 00000 n -0000025834 00000 n -0000040550 00000 n -0000041005 00000 n -0000043272 00000 n -0000044215 00000 n -0000044330 00000 n +0000017333 00000 n +0000022494 00000 n +0000040953 00000 n +0000022516 00000 n +0000023059 00000 n +0000025723 00000 n +0000025941 00000 n +0000040657 00000 n +0000041112 00000 n +0000043379 00000 n +0000044322 00000 n +0000044437 00000 n trailer << /Size 82 /Root 80 0 R /Info 81 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -44462 +44569 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf2.tpf b/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf2.tpf index 0c8382fd6..a1917d7fb 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf2.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-010-longtable-pdf2.tpf @@ -447,7 +447,7 @@ endobj << /Kids [80 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 82 0 obj << /colspan-2 <> @@ -466,7 +466,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -926,100 +926,100 @@ xref 0000015290 00000 n 0000015312 00000 n 0000015334 00000 n -0000024363 00000 n +0000024622 00000 n 0000015392 00000 n 0000016501 00000 n -0000018795 00000 n -0000017315 00000 n +0000019054 00000 n +0000017422 00000 n 0000000012 00000 f -0000017383 00000 n +0000017490 00000 n 0000000014 00000 f -0000017453 00000 n +0000017560 00000 n 0000000020 00000 f -0000018333 00000 n -0000017534 00000 n -0000018606 00000 n -0000018435 00000 n -0000018708 00000 n +0000018592 00000 n +0000017641 00000 n +0000018865 00000 n +0000018694 00000 n +0000018967 00000 n 0000000000 00000 f -0000018856 00000 n -0000018954 00000 n -0000019043 00000 n -0000019132 00000 n -0000019328 00000 n -0000019436 00000 n +0000019115 00000 n +0000019213 00000 n +0000019302 00000 n +0000019391 00000 n +0000019587 00000 n +0000019695 00000 n 0000015032 00000 n -0000019555 00000 n -0000019674 00000 n -0000019782 00000 n -0000019901 00000 n -0000020020 00000 n -0000020122 00000 n +0000019814 00000 n +0000019933 00000 n +0000020041 00000 n +0000020160 00000 n +0000020279 00000 n +0000020381 00000 n 0000001652 00000 n -0000020252 00000 n -0000020382 00000 n -0000020490 00000 n -0000020610 00000 n -0000020730 00000 n -0000020823 00000 n -0000020957 00000 n -0000021059 00000 n -0000021178 00000 n -0000021297 00000 n -0000021399 00000 n -0000021518 00000 n -0000021637 00000 n -0000021739 00000 n -0000021858 00000 n -0000021977 00000 n -0000022079 00000 n -0000022198 00000 n -0000022317 00000 n -0000022419 00000 n -0000022539 00000 n -0000022659 00000 n -0000022761 00000 n -0000022881 00000 n -0000023001 00000 n -0000023103 00000 n -0000023223 00000 n -0000023343 00000 n -0000023445 00000 n -0000023564 00000 n -0000023683 00000 n -0000023785 00000 n -0000023904 00000 n -0000024023 00000 n -0000024125 00000 n -0000024244 00000 n +0000020511 00000 n +0000020641 00000 n +0000020749 00000 n +0000020869 00000 n +0000020989 00000 n +0000021082 00000 n +0000021216 00000 n +0000021318 00000 n +0000021437 00000 n +0000021556 00000 n +0000021658 00000 n +0000021777 00000 n +0000021896 00000 n +0000021998 00000 n +0000022117 00000 n +0000022236 00000 n +0000022338 00000 n +0000022457 00000 n +0000022576 00000 n +0000022678 00000 n +0000022798 00000 n +0000022918 00000 n +0000023020 00000 n +0000023140 00000 n +0000023260 00000 n +0000023362 00000 n +0000023482 00000 n +0000023602 00000 n +0000023704 00000 n +0000023823 00000 n +0000023942 00000 n +0000024044 00000 n +0000024163 00000 n +0000024282 00000 n +0000024384 00000 n +0000024503 00000 n 0000001787 00000 n 0000000015 00000 n -0000045207 00000 n -0000046098 00000 n -0000046262 00000 n +0000045466 00000 n +0000046357 00000 n +0000046521 00000 n 0000001863 00000 n 0000015167 00000 n 0000014035 00000 n 0000015356 00000 n 0000015637 00000 n 0000016464 00000 n -0000017160 00000 n -0000024500 00000 n -0000042959 00000 n -0000024522 00000 n -0000025065 00000 n -0000027729 00000 n -0000027947 00000 n -0000042663 00000 n -0000043118 00000 n -0000045385 00000 n -0000046328 00000 n -0000046443 00000 n +0000017267 00000 n +0000024759 00000 n +0000043218 00000 n +0000024781 00000 n +0000025324 00000 n +0000027988 00000 n +0000028206 00000 n +0000042922 00000 n +0000043377 00000 n +0000045644 00000 n +0000046587 00000 n +0000046702 00000 n trailer << /Size 94 /Root 92 0 R /Info 93 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -46575 +46834 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-011-endheadbox.tpf b/required/latex-lab/testfiles-table-pdftex/table-011-endheadbox.tpf index 96f4d7f3b..b0304132c 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-011-endheadbox.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-011-endheadbox.tpf @@ -428,7 +428,7 @@ endobj << /Kids [69 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 71 0 obj << /TH-both <> @@ -446,7 +446,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -873,89 +873,89 @@ xref 0000014867 00000 n 0000014889 00000 n 0000014911 00000 n -0000022374 00000 n +0000022633 00000 n 0000014969 00000 n 0000015839 00000 n -0000018099 00000 n -0000016619 00000 n +0000018358 00000 n +0000016726 00000 n 0000000012 00000 f -0000016687 00000 n +0000016794 00000 n 0000000014 00000 f -0000016757 00000 n +0000016864 00000 n 0000000020 00000 f -0000017637 00000 n -0000016838 00000 n -0000017910 00000 n -0000017739 00000 n -0000018012 00000 n +0000017896 00000 n +0000016945 00000 n +0000018169 00000 n +0000017998 00000 n +0000018271 00000 n 0000000000 00000 f -0000018160 00000 n -0000018258 00000 n -0000018347 00000 n -0000018436 00000 n -0000018604 00000 n -0000018706 00000 n +0000018419 00000 n +0000018517 00000 n +0000018606 00000 n +0000018695 00000 n +0000018863 00000 n +0000018965 00000 n 0000014609 00000 n -0000018836 00000 n -0000018966 00000 n -0000019068 00000 n +0000019095 00000 n +0000019225 00000 n +0000019327 00000 n 0000001578 00000 n -0000019187 00000 n -0000019306 00000 n -0000019408 00000 n -0000019527 00000 n -0000019646 00000 n -0000019748 00000 n -0000019867 00000 n -0000019986 00000 n -0000020088 00000 n -0000020207 00000 n -0000020326 00000 n -0000020428 00000 n -0000020548 00000 n -0000020668 00000 n -0000020770 00000 n -0000020890 00000 n -0000021010 00000 n -0000021112 00000 n -0000021232 00000 n -0000021352 00000 n -0000021454 00000 n -0000021574 00000 n -0000021694 00000 n -0000021796 00000 n -0000021915 00000 n -0000022034 00000 n -0000022136 00000 n -0000022255 00000 n +0000019446 00000 n +0000019565 00000 n +0000019667 00000 n +0000019786 00000 n +0000019905 00000 n +0000020007 00000 n +0000020126 00000 n +0000020245 00000 n +0000020347 00000 n +0000020466 00000 n +0000020585 00000 n +0000020687 00000 n +0000020807 00000 n +0000020927 00000 n +0000021029 00000 n +0000021149 00000 n +0000021269 00000 n +0000021371 00000 n +0000021491 00000 n +0000021611 00000 n +0000021713 00000 n +0000021833 00000 n +0000021953 00000 n +0000022055 00000 n +0000022174 00000 n +0000022293 00000 n +0000022395 00000 n +0000022514 00000 n 0000001713 00000 n 0000000015 00000 n -0000041935 00000 n -0000042826 00000 n -0000042990 00000 n +0000042194 00000 n +0000043085 00000 n +0000043249 00000 n 0000001789 00000 n 0000014744 00000 n 0000013957 00000 n 0000014933 00000 n 0000015151 00000 n 0000015802 00000 n -0000016498 00000 n -0000022511 00000 n -0000039707 00000 n -0000022533 00000 n -0000022920 00000 n -0000025584 00000 n -0000025802 00000 n -0000039424 00000 n -0000039846 00000 n -0000042113 00000 n -0000043056 00000 n -0000043171 00000 n +0000016605 00000 n +0000022770 00000 n +0000039966 00000 n +0000022792 00000 n +0000023179 00000 n +0000025843 00000 n +0000026061 00000 n +0000039683 00000 n +0000040105 00000 n +0000042372 00000 n +0000043315 00000 n +0000043430 00000 n trailer << /Size 83 /Root 81 0 R /Info 82 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -43303 +43562 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-014-pbox-longtable.tpf b/required/latex-lab/testfiles-table-pdftex/table-014-pbox-longtable.tpf index 8870e2cea..6adbccbee 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-014-pbox-longtable.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-014-pbox-longtable.tpf @@ -426,7 +426,7 @@ endobj << /Kids [92 0 R 93 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 95 0 obj << /itemize <> @@ -446,7 +446,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1005,112 +1005,112 @@ xref 0000014438 00000 n 0000014460 00000 n 0000014482 00000 n -0000025310 00000 n +0000025569 00000 n 0000014540 00000 n 0000015914 00000 n -0000018262 00000 n -0000016780 00000 n +0000018521 00000 n +0000016887 00000 n 0000000012 00000 f -0000016848 00000 n +0000016955 00000 n 0000000014 00000 f -0000016918 00000 n +0000017025 00000 n 0000000020 00000 f -0000017798 00000 n -0000016999 00000 n -0000018071 00000 n -0000017900 00000 n -0000018173 00000 n +0000018057 00000 n +0000017106 00000 n +0000018330 00000 n +0000018159 00000 n +0000018432 00000 n 0000000000 00000 f -0000018323 00000 n -0000018437 00000 n -0000018526 00000 n -0000018615 00000 n -0000018727 00000 n -0000018829 00000 n +0000018582 00000 n +0000018696 00000 n +0000018785 00000 n +0000018874 00000 n +0000018986 00000 n +0000019088 00000 n 0000014180 00000 n -0000018948 00000 n -0000019041 00000 n -0000019144 00000 n -0000019254 00000 n -0000019358 00000 n -0000019484 00000 n -0000019583 00000 n -0000019677 00000 n -0000019816 00000 n -0000019955 00000 n -0000020057 00000 n -0000020176 00000 n -0000020269 00000 n -0000020363 00000 n -0000020502 00000 n -0000020604 00000 n -0000020723 00000 n -0000020842 00000 n -0000020954 00000 n -0000021056 00000 n -0000021175 00000 n -0000021268 00000 n -0000021371 00000 n -0000021481 00000 n -0000021585 00000 n -0000021711 00000 n -0000021810 00000 n -0000021904 00000 n -0000022044 00000 n -0000022184 00000 n -0000022286 00000 n -0000022406 00000 n -0000022499 00000 n -0000022593 00000 n -0000022733 00000 n -0000022835 00000 n -0000022955 00000 n -0000023075 00000 n -0000023187 00000 n -0000023289 00000 n -0000023409 00000 n -0000023502 00000 n -0000023605 00000 n -0000023715 00000 n -0000023819 00000 n -0000023946 00000 n -0000024045 00000 n -0000024139 00000 n -0000024279 00000 n -0000024419 00000 n -0000024521 00000 n -0000024641 00000 n -0000024734 00000 n -0000024828 00000 n -0000024968 00000 n -0000025070 00000 n -0000025190 00000 n +0000019207 00000 n +0000019300 00000 n +0000019403 00000 n +0000019513 00000 n +0000019617 00000 n +0000019743 00000 n +0000019842 00000 n +0000019936 00000 n +0000020075 00000 n +0000020214 00000 n +0000020316 00000 n +0000020435 00000 n +0000020528 00000 n +0000020622 00000 n +0000020761 00000 n +0000020863 00000 n +0000020982 00000 n +0000021101 00000 n +0000021213 00000 n +0000021315 00000 n +0000021434 00000 n +0000021527 00000 n +0000021630 00000 n +0000021740 00000 n +0000021844 00000 n +0000021970 00000 n +0000022069 00000 n +0000022163 00000 n +0000022303 00000 n +0000022443 00000 n +0000022545 00000 n +0000022665 00000 n +0000022758 00000 n +0000022852 00000 n +0000022992 00000 n +0000023094 00000 n +0000023214 00000 n +0000023334 00000 n +0000023446 00000 n +0000023548 00000 n +0000023668 00000 n +0000023761 00000 n +0000023864 00000 n +0000023974 00000 n +0000024078 00000 n +0000024205 00000 n +0000024304 00000 n +0000024398 00000 n +0000024538 00000 n +0000024678 00000 n +0000024780 00000 n +0000024900 00000 n +0000024993 00000 n +0000025087 00000 n +0000025227 00000 n +0000025329 00000 n +0000025449 00000 n 0000000015 00000 n 0000014315 00000 n 0000012187 00000 n -0000034775 00000 n -0000036583 00000 n -0000036764 00000 n +0000035034 00000 n +0000036842 00000 n +0000037023 00000 n 0000014504 00000 n 0000014744 00000 n 0000015603 00000 n 0000015870 00000 n -0000016573 00000 n -0000032621 00000 n -0000025447 00000 n -0000032546 00000 n -0000025471 00000 n -0000025910 00000 n -0000032313 00000 n -0000032685 00000 n -0000034955 00000 n -0000036823 00000 n -0000036939 00000 n +0000016680 00000 n +0000032880 00000 n +0000025706 00000 n +0000032805 00000 n +0000025730 00000 n +0000026169 00000 n +0000032572 00000 n +0000032944 00000 n +0000035214 00000 n +0000037082 00000 n +0000037198 00000 n trailer << /Size 106 /Root 104 0 R /Info 105 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -37072 +37331 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-014-pbox.tpf b/required/latex-lab/testfiles-table-pdftex/table-014-pbox.tpf index 77ea49ccc..50b750e0f 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-014-pbox.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-014-pbox.tpf @@ -427,7 +427,7 @@ endobj << /Kids [89 0 R 90 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 92 0 obj << /justify <> @@ -1006,109 +1006,109 @@ xref 0000014540 00000 n 0000014562 00000 n 0000014584 00000 n -0000024368 00000 n +0000024475 00000 n 0000014642 00000 n 0000016201 00000 n 0000000000 00000 f -0000017087 00000 n -0000017188 00000 n -0000017264 00000 n -0000017340 00000 n +0000017194 00000 n +0000017295 00000 n +0000017371 00000 n 0000017447 00000 n +0000017554 00000 n 0000014258 00000 n -0000017574 00000 n -0000017674 00000 n -0000017764 00000 n +0000017681 00000 n +0000017781 00000 n 0000017871 00000 n -0000017952 00000 n -0000018043 00000 n -0000018141 00000 n -0000018233 00000 n -0000018347 00000 n -0000018434 00000 n -0000018516 00000 n -0000018643 00000 n -0000018770 00000 n -0000018860 00000 n +0000017978 00000 n +0000018059 00000 n +0000018150 00000 n +0000018248 00000 n +0000018340 00000 n +0000018454 00000 n +0000018541 00000 n +0000018623 00000 n +0000018750 00000 n +0000018877 00000 n 0000018967 00000 n -0000019048 00000 n -0000019130 00000 n -0000019257 00000 n -0000019347 00000 n +0000019074 00000 n +0000019155 00000 n +0000019237 00000 n +0000019364 00000 n 0000019454 00000 n 0000019561 00000 n -0000019676 00000 n +0000019668 00000 n 0000019783 00000 n -0000019911 00000 n -0000020011 00000 n -0000020101 00000 n -0000020209 00000 n -0000020290 00000 n -0000020381 00000 n -0000020479 00000 n -0000020571 00000 n -0000020686 00000 n -0000020773 00000 n -0000020855 00000 n -0000020983 00000 n -0000021111 00000 n -0000021201 00000 n -0000021309 00000 n -0000021390 00000 n -0000021472 00000 n -0000021600 00000 n -0000021690 00000 n -0000021798 00000 n -0000021906 00000 n -0000022022 00000 n +0000019890 00000 n +0000020018 00000 n +0000020118 00000 n +0000020208 00000 n +0000020316 00000 n +0000020397 00000 n +0000020488 00000 n +0000020586 00000 n +0000020678 00000 n +0000020793 00000 n +0000020880 00000 n +0000020962 00000 n +0000021090 00000 n +0000021218 00000 n +0000021308 00000 n +0000021416 00000 n +0000021497 00000 n +0000021579 00000 n +0000021707 00000 n +0000021797 00000 n +0000021905 00000 n +0000022013 00000 n 0000022129 00000 n -0000022257 00000 n -0000022357 00000 n -0000022447 00000 n -0000022555 00000 n -0000022636 00000 n -0000022727 00000 n -0000022825 00000 n -0000022917 00000 n -0000023032 00000 n -0000023119 00000 n -0000023201 00000 n -0000023329 00000 n -0000023457 00000 n -0000023547 00000 n -0000023655 00000 n -0000023736 00000 n -0000023818 00000 n -0000023946 00000 n -0000024036 00000 n -0000024144 00000 n -0000024252 00000 n +0000022236 00000 n +0000022364 00000 n +0000022464 00000 n +0000022554 00000 n +0000022662 00000 n +0000022743 00000 n +0000022834 00000 n +0000022932 00000 n +0000023024 00000 n +0000023139 00000 n +0000023226 00000 n +0000023308 00000 n +0000023436 00000 n +0000023564 00000 n +0000023654 00000 n +0000023762 00000 n +0000023843 00000 n +0000023925 00000 n +0000024053 00000 n +0000024143 00000 n +0000024251 00000 n +0000024359 00000 n 0000000015 00000 n 0000014393 00000 n 0000012177 00000 n -0000033810 00000 n -0000035616 00000 n -0000035796 00000 n +0000033917 00000 n +0000035723 00000 n +0000035903 00000 n 0000014606 00000 n 0000014888 00000 n 0000015746 00000 n 0000016157 00000 n -0000016880 00000 n -0000031657 00000 n -0000024486 00000 n -0000031582 00000 n -0000024510 00000 n -0000024949 00000 n -0000031351 00000 n -0000031721 00000 n -0000033988 00000 n -0000035855 00000 n -0000035971 00000 n +0000016987 00000 n +0000031764 00000 n +0000024593 00000 n +0000031689 00000 n +0000024617 00000 n +0000025056 00000 n +0000031458 00000 n +0000031828 00000 n +0000034095 00000 n +0000035962 00000 n +0000036078 00000 n trailer << /Size 103 /Root 101 0 R /Info 102 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -36104 +36211 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-020-rowheader.tpf b/required/latex-lab/testfiles-table-pdftex/table-020-rowheader.tpf index 879868bb4..c558bbe75 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-020-rowheader.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-020-rowheader.tpf @@ -384,7 +384,7 @@ endobj << /Kids [63 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 65 0 obj << /justify <> @@ -403,7 +403,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -746,79 +746,79 @@ xref 0000013913 00000 n 0000013935 00000 n 0000013957 00000 n -0000021318 00000 n +0000021577 00000 n 0000014015 00000 n 0000014833 00000 n -0000017136 00000 n -0000015654 00000 n +0000017395 00000 n +0000015761 00000 n 0000000012 00000 f -0000015722 00000 n +0000015829 00000 n 0000000014 00000 f -0000015792 00000 n +0000015899 00000 n 0000000020 00000 f -0000016672 00000 n -0000015873 00000 n -0000016945 00000 n -0000016774 00000 n -0000017047 00000 n +0000016931 00000 n +0000015980 00000 n +0000017204 00000 n +0000017033 00000 n +0000017306 00000 n 0000000000 00000 f -0000017197 00000 n -0000017295 00000 n -0000017384 00000 n -0000017473 00000 n -0000017593 00000 n -0000013667 00000 n +0000017456 00000 n +0000017554 00000 n +0000017643 00000 n 0000017732 00000 n -0000017851 00000 n -0000017967 00000 n -0000018098 00000 n -0000018202 00000 n -0000018296 00000 n -0000018435 00000 n -0000018565 00000 n -0000018696 00000 n -0000018812 00000 n -0000018942 00000 n -0000019035 00000 n -0000019129 00000 n -0000019268 00000 n -0000019387 00000 n -0000019517 00000 n -0000019633 00000 n -0000019763 00000 n -0000019856 00000 n -0000019950 00000 n -0000020090 00000 n -0000020210 00000 n -0000020341 00000 n -0000020457 00000 n -0000020589 00000 n -0000020693 00000 n -0000020787 00000 n -0000020927 00000 n -0000021058 00000 n -0000021190 00000 n +0000017852 00000 n +0000013667 00000 n +0000017991 00000 n +0000018110 00000 n +0000018226 00000 n +0000018357 00000 n +0000018461 00000 n +0000018555 00000 n +0000018694 00000 n +0000018824 00000 n +0000018955 00000 n +0000019071 00000 n +0000019201 00000 n +0000019294 00000 n +0000019388 00000 n +0000019527 00000 n +0000019646 00000 n +0000019776 00000 n +0000019892 00000 n +0000020022 00000 n +0000020115 00000 n +0000020209 00000 n +0000020349 00000 n +0000020469 00000 n +0000020600 00000 n +0000020716 00000 n +0000020848 00000 n +0000020952 00000 n +0000021046 00000 n +0000021186 00000 n +0000021317 00000 n +0000021449 00000 n 0000000015 00000 n 0000013802 00000 n 0000012182 00000 n -0000034974 00000 n -0000035152 00000 n +0000035233 00000 n +0000035411 00000 n 0000013979 00000 n 0000014177 00000 n 0000014796 00000 n -0000015492 00000 n -0000032781 00000 n -0000021455 00000 n -0000021894 00000 n -0000032540 00000 n -0000032885 00000 n -0000035211 00000 n -0000035326 00000 n +0000015599 00000 n +0000033040 00000 n +0000021714 00000 n +0000022153 00000 n +0000032799 00000 n +0000033144 00000 n +0000035470 00000 n +0000035585 00000 n trailer << /Size 73 /Root 71 0 R /Info 72 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -35458 +35717 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-023-multirow.tpf b/required/latex-lab/testfiles-table-pdftex/table-023-multirow.tpf index 1c1afb961..bc2902473 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-023-multirow.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-023-multirow.tpf @@ -462,7 +462,7 @@ endobj << /Kids [79 0 R 80 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 82 0 obj << /justify <> @@ -882,96 +882,96 @@ xref 0000015125 00000 n 0000015147 00000 n 0000015169 00000 n -0000024326 00000 n +0000024433 00000 n 0000015227 00000 n 0000016670 00000 n 0000000000 00000 f -0000017545 00000 n -0000017639 00000 n -0000017715 00000 n -0000017791 00000 n +0000017652 00000 n +0000017746 00000 n +0000017822 00000 n 0000017898 00000 n +0000018005 00000 n 0000014855 00000 n -0000018025 00000 n 0000018132 00000 n -0000018236 00000 n -0000018355 00000 n -0000018447 00000 n -0000018529 00000 n -0000018656 00000 n -0000018774 00000 n -0000018893 00000 n -0000018997 00000 n -0000019128 00000 n -0000019209 00000 n -0000019291 00000 n -0000019418 00000 n +0000018239 00000 n +0000018343 00000 n +0000018462 00000 n +0000018554 00000 n +0000018636 00000 n +0000018763 00000 n +0000018881 00000 n +0000019000 00000 n +0000019104 00000 n +0000019235 00000 n +0000019316 00000 n +0000019398 00000 n 0000019525 00000 n -0000019643 00000 n -0000019740 00000 n -0000019821 00000 n -0000019903 00000 n -0000020030 00000 n -0000020138 00000 n -0000020257 00000 n -0000020361 00000 n -0000020481 00000 n -0000020573 00000 n -0000020655 00000 n -0000020783 00000 n -0000020902 00000 n -0000021022 00000 n -0000021138 00000 n +0000019632 00000 n +0000019750 00000 n +0000019847 00000 n +0000019928 00000 n +0000020010 00000 n +0000020137 00000 n +0000020245 00000 n +0000020364 00000 n +0000020468 00000 n +0000020588 00000 n +0000020680 00000 n +0000020762 00000 n +0000020890 00000 n +0000021009 00000 n +0000021129 00000 n 0000021245 00000 n -0000021373 00000 n +0000021352 00000 n 0000021480 00000 n -0000021584 00000 n -0000021704 00000 n -0000021796 00000 n -0000021878 00000 n -0000022006 00000 n -0000022125 00000 n -0000022245 00000 n -0000022349 00000 n -0000022468 00000 n -0000022565 00000 n -0000022647 00000 n -0000022775 00000 n -0000022883 00000 n -0000023002 00000 n -0000023099 00000 n -0000023218 00000 n -0000023326 00000 n -0000023445 00000 n -0000023549 00000 n -0000023669 00000 n -0000023761 00000 n -0000023843 00000 n -0000023971 00000 n -0000024090 00000 n -0000024210 00000 n +0000021587 00000 n +0000021691 00000 n +0000021811 00000 n +0000021903 00000 n +0000021985 00000 n +0000022113 00000 n +0000022232 00000 n +0000022352 00000 n +0000022456 00000 n +0000022575 00000 n +0000022672 00000 n +0000022754 00000 n +0000022882 00000 n +0000022990 00000 n +0000023109 00000 n +0000023206 00000 n +0000023325 00000 n +0000023433 00000 n +0000023552 00000 n +0000023656 00000 n +0000023776 00000 n +0000023868 00000 n +0000023950 00000 n +0000024078 00000 n +0000024197 00000 n +0000024317 00000 n 0000000015 00000 n 0000014990 00000 n 0000012181 00000 n -0000038999 00000 n -0000039177 00000 n +0000039106 00000 n +0000039284 00000 n 0000015191 00000 n 0000015501 00000 n 0000016359 00000 n 0000016626 00000 n -0000017349 00000 n -0000036800 00000 n -0000024444 00000 n -0000024883 00000 n -0000036553 00000 n -0000036910 00000 n -0000039236 00000 n -0000039351 00000 n +0000017456 00000 n +0000036907 00000 n +0000024551 00000 n +0000024990 00000 n +0000036660 00000 n +0000037017 00000 n +0000039343 00000 n +0000039458 00000 n trailer << /Size 90 /Root 88 0 R /Info 89 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -39483 +39590 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-024-multirow.tpf b/required/latex-lab/testfiles-table-pdftex/table-024-multirow.tpf index af025415c..83053b55b 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-024-multirow.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-024-multirow.tpf @@ -368,7 +368,7 @@ endobj << /Kids [43 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 45 0 obj << /justify <> @@ -681,59 +681,59 @@ xref 0000013627 00000 n 0000013649 00000 n 0000013671 00000 n -0000018266 00000 n +0000018373 00000 n 0000013729 00000 n 0000014411 00000 n 0000000000 00000 f -0000015320 00000 n -0000015405 00000 n -0000015481 00000 n -0000015557 00000 n +0000015427 00000 n +0000015512 00000 n +0000015588 00000 n 0000015664 00000 n +0000015771 00000 n 0000013357 00000 n -0000015791 00000 n -0000015905 00000 n -0000016009 00000 n -0000016128 00000 n -0000016246 00000 n -0000016364 00000 n -0000016483 00000 n -0000016580 00000 n -0000016722 00000 n +0000015898 00000 n +0000016012 00000 n +0000016116 00000 n +0000016235 00000 n +0000016353 00000 n +0000016471 00000 n +0000016590 00000 n +0000016687 00000 n 0000016829 00000 n 0000016936 00000 n -0000017026 00000 n +0000017043 00000 n 0000017133 00000 n -0000017251 00000 n -0000017341 00000 n -0000017449 00000 n -0000017568 00000 n -0000017672 00000 n -0000017792 00000 n -0000017911 00000 n -0000018030 00000 n -0000018150 00000 n +0000017240 00000 n +0000017358 00000 n +0000017448 00000 n +0000017556 00000 n +0000017675 00000 n +0000017779 00000 n +0000017899 00000 n +0000018018 00000 n +0000018137 00000 n +0000018257 00000 n 0000000015 00000 n 0000013492 00000 n 0000012181 00000 n -0000032939 00000 n -0000033117 00000 n +0000033046 00000 n +0000033224 00000 n 0000013693 00000 n 0000013884 00000 n 0000014374 00000 n -0000015090 00000 n -0000030740 00000 n -0000018384 00000 n -0000018823 00000 n -0000030493 00000 n -0000030850 00000 n -0000033176 00000 n -0000033291 00000 n +0000015197 00000 n +0000030847 00000 n +0000018491 00000 n +0000018930 00000 n +0000030600 00000 n +0000030957 00000 n +0000033283 00000 n +0000033398 00000 n trailer << /Size 53 /Root 51 0 R /Info 52 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -33423 +33530 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-025.tpf b/required/latex-lab/testfiles-table-pdftex/table-025.tpf index 8bb386e5f..95d191632 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-025.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-025.tpf @@ -355,7 +355,7 @@ endobj << /Kids [66 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 68 0 obj << /justify <> @@ -865,85 +865,85 @@ xref 0000013483 00000 n 0000013505 00000 n 0000013527 00000 n -0000020266 00000 n +0000020373 00000 n 0000013585 00000 n 0000014605 00000 n 0000000000 00000 f -0000015491 00000 n -0000015592 00000 n -0000015668 00000 n -0000015744 00000 n +0000015598 00000 n +0000015699 00000 n +0000015775 00000 n 0000015851 00000 n +0000015958 00000 n 0000013201 00000 n -0000015978 00000 n -0000016062 00000 n -0000016152 00000 n -0000016233 00000 n -0000016315 00000 n -0000016442 00000 n -0000016523 00000 n -0000016605 00000 n -0000016732 00000 n -0000016847 00000 n +0000016085 00000 n +0000016169 00000 n +0000016259 00000 n +0000016340 00000 n +0000016422 00000 n +0000016549 00000 n +0000016630 00000 n +0000016712 00000 n +0000016839 00000 n 0000016954 00000 n -0000017081 00000 n -0000017165 00000 n -0000017255 00000 n -0000017336 00000 n -0000017418 00000 n -0000017545 00000 n -0000017616 00000 n -0000017731 00000 n +0000017061 00000 n +0000017188 00000 n +0000017272 00000 n +0000017362 00000 n +0000017443 00000 n +0000017525 00000 n +0000017652 00000 n +0000017723 00000 n 0000017838 00000 n -0000017965 00000 n -0000018065 00000 n -0000018155 00000 n -0000018236 00000 n -0000018318 00000 n -0000018445 00000 n -0000018526 00000 n -0000018608 00000 n -0000018735 00000 n -0000018825 00000 n -0000018896 00000 n -0000018977 00000 n -0000019059 00000 n -0000019187 00000 n -0000019277 00000 n -0000019358 00000 n -0000019440 00000 n -0000019538 00000 n -0000019630 00000 n -0000019745 00000 n -0000019832 00000 n -0000019914 00000 n -0000020042 00000 n -0000020150 00000 n +0000017945 00000 n +0000018072 00000 n +0000018172 00000 n +0000018262 00000 n +0000018343 00000 n +0000018425 00000 n +0000018552 00000 n +0000018633 00000 n +0000018715 00000 n +0000018842 00000 n +0000018932 00000 n +0000019003 00000 n +0000019084 00000 n +0000019166 00000 n +0000019294 00000 n +0000019384 00000 n +0000019465 00000 n +0000019547 00000 n +0000019645 00000 n +0000019737 00000 n +0000019852 00000 n +0000019939 00000 n +0000020021 00000 n +0000020149 00000 n +0000020257 00000 n 0000000015 00000 n 0000013336 00000 n 0000012172 00000 n -0000029770 00000 n -0000031575 00000 n -0000031754 00000 n +0000029877 00000 n +0000031682 00000 n +0000031861 00000 n 0000013549 00000 n 0000013726 00000 n 0000014568 00000 n -0000015284 00000 n -0000027617 00000 n -0000020384 00000 n -0000027534 00000 n -0000020408 00000 n -0000020777 00000 n -0000027301 00000 n -0000027681 00000 n -0000029948 00000 n -0000031813 00000 n -0000031928 00000 n +0000015391 00000 n +0000027724 00000 n +0000020491 00000 n +0000027641 00000 n +0000020515 00000 n +0000020884 00000 n +0000027408 00000 n +0000027788 00000 n +0000030055 00000 n +0000031920 00000 n +0000032035 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -32060 +32167 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-026-minipage-37.tpf b/required/latex-lab/testfiles-table-pdftex/table-026-minipage-37.tpf index 90b11664a..dbfb9c9cc 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-026-minipage-37.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-026-minipage-37.tpf @@ -403,7 +403,7 @@ endobj << /Kids [106 0 R 107 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 109 0 obj << /justify <> @@ -423,7 +423,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -465,7 +465,7 @@ endobj << /Type /StructElem /S /TD /NS 11 0 R /P 28 0 R /K [<> 30 0 R <>] /ID (ID.009) >> endobj 30 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 29 0 R /K 31 0 R /ID (ID.010) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 29 0 R /K 31 0 R /ID (ID.010) >> endobj 31 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 30 0 R /K 32 0 R /ID (ID.011) >> @@ -492,7 +492,7 @@ endobj << /Type /StructElem /S /TD /NS 11 0 R /P 37 0 R /K [<> 39 0 R <>] /ID (ID.018) >> endobj 39 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 38 0 R /K 40 0 R /ID (ID.019) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 38 0 R /K 40 0 R /ID (ID.019) >> endobj 40 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 39 0 R /K 41 0 R /ID (ID.020) >> @@ -534,7 +534,7 @@ endobj << /Type /StructElem /S /TD /NS 11 0 R /P 51 0 R /K [<> 53 0 R <>] /ID (ID.032) >> endobj 53 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 52 0 R /K 54 0 R /ID (ID.033) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 52 0 R /K 54 0 R /ID (ID.033) >> endobj 54 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 53 0 R /K 55 0 R /ID (ID.034) >> @@ -567,7 +567,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 62 0 R /K <> /ID (ID.043) >> endobj 64 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 62 0 R /K 65 0 R /ID (ID.044) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 62 0 R /K 65 0 R /ID (ID.044) >> endobj 65 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 64 0 R /K 66 0 R /ID (ID.045) >> @@ -603,7 +603,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 74 0 R /K <> /ID (ID.055) >> endobj 76 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 74 0 R /K 77 0 R /ID (ID.056) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 74 0 R /K 77 0 R /ID (ID.056) >> endobj 77 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 76 0 R /K 78 0 R /ID (ID.057) >> @@ -654,7 +654,7 @@ endobj << /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 91 0 R /K <> /ID (ID.072) >> endobj 93 0 obj -<< /Type /StructElem /S /Div /NS 11 0 R /P 91 0 R /K 94 0 R /ID (ID.073) >> +<< /Type /StructElem /S /text-minipage /NS 15 0 R /P 91 0 R /K 94 0 R /ID (ID.073) >> endobj 94 0 obj << /Type /StructElem /S /Div /NS 11 0 R /P 93 0 R /K 95 0 R /ID (ID.074) >> @@ -1099,130 +1099,130 @@ xref 0000014528 00000 n 0000014550 00000 n 0000014572 00000 n -0000027385 00000 n +0000027704 00000 n 0000014631 00000 n 0000016274 00000 n -0000018621 00000 n -0000017141 00000 n +0000018880 00000 n +0000017248 00000 n 0000000012 00000 f -0000017209 00000 n +0000017316 00000 n 0000000014 00000 f -0000017279 00000 n +0000017386 00000 n 0000000020 00000 f -0000018159 00000 n -0000017360 00000 n -0000018432 00000 n -0000018261 00000 n -0000018534 00000 n +0000018418 00000 n +0000017467 00000 n +0000018691 00000 n +0000018520 00000 n +0000018793 00000 n 0000000000 00000 f -0000018682 00000 n -0000018817 00000 n -0000018906 00000 n -0000018995 00000 n -0000019115 00000 n -0000014253 00000 n +0000018941 00000 n +0000019076 00000 n +0000019165 00000 n 0000019254 00000 n -0000019350 00000 n -0000019443 00000 n -0000019604 00000 n -0000019698 00000 n -0000019792 00000 n -0000019931 00000 n -0000020058 00000 n -0000020178 00000 n -0000020317 00000 n -0000020413 00000 n -0000020506 00000 n -0000020667 00000 n -0000020761 00000 n -0000020855 00000 n -0000020965 00000 n -0000021069 00000 n -0000021195 00000 n -0000021294 00000 n -0000021388 00000 n -0000021527 00000 n -0000021655 00000 n -0000021775 00000 n -0000021915 00000 n -0000022011 00000 n -0000022104 00000 n -0000022267 00000 n -0000022361 00000 n -0000022455 00000 n -0000022595 00000 n -0000022723 00000 n -0000022843 00000 n -0000022983 00000 n -0000023079 00000 n -0000023172 00000 n -0000023265 00000 n -0000023375 00000 n -0000023515 00000 n -0000023609 00000 n -0000023703 00000 n -0000023843 00000 n -0000023971 00000 n -0000024099 00000 n -0000024219 00000 n -0000024359 00000 n -0000024455 00000 n -0000024548 00000 n -0000024641 00000 n -0000024751 00000 n -0000024891 00000 n -0000024985 00000 n -0000025079 00000 n -0000025189 00000 n -0000025293 00000 n -0000025420 00000 n -0000025519 00000 n -0000025613 00000 n -0000025753 00000 n -0000025881 00000 n -0000026009 00000 n -0000026129 00000 n -0000026269 00000 n -0000026365 00000 n -0000026458 00000 n -0000026551 00000 n -0000026661 00000 n -0000026801 00000 n -0000026895 00000 n -0000026989 00000 n -0000027129 00000 n -0000027257 00000 n +0000019374 00000 n +0000014253 00000 n +0000019513 00000 n +0000019609 00000 n +0000019702 00000 n +0000019863 00000 n +0000019967 00000 n +0000020061 00000 n +0000020200 00000 n +0000020327 00000 n +0000020447 00000 n +0000020586 00000 n +0000020682 00000 n +0000020775 00000 n +0000020936 00000 n +0000021040 00000 n +0000021134 00000 n +0000021244 00000 n +0000021348 00000 n +0000021474 00000 n +0000021573 00000 n +0000021667 00000 n +0000021806 00000 n +0000021934 00000 n +0000022054 00000 n +0000022194 00000 n +0000022290 00000 n +0000022383 00000 n +0000022546 00000 n +0000022650 00000 n +0000022744 00000 n +0000022884 00000 n +0000023012 00000 n +0000023132 00000 n +0000023272 00000 n +0000023368 00000 n +0000023461 00000 n +0000023554 00000 n +0000023664 00000 n +0000023804 00000 n +0000023908 00000 n +0000024002 00000 n +0000024142 00000 n +0000024270 00000 n +0000024398 00000 n +0000024518 00000 n +0000024658 00000 n +0000024754 00000 n +0000024847 00000 n +0000024940 00000 n +0000025050 00000 n +0000025190 00000 n +0000025294 00000 n +0000025388 00000 n +0000025498 00000 n +0000025602 00000 n +0000025729 00000 n +0000025828 00000 n +0000025922 00000 n +0000026062 00000 n +0000026190 00000 n +0000026318 00000 n +0000026438 00000 n +0000026578 00000 n +0000026674 00000 n +0000026767 00000 n +0000026860 00000 n +0000026970 00000 n +0000027110 00000 n +0000027214 00000 n +0000027308 00000 n +0000027448 00000 n +0000027576 00000 n 0000000015 00000 n 0000014390 00000 n 0000012184 00000 n -0000045321 00000 n -0000048014 00000 n -0000046218 00000 n -0000048198 00000 n +0000045640 00000 n +0000048333 00000 n +0000046537 00000 n +0000048517 00000 n 0000014594 00000 n 0000014891 00000 n 0000015751 00000 n 0000016227 00000 n -0000016933 00000 n -0000027524 00000 n -0000043166 00000 n -0000027547 00000 n -0000043062 00000 n -0000027572 00000 n -0000028012 00000 n -0000030677 00000 n -0000030897 00000 n -0000042813 00000 n -0000043231 00000 n -0000045504 00000 n -0000046386 00000 n -0000048258 00000 n -0000048376 00000 n +0000017040 00000 n +0000027843 00000 n +0000043485 00000 n +0000027866 00000 n +0000043381 00000 n +0000027891 00000 n +0000028331 00000 n +0000030996 00000 n +0000031216 00000 n +0000043132 00000 n +0000043550 00000 n +0000045823 00000 n +0000046705 00000 n +0000048577 00000 n +0000048695 00000 n trailer << /Size 124 /Root 122 0 R /Info 123 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -48509 +48828 %%EOF diff --git a/required/latex-lab/testfiles-table-pdftex/table-027-longtable-554.tpf b/required/latex-lab/testfiles-table-pdftex/table-027-longtable-554.tpf index c9d3d7d6c..951ef610b 100644 --- a/required/latex-lab/testfiles-table-pdftex/table-027-longtable-554.tpf +++ b/required/latex-lab/testfiles-table-pdftex/table-027-longtable-554.tpf @@ -377,7 +377,7 @@ endobj << /Kids [40 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 42 0 obj << /TH-both <> @@ -753,60 +753,60 @@ xref 0000014175 00000 n 0000014197 00000 n 0000014219 00000 n -0000018018 00000 n +0000018125 00000 n 0000014277 00000 n 0000014860 00000 n 0000000000 00000 f -0000015660 00000 n -0000015754 00000 n -0000015830 00000 n -0000015906 00000 n -0000016005 00000 n -0000016095 00000 n +0000015767 00000 n +0000015861 00000 n +0000015937 00000 n +0000016013 00000 n +0000016112 00000 n +0000016202 00000 n 0000013893 00000 n -0000016213 00000 n -0000016331 00000 n -0000016421 00000 n -0000016539 00000 n -0000016657 00000 n -0000016747 00000 n +0000016320 00000 n +0000016438 00000 n +0000016528 00000 n +0000016646 00000 n +0000016764 00000 n 0000016854 00000 n 0000016961 00000 n -0000017060 00000 n -0000017150 00000 n -0000017268 00000 n -0000017386 00000 n -0000017476 00000 n -0000017594 00000 n -0000017712 00000 n -0000017802 00000 n -0000017910 00000 n +0000017068 00000 n +0000017167 00000 n +0000017257 00000 n +0000017375 00000 n +0000017493 00000 n +0000017583 00000 n +0000017701 00000 n +0000017819 00000 n +0000017909 00000 n +0000018017 00000 n 0000000015 00000 n 0000014028 00000 n 0000012186 00000 n -0000035369 00000 n -0000036260 00000 n -0000036424 00000 n +0000035476 00000 n +0000036367 00000 n +0000036531 00000 n 0000014241 00000 n 0000014397 00000 n 0000014823 00000 n -0000015539 00000 n -0000018136 00000 n -0000033179 00000 n -0000018158 00000 n -0000018597 00000 n -0000021261 00000 n -0000021479 00000 n -0000032934 00000 n -0000033280 00000 n -0000035547 00000 n -0000036483 00000 n -0000036598 00000 n +0000015646 00000 n +0000018243 00000 n +0000033286 00000 n +0000018265 00000 n +0000018704 00000 n +0000021368 00000 n +0000021586 00000 n +0000033041 00000 n +0000033387 00000 n +0000035654 00000 n +0000036590 00000 n +0000036705 00000 n trailer << /Size 54 /Root 52 0 R /Info 53 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -36730 +36837 %%EOF diff --git a/required/latex-lab/testfiles-title/title-002.luatex.tpf b/required/latex-lab/testfiles-title/title-002.luatex.tpf index 20bc69214..aa92bf96d 100644 --- a/required/latex-lab/testfiles-title/title-002.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-002.luatex.tpf @@ -132,7 +132,7 @@ endobj << /Kids [39 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 41 0 obj << /center <> @@ -1426,82 +1426,82 @@ xref 0000002214 00000 n 0000002236 00000 n 0000002258 00000 n -0000005416 00000 n +0000005523 00000 n 0000002316 00000 n 0000002752 00000 n 0000000000 00000 f -0000003668 00000 n -0000003762 00000 n -0000003838 00000 n -0000003914 00000 n -0000003990 00000 n -0000004104 00000 n -0000004237 00000 n -0000004348 00000 n -0000004476 00000 n -0000004599 00000 n -0000004727 00000 n -0000004855 00000 n -0000004966 00000 n -0000005058 00000 n -0000005192 00000 n -0000005288 00000 n -0000005534 00000 n +0000003775 00000 n +0000003869 00000 n +0000003945 00000 n +0000004021 00000 n +0000004097 00000 n +0000004211 00000 n +0000004344 00000 n +0000004455 00000 n +0000004583 00000 n +0000004706 00000 n +0000004834 00000 n +0000004962 00000 n +0000005073 00000 n +0000005165 00000 n +0000005299 00000 n +0000005395 00000 n +0000005641 00000 n 0000001996 00000 n 0000001861 00000 n 0000000020 00000 n -0000079819 00000 n -0000020180 00000 n -0000087192 00000 n -0000083692 00000 n -0000077877 00000 n -0000085432 00000 n -0000081756 00000 n -0000075936 00000 n -0000087369 00000 n +0000079926 00000 n +0000020287 00000 n +0000087299 00000 n +0000083799 00000 n +0000077984 00000 n +0000085539 00000 n +0000081863 00000 n +0000076043 00000 n +0000087476 00000 n 0000002280 00000 n 0000002401 00000 n 0000002715 00000 n -0000003431 00000 n -0000018013 00000 n -0000018036 00000 n -0000074080 00000 n -0000018149 00000 n -0000018172 00000 n -0000018399 00000 n -0000018498 00000 n -0000018523 00000 n -0000019218 00000 n -0000018555 00000 n -0000018628 00000 n -0000019454 00000 n -0000020334 00000 n -0000020534 00000 n -0000028106 00000 n -0000020677 00000 n -0000038327 00000 n -0000028327 00000 n -0000046776 00000 n -0000038600 00000 n -0000054922 00000 n -0000047006 00000 n -0000065199 00000 n -0000055149 00000 n -0000067387 00000 n -0000065444 00000 n -0000073853 00000 n -0000067614 00000 n -0000074152 00000 n -0000076093 00000 n -0000078035 00000 n -0000079977 00000 n -0000081913 00000 n -0000083849 00000 n -0000085609 00000 n -0000087431 00000 n -0000087546 00000 n +0000003538 00000 n +0000018120 00000 n +0000018143 00000 n +0000074187 00000 n +0000018256 00000 n +0000018279 00000 n +0000018506 00000 n +0000018605 00000 n +0000018630 00000 n +0000019325 00000 n +0000018662 00000 n +0000018735 00000 n +0000019561 00000 n +0000020441 00000 n +0000020641 00000 n +0000028213 00000 n +0000020784 00000 n +0000038434 00000 n +0000028434 00000 n +0000046883 00000 n +0000038707 00000 n +0000055029 00000 n +0000047113 00000 n +0000065306 00000 n +0000055256 00000 n +0000067494 00000 n +0000065551 00000 n +0000073960 00000 n +0000067721 00000 n +0000074259 00000 n +0000076200 00000 n +0000078142 00000 n +0000080084 00000 n +0000082020 00000 n +0000083956 00000 n +0000085716 00000 n +0000087538 00000 n +0000087653 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -87889 +87996 %%EOF diff --git a/required/latex-lab/testfiles-title/title-002.tpf b/required/latex-lab/testfiles-title/title-002.tpf index bb1d098c0..a14b97b63 100644 --- a/required/latex-lab/testfiles-title/title-002.tpf +++ b/required/latex-lab/testfiles-title/title-002.tpf @@ -368,7 +368,7 @@ endobj << /Kids [38 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 40 0 obj << /center <> @@ -1746,81 +1746,81 @@ xref 0000014375 00000 n 0000014397 00000 n 0000014419 00000 n -0000017788 00000 n +0000017895 00000 n 0000014477 00000 n 0000014953 00000 n 0000000000 00000 f -0000015869 00000 n -0000015963 00000 n -0000016039 00000 n -0000016115 00000 n -0000016229 00000 n +0000015976 00000 n +0000016070 00000 n +0000016146 00000 n +0000016222 00000 n +0000016336 00000 n 0000014021 00000 n -0000016392 00000 n -0000016567 00000 n -0000016693 00000 n -0000016814 00000 n -0000016940 00000 n -0000017066 00000 n -0000017177 00000 n -0000017269 00000 n -0000017500 00000 n -0000017661 00000 n +0000016499 00000 n +0000016674 00000 n +0000016800 00000 n +0000016921 00000 n +0000017047 00000 n +0000017173 00000 n +0000017284 00000 n +0000017376 00000 n +0000017607 00000 n +0000017768 00000 n 0000000015 00000 n 0000014156 00000 n 0000012491 00000 n -0000091775 00000 n -0000092666 00000 n -0000096261 00000 n -0000084975 00000 n -0000089508 00000 n -0000094457 00000 n -0000082708 00000 n -0000087242 00000 n -0000096438 00000 n +0000091882 00000 n +0000092773 00000 n +0000096368 00000 n +0000085082 00000 n +0000089615 00000 n +0000094564 00000 n +0000082815 00000 n +0000087349 00000 n +0000096545 00000 n 0000014441 00000 n 0000014618 00000 n 0000014916 00000 n -0000015632 00000 n -0000080394 00000 n -0000017906 00000 n -0000017930 00000 n -0000080550 00000 n -0000018179 00000 n -0000018201 00000 n -0000018674 00000 n -0000018826 00000 n -0000018850 00000 n -0000018872 00000 n -0000019186 00000 n -0000021850 00000 n -0000022068 00000 n -0000024010 00000 n -0000024235 00000 n -0000041822 00000 n -0000042049 00000 n -0000056688 00000 n -0000056927 00000 n -0000058725 00000 n -0000058948 00000 n -0000072125 00000 n -0000072400 00000 n -0000080165 00000 n -0000080619 00000 n -0000082886 00000 n -0000085153 00000 n -0000087419 00000 n -0000089686 00000 n -0000091953 00000 n -0000092830 00000 n -0000094634 00000 n -0000096497 00000 n -0000096612 00000 n +0000015739 00000 n +0000080501 00000 n +0000018013 00000 n +0000018037 00000 n +0000080657 00000 n +0000018286 00000 n +0000018308 00000 n +0000018781 00000 n +0000018933 00000 n +0000018957 00000 n +0000018979 00000 n +0000019293 00000 n +0000021957 00000 n +0000022175 00000 n +0000024117 00000 n +0000024342 00000 n +0000041929 00000 n +0000042156 00000 n +0000056795 00000 n +0000057034 00000 n +0000058832 00000 n +0000059055 00000 n +0000072232 00000 n +0000072507 00000 n +0000080272 00000 n +0000080726 00000 n +0000082993 00000 n +0000085260 00000 n +0000087526 00000 n +0000089793 00000 n +0000092060 00000 n +0000092937 00000 n +0000094741 00000 n +0000096604 00000 n +0000096719 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -96955 +97062 %%EOF diff --git a/required/latex-lab/testfiles-title/title-003.luatex.tpf b/required/latex-lab/testfiles-title/title-003.luatex.tpf index a4c888ab7..581ea8cfd 100644 --- a/required/latex-lab/testfiles-title/title-003.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-003.luatex.tpf @@ -120,7 +120,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /center <> @@ -141,7 +141,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1062,78 +1062,78 @@ xref 0000002002 00000 n 0000002024 00000 n 0000002046 00000 n -0000007050 00000 n +0000007309 00000 n 0000002104 00000 n 0000002557 00000 n -0000004935 00000 n -0000003453 00000 n +0000005194 00000 n +0000003560 00000 n 0000000012 00000 f -0000003521 00000 n +0000003628 00000 n 0000000014 00000 f -0000003591 00000 n +0000003698 00000 n 0000000020 00000 f -0000004471 00000 n -0000003672 00000 n -0000004744 00000 n -0000004573 00000 n -0000004846 00000 n +0000004730 00000 n +0000003779 00000 n +0000005003 00000 n +0000004832 00000 n +0000005105 00000 n 0000000000 00000 f -0000004996 00000 n -0000005103 00000 n -0000005192 00000 n -0000005281 00000 n -0000005370 00000 n -0000005490 00000 n -0000005595 00000 n -0000005745 00000 n -0000005868 00000 n -0000006008 00000 n -0000006148 00000 n -0000006288 00000 n -0000006428 00000 n -0000006552 00000 n -0000006656 00000 n -0000006802 00000 n -0000006910 00000 n -0000007187 00000 n +0000005255 00000 n +0000005362 00000 n +0000005451 00000 n +0000005540 00000 n +0000005629 00000 n +0000005749 00000 n +0000005854 00000 n +0000006004 00000 n +0000006127 00000 n +0000006267 00000 n +0000006407 00000 n +0000006547 00000 n +0000006687 00000 n +0000006811 00000 n +0000006915 00000 n +0000007061 00000 n +0000007169 00000 n +0000007446 00000 n 0000001844 00000 n 0000001709 00000 n 0000000020 00000 n -0000062692 00000 n -0000021632 00000 n -0000060750 00000 n -0000066564 00000 n -0000064629 00000 n -0000066721 00000 n +0000062951 00000 n +0000021891 00000 n +0000061009 00000 n +0000066823 00000 n +0000064888 00000 n +0000066980 00000 n 0000002068 00000 n 0000002189 00000 n 0000002520 00000 n -0000003216 00000 n -0000019666 00000 n -0000019691 00000 n -0000019836 00000 n -0000020063 00000 n -0000020685 00000 n +0000003323 00000 n +0000019925 00000 n +0000019950 00000 n 0000020095 00000 n -0000020906 00000 n -0000021786 00000 n -0000021986 00000 n -0000032129 00000 n -0000022129 00000 n -0000040509 00000 n -0000032333 00000 n -0000048136 00000 n -0000040713 00000 n -0000058762 00000 n -0000048340 00000 n -0000058966 00000 n -0000060908 00000 n -0000062850 00000 n -0000064785 00000 n -0000066783 00000 n -0000066898 00000 n +0000020322 00000 n +0000020944 00000 n +0000020354 00000 n +0000021165 00000 n +0000022045 00000 n +0000022245 00000 n +0000032388 00000 n +0000022388 00000 n +0000040768 00000 n +0000032592 00000 n +0000048395 00000 n +0000040972 00000 n +0000059021 00000 n +0000048599 00000 n +0000059225 00000 n +0000061167 00000 n +0000063109 00000 n +0000065044 00000 n +0000067042 00000 n +0000067157 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -67241 +67500 %%EOF diff --git a/required/latex-lab/testfiles-title/title-003.tpf b/required/latex-lab/testfiles-title/title-003.tpf index 1ac145e62..d19f4ce47 100644 --- a/required/latex-lab/testfiles-title/title-003.tpf +++ b/required/latex-lab/testfiles-title/title-003.tpf @@ -360,7 +360,7 @@ endobj << /Kids [48 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 50 0 obj << /center <> @@ -381,7 +381,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1300,80 +1300,80 @@ xref 0000014212 00000 n 0000014234 00000 n 0000014256 00000 n -0000019458 00000 n +0000019717 00000 n 0000014314 00000 n 0000014807 00000 n -0000017185 00000 n -0000015703 00000 n +0000017444 00000 n +0000015810 00000 n 0000000012 00000 f -0000015771 00000 n +0000015878 00000 n 0000000014 00000 f -0000015841 00000 n +0000015948 00000 n 0000000020 00000 f -0000016721 00000 n -0000015922 00000 n -0000016994 00000 n -0000016823 00000 n -0000017096 00000 n +0000016980 00000 n +0000016029 00000 n +0000017253 00000 n +0000017082 00000 n +0000017355 00000 n 0000000000 00000 f -0000017246 00000 n -0000017353 00000 n -0000017442 00000 n -0000017531 00000 n -0000017651 00000 n -0000017756 00000 n +0000017505 00000 n +0000017612 00000 n +0000017701 00000 n +0000017790 00000 n +0000017910 00000 n +0000018015 00000 n 0000013918 00000 n -0000017936 00000 n -0000018123 00000 n -0000018261 00000 n -0000018399 00000 n -0000018537 00000 n -0000018675 00000 n -0000018799 00000 n -0000018903 00000 n -0000019146 00000 n -0000019319 00000 n +0000018195 00000 n +0000018382 00000 n +0000018520 00000 n +0000018658 00000 n +0000018796 00000 n +0000018934 00000 n +0000019058 00000 n +0000019162 00000 n +0000019405 00000 n +0000019578 00000 n 0000000015 00000 n 0000014053 00000 n 0000012491 00000 n -0000083808 00000 n -0000084699 00000 n -0000081541 00000 n -0000079274 00000 n -0000077008 00000 n -0000084863 00000 n +0000084067 00000 n +0000084958 00000 n +0000081800 00000 n +0000079533 00000 n +0000077267 00000 n +0000085122 00000 n 0000014278 00000 n 0000014455 00000 n 0000014770 00000 n -0000015466 00000 n -0000074763 00000 n -0000019595 00000 n -0000019617 00000 n -0000019884 00000 n -0000020357 00000 n -0000020379 00000 n -0000020693 00000 n -0000023357 00000 n -0000023575 00000 n -0000038241 00000 n -0000038464 00000 n -0000053458 00000 n -0000053701 00000 n -0000066507 00000 n -0000066769 00000 n -0000074534 00000 n -0000074919 00000 n -0000077185 00000 n -0000079452 00000 n -0000081719 00000 n -0000083986 00000 n -0000084922 00000 n -0000085037 00000 n +0000015573 00000 n +0000075022 00000 n +0000019854 00000 n +0000019876 00000 n +0000020143 00000 n +0000020616 00000 n +0000020638 00000 n +0000020952 00000 n +0000023616 00000 n +0000023834 00000 n +0000038500 00000 n +0000038723 00000 n +0000053717 00000 n +0000053960 00000 n +0000066766 00000 n +0000067028 00000 n +0000074793 00000 n +0000075178 00000 n +0000077444 00000 n +0000079711 00000 n +0000081978 00000 n +0000084245 00000 n +0000085181 00000 n +0000085296 00000 n trailer << /Size 74 /Root 72 0 R /Info 73 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -85380 +85639 %%EOF diff --git a/required/latex-lab/testfiles-title/title-004.luatex.tpf b/required/latex-lab/testfiles-title/title-004.luatex.tpf index d59f96d7c..16988c766 100644 --- a/required/latex-lab/testfiles-title/title-004.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-004.luatex.tpf @@ -132,7 +132,7 @@ endobj << /Kids [39 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 41 0 obj << /center <> @@ -1426,82 +1426,82 @@ xref 0000002214 00000 n 0000002236 00000 n 0000002258 00000 n -0000005416 00000 n +0000005523 00000 n 0000002316 00000 n 0000002752 00000 n 0000000000 00000 f -0000003668 00000 n -0000003762 00000 n -0000003838 00000 n -0000003914 00000 n -0000003990 00000 n -0000004104 00000 n -0000004237 00000 n -0000004348 00000 n -0000004476 00000 n -0000004599 00000 n -0000004727 00000 n -0000004855 00000 n -0000004966 00000 n -0000005058 00000 n -0000005192 00000 n -0000005288 00000 n -0000005534 00000 n +0000003775 00000 n +0000003869 00000 n +0000003945 00000 n +0000004021 00000 n +0000004097 00000 n +0000004211 00000 n +0000004344 00000 n +0000004455 00000 n +0000004583 00000 n +0000004706 00000 n +0000004834 00000 n +0000004962 00000 n +0000005073 00000 n +0000005165 00000 n +0000005299 00000 n +0000005395 00000 n +0000005641 00000 n 0000001996 00000 n 0000001861 00000 n 0000000020 00000 n -0000079803 00000 n -0000020164 00000 n -0000087176 00000 n -0000083676 00000 n -0000077861 00000 n -0000085416 00000 n -0000081740 00000 n -0000075920 00000 n -0000087353 00000 n +0000079910 00000 n +0000020271 00000 n +0000087283 00000 n +0000083783 00000 n +0000077968 00000 n +0000085523 00000 n +0000081847 00000 n +0000076027 00000 n +0000087460 00000 n 0000002280 00000 n 0000002401 00000 n 0000002715 00000 n -0000003431 00000 n -0000017997 00000 n -0000018020 00000 n -0000074064 00000 n -0000018133 00000 n -0000018156 00000 n -0000018383 00000 n -0000018482 00000 n -0000018507 00000 n -0000019202 00000 n -0000018539 00000 n -0000018612 00000 n -0000019438 00000 n -0000020318 00000 n -0000020518 00000 n -0000028090 00000 n -0000020661 00000 n -0000038311 00000 n -0000028311 00000 n -0000046760 00000 n -0000038584 00000 n -0000054906 00000 n -0000046990 00000 n -0000065183 00000 n -0000055133 00000 n -0000067371 00000 n -0000065428 00000 n -0000073837 00000 n -0000067598 00000 n -0000074136 00000 n -0000076077 00000 n -0000078019 00000 n -0000079961 00000 n -0000081897 00000 n -0000083833 00000 n -0000085593 00000 n -0000087415 00000 n -0000087530 00000 n +0000003538 00000 n +0000018104 00000 n +0000018127 00000 n +0000074171 00000 n +0000018240 00000 n +0000018263 00000 n +0000018490 00000 n +0000018589 00000 n +0000018614 00000 n +0000019309 00000 n +0000018646 00000 n +0000018719 00000 n +0000019545 00000 n +0000020425 00000 n +0000020625 00000 n +0000028197 00000 n +0000020768 00000 n +0000038418 00000 n +0000028418 00000 n +0000046867 00000 n +0000038691 00000 n +0000055013 00000 n +0000047097 00000 n +0000065290 00000 n +0000055240 00000 n +0000067478 00000 n +0000065535 00000 n +0000073944 00000 n +0000067705 00000 n +0000074243 00000 n +0000076184 00000 n +0000078126 00000 n +0000080068 00000 n +0000082004 00000 n +0000083940 00000 n +0000085700 00000 n +0000087522 00000 n +0000087637 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -87833 +87940 %%EOF diff --git a/required/latex-lab/testfiles-title/title-004.tpf b/required/latex-lab/testfiles-title/title-004.tpf index 726868e31..500ecc705 100644 --- a/required/latex-lab/testfiles-title/title-004.tpf +++ b/required/latex-lab/testfiles-title/title-004.tpf @@ -368,7 +368,7 @@ endobj << /Kids [38 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 40 0 obj << /center <> @@ -1746,81 +1746,81 @@ xref 0000014359 00000 n 0000014381 00000 n 0000014403 00000 n -0000017772 00000 n +0000017879 00000 n 0000014461 00000 n 0000014937 00000 n 0000000000 00000 f -0000015853 00000 n -0000015947 00000 n -0000016023 00000 n -0000016099 00000 n -0000016213 00000 n +0000015960 00000 n +0000016054 00000 n +0000016130 00000 n +0000016206 00000 n +0000016320 00000 n 0000014005 00000 n -0000016376 00000 n -0000016551 00000 n -0000016677 00000 n -0000016798 00000 n -0000016924 00000 n -0000017050 00000 n -0000017161 00000 n -0000017253 00000 n -0000017484 00000 n -0000017645 00000 n +0000016483 00000 n +0000016658 00000 n +0000016784 00000 n +0000016905 00000 n +0000017031 00000 n +0000017157 00000 n +0000017268 00000 n +0000017360 00000 n +0000017591 00000 n +0000017752 00000 n 0000000015 00000 n 0000014140 00000 n 0000012475 00000 n -0000091759 00000 n -0000092650 00000 n -0000096245 00000 n -0000084959 00000 n -0000089492 00000 n -0000094441 00000 n -0000082692 00000 n -0000087226 00000 n -0000096422 00000 n +0000091866 00000 n +0000092757 00000 n +0000096352 00000 n +0000085066 00000 n +0000089599 00000 n +0000094548 00000 n +0000082799 00000 n +0000087333 00000 n +0000096529 00000 n 0000014425 00000 n 0000014602 00000 n 0000014900 00000 n -0000015616 00000 n -0000080378 00000 n -0000017890 00000 n -0000017914 00000 n -0000080534 00000 n -0000018163 00000 n -0000018185 00000 n -0000018658 00000 n -0000018810 00000 n -0000018834 00000 n -0000018856 00000 n -0000019170 00000 n -0000021834 00000 n -0000022052 00000 n -0000023994 00000 n -0000024219 00000 n -0000041806 00000 n -0000042033 00000 n -0000056672 00000 n -0000056911 00000 n -0000058709 00000 n -0000058932 00000 n -0000072109 00000 n -0000072384 00000 n -0000080149 00000 n -0000080603 00000 n -0000082870 00000 n -0000085137 00000 n -0000087403 00000 n -0000089670 00000 n -0000091937 00000 n -0000092814 00000 n -0000094618 00000 n -0000096481 00000 n -0000096596 00000 n +0000015723 00000 n +0000080485 00000 n +0000017997 00000 n +0000018021 00000 n +0000080641 00000 n +0000018270 00000 n +0000018292 00000 n +0000018765 00000 n +0000018917 00000 n +0000018941 00000 n +0000018963 00000 n +0000019277 00000 n +0000021941 00000 n +0000022159 00000 n +0000024101 00000 n +0000024326 00000 n +0000041913 00000 n +0000042140 00000 n +0000056779 00000 n +0000057018 00000 n +0000058816 00000 n +0000059039 00000 n +0000072216 00000 n +0000072491 00000 n +0000080256 00000 n +0000080710 00000 n +0000082977 00000 n +0000085244 00000 n +0000087510 00000 n +0000089777 00000 n +0000092044 00000 n +0000092921 00000 n +0000094725 00000 n +0000096588 00000 n +0000096703 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -96899 +97006 %%EOF diff --git a/required/latex-lab/testfiles-title/title-005.luatex.tpf b/required/latex-lab/testfiles-title/title-005.luatex.tpf index 237dbb9f4..93e8a68f1 100644 --- a/required/latex-lab/testfiles-title/title-005.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-005.luatex.tpf @@ -132,7 +132,7 @@ endobj << /Kids [39 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 41 0 obj << /center <> @@ -1427,82 +1427,82 @@ xref 0000002214 00000 n 0000002236 00000 n 0000002258 00000 n -0000005416 00000 n +0000005523 00000 n 0000002316 00000 n 0000002752 00000 n 0000000000 00000 f -0000003668 00000 n -0000003762 00000 n -0000003838 00000 n -0000003914 00000 n -0000003990 00000 n -0000004104 00000 n -0000004237 00000 n -0000004348 00000 n -0000004476 00000 n -0000004599 00000 n -0000004727 00000 n -0000004855 00000 n -0000004966 00000 n -0000005058 00000 n -0000005192 00000 n -0000005288 00000 n -0000005534 00000 n +0000003775 00000 n +0000003869 00000 n +0000003945 00000 n +0000004021 00000 n +0000004097 00000 n +0000004211 00000 n +0000004344 00000 n +0000004455 00000 n +0000004583 00000 n +0000004706 00000 n +0000004834 00000 n +0000004962 00000 n +0000005073 00000 n +0000005165 00000 n +0000005299 00000 n +0000005395 00000 n +0000005641 00000 n 0000001996 00000 n 0000001861 00000 n 0000000020 00000 n -0000079823 00000 n -0000020184 00000 n -0000087196 00000 n -0000083696 00000 n -0000077881 00000 n -0000085436 00000 n -0000081760 00000 n -0000075940 00000 n -0000087373 00000 n +0000079930 00000 n +0000020291 00000 n +0000087303 00000 n +0000083803 00000 n +0000077988 00000 n +0000085543 00000 n +0000081867 00000 n +0000076047 00000 n +0000087480 00000 n 0000002280 00000 n 0000002401 00000 n 0000002715 00000 n -0000003431 00000 n -0000018017 00000 n -0000018040 00000 n -0000074084 00000 n -0000018153 00000 n -0000018176 00000 n -0000018403 00000 n -0000018502 00000 n -0000018527 00000 n -0000019222 00000 n -0000018559 00000 n -0000018632 00000 n -0000019458 00000 n -0000020338 00000 n -0000020538 00000 n -0000028110 00000 n -0000020681 00000 n -0000038331 00000 n -0000028331 00000 n -0000046780 00000 n -0000038604 00000 n -0000054926 00000 n -0000047010 00000 n -0000065203 00000 n -0000055153 00000 n -0000067391 00000 n -0000065448 00000 n -0000073857 00000 n -0000067618 00000 n -0000074156 00000 n -0000076097 00000 n -0000078039 00000 n -0000079981 00000 n -0000081917 00000 n -0000083853 00000 n -0000085613 00000 n -0000087435 00000 n -0000087550 00000 n +0000003538 00000 n +0000018124 00000 n +0000018147 00000 n +0000074191 00000 n +0000018260 00000 n +0000018283 00000 n +0000018510 00000 n +0000018609 00000 n +0000018634 00000 n +0000019329 00000 n +0000018666 00000 n +0000018739 00000 n +0000019565 00000 n +0000020445 00000 n +0000020645 00000 n +0000028217 00000 n +0000020788 00000 n +0000038438 00000 n +0000028438 00000 n +0000046887 00000 n +0000038711 00000 n +0000055033 00000 n +0000047117 00000 n +0000065310 00000 n +0000055260 00000 n +0000067498 00000 n +0000065555 00000 n +0000073964 00000 n +0000067725 00000 n +0000074263 00000 n +0000076204 00000 n +0000078146 00000 n +0000080088 00000 n +0000082024 00000 n +0000083960 00000 n +0000085720 00000 n +0000087542 00000 n +0000087657 00000 n trailer << /Size 79 /Root 77 0 R /Info 78 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -87809 +87916 %%EOF diff --git a/required/latex-lab/testfiles-title/title-005.tpf b/required/latex-lab/testfiles-title/title-005.tpf index 2b95a11d5..e6b29d40b 100644 --- a/required/latex-lab/testfiles-title/title-005.tpf +++ b/required/latex-lab/testfiles-title/title-005.tpf @@ -369,7 +369,7 @@ endobj << /Kids [38 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 40 0 obj << /center <> @@ -1747,81 +1747,81 @@ xref 0000014379 00000 n 0000014401 00000 n 0000014423 00000 n -0000017792 00000 n +0000017899 00000 n 0000014481 00000 n 0000014957 00000 n 0000000000 00000 f -0000015873 00000 n -0000015967 00000 n -0000016043 00000 n -0000016119 00000 n -0000016233 00000 n +0000015980 00000 n +0000016074 00000 n +0000016150 00000 n +0000016226 00000 n +0000016340 00000 n 0000014025 00000 n -0000016396 00000 n -0000016571 00000 n -0000016697 00000 n -0000016818 00000 n -0000016944 00000 n -0000017070 00000 n -0000017181 00000 n -0000017273 00000 n -0000017504 00000 n -0000017665 00000 n +0000016503 00000 n +0000016678 00000 n +0000016804 00000 n +0000016925 00000 n +0000017051 00000 n +0000017177 00000 n +0000017288 00000 n +0000017380 00000 n +0000017611 00000 n +0000017772 00000 n 0000000015 00000 n 0000014160 00000 n 0000012495 00000 n -0000091779 00000 n -0000092670 00000 n -0000096265 00000 n -0000084979 00000 n -0000089512 00000 n -0000094461 00000 n -0000082712 00000 n -0000087246 00000 n -0000096442 00000 n +0000091886 00000 n +0000092777 00000 n +0000096372 00000 n +0000085086 00000 n +0000089619 00000 n +0000094568 00000 n +0000082819 00000 n +0000087353 00000 n +0000096549 00000 n 0000014445 00000 n 0000014622 00000 n 0000014920 00000 n -0000015636 00000 n -0000080398 00000 n -0000017910 00000 n -0000017934 00000 n -0000080554 00000 n -0000018183 00000 n -0000018205 00000 n -0000018678 00000 n -0000018830 00000 n -0000018854 00000 n -0000018876 00000 n -0000019190 00000 n -0000021854 00000 n -0000022072 00000 n -0000024014 00000 n -0000024239 00000 n -0000041826 00000 n -0000042053 00000 n -0000056692 00000 n -0000056931 00000 n -0000058729 00000 n -0000058952 00000 n -0000072129 00000 n -0000072404 00000 n -0000080169 00000 n -0000080623 00000 n -0000082890 00000 n -0000085157 00000 n -0000087423 00000 n -0000089690 00000 n -0000091957 00000 n -0000092834 00000 n -0000094638 00000 n -0000096501 00000 n -0000096616 00000 n +0000015743 00000 n +0000080505 00000 n +0000018017 00000 n +0000018041 00000 n +0000080661 00000 n +0000018290 00000 n +0000018312 00000 n +0000018785 00000 n +0000018937 00000 n +0000018961 00000 n +0000018983 00000 n +0000019297 00000 n +0000021961 00000 n +0000022179 00000 n +0000024121 00000 n +0000024346 00000 n +0000041933 00000 n +0000042160 00000 n +0000056799 00000 n +0000057038 00000 n +0000058836 00000 n +0000059059 00000 n +0000072236 00000 n +0000072511 00000 n +0000080276 00000 n +0000080730 00000 n +0000082997 00000 n +0000085264 00000 n +0000087530 00000 n +0000089797 00000 n +0000092064 00000 n +0000092941 00000 n +0000094745 00000 n +0000096608 00000 n +0000096723 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -96875 +96982 %%EOF diff --git a/required/latex-lab/testfiles-title/title-006.luatex.tpf b/required/latex-lab/testfiles-title/title-006.luatex.tpf index c5c9179e0..30ea5da65 100644 --- a/required/latex-lab/testfiles-title/title-006.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-006.luatex.tpf @@ -160,7 +160,7 @@ endobj << /Kids [48 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 50 0 obj << /center <> @@ -1085,30 +1085,30 @@ xref 0000002872 00000 n 0000002894 00000 n 0000002916 00000 n -0000006313 00000 n +0000006420 00000 n 0000002974 00000 n 0000003457 00000 n 0000000000 00000 f 0000001833 00000 n -0000004373 00000 n -0000004468 00000 n -0000004545 00000 n -0000004622 00000 n -0000004699 00000 n -0000004814 00000 n -0000004946 00000 n -0000005057 00000 n +0000004480 00000 n +0000004575 00000 n +0000004652 00000 n +0000004729 00000 n +0000004806 00000 n +0000004921 00000 n +0000005053 00000 n +0000005164 00000 n 0000002009 00000 n -0000005217 00000 n -0000005344 00000 n -0000005466 00000 n -0000005593 00000 n -0000005720 00000 n -0000005832 00000 n -0000005924 00000 n -0000006090 00000 n -0000006186 00000 n -0000006432 00000 n +0000005324 00000 n +0000005451 00000 n +0000005573 00000 n +0000005700 00000 n +0000005827 00000 n +0000005939 00000 n +0000006031 00000 n +0000006197 00000 n +0000006293 00000 n +0000006539 00000 n 0000000020 00000 n 0000002690 00000 n 0000000073 00000 n @@ -1116,49 +1116,49 @@ xref 0000002296 00000 n 0000002348 00000 n 0000002409 00000 n -0000062191 00000 n -0000020973 00000 n -0000060249 00000 n -0000066063 00000 n +0000062298 00000 n +0000021080 00000 n +0000060356 00000 n +0000066170 00000 n 0000002462 00000 n 0000002523 00000 n 0000002576 00000 n 0000002637 00000 n -0000064128 00000 n -0000066220 00000 n +0000064235 00000 n +0000066327 00000 n 0000001982 00000 n 0000002938 00000 n 0000003089 00000 n 0000003420 00000 n -0000004136 00000 n -0000018919 00000 n -0000018944 00000 n -0000019089 00000 n -0000019316 00000 n -0000020011 00000 n -0000019348 00000 n -0000019421 00000 n -0000020247 00000 n -0000021127 00000 n -0000021327 00000 n -0000031470 00000 n -0000021470 00000 n -0000039919 00000 n -0000031743 00000 n -0000047572 00000 n -0000040149 00000 n -0000058214 00000 n -0000047792 00000 n -0000058465 00000 n -0000060407 00000 n -0000062349 00000 n -0000064284 00000 n -0000066281 00000 n -0000066424 00000 n -0000066460 00000 n -0000066699 00000 n +0000004243 00000 n +0000019026 00000 n +0000019051 00000 n +0000019196 00000 n +0000019423 00000 n +0000020118 00000 n +0000019455 00000 n +0000019528 00000 n +0000020354 00000 n +0000021234 00000 n +0000021434 00000 n +0000031577 00000 n +0000021577 00000 n +0000040026 00000 n +0000031850 00000 n +0000047679 00000 n +0000040256 00000 n +0000058321 00000 n +0000047899 00000 n +0000058572 00000 n +0000060514 00000 n +0000062456 00000 n +0000064391 00000 n +0000066388 00000 n +0000066531 00000 n +0000066567 00000 n +0000066806 00000 n trailer << /Size 77 /Root 75 0 R /Info 76 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -67107 +67214 %%EOF diff --git a/required/latex-lab/testfiles-title/title-006.tpf b/required/latex-lab/testfiles-title/title-006.tpf index 1ae7e2aec..da4bcbb1c 100644 --- a/required/latex-lab/testfiles-title/title-006.tpf +++ b/required/latex-lab/testfiles-title/title-006.tpf @@ -411,7 +411,7 @@ endobj << /Kids [46 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /NonStruct >> endobj 48 0 obj << /center <> @@ -1336,29 +1336,29 @@ xref 0000014996 00000 n 0000015018 00000 n 0000015040 00000 n -0000018597 00000 n +0000018704 00000 n 0000015098 00000 n 0000015614 00000 n 0000000000 00000 f 0000014020 00000 n -0000016530 00000 n -0000016625 00000 n -0000016702 00000 n -0000016779 00000 n -0000016894 00000 n -0000017055 00000 n -0000017228 00000 n +0000016637 00000 n +0000016732 00000 n +0000016809 00000 n +0000016886 00000 n +0000017001 00000 n +0000017162 00000 n +0000017335 00000 n 0000014173 00000 n -0000017384 00000 n +0000017491 00000 n 0000000015 00000 n -0000017509 00000 n -0000017629 00000 n -0000017754 00000 n -0000017879 00000 n -0000017991 00000 n -0000018083 00000 n -0000018311 00000 n -0000018471 00000 n +0000017616 00000 n +0000017736 00000 n +0000017861 00000 n +0000017986 00000 n +0000018098 00000 n +0000018190 00000 n +0000018418 00000 n +0000018578 00000 n 0000000068 00000 n 0000014813 00000 n 0000012552 00000 n @@ -1366,50 +1366,50 @@ xref 0000014433 00000 n 0000014483 00000 n 0000014542 00000 n -0000082929 00000 n -0000083820 00000 n -0000080662 00000 n -0000078395 00000 n +0000083036 00000 n +0000083927 00000 n +0000080769 00000 n +0000078502 00000 n 0000014593 00000 n 0000014652 00000 n 0000014703 00000 n 0000014762 00000 n -0000076129 00000 n -0000083984 00000 n +0000076236 00000 n +0000084091 00000 n 0000015062 00000 n 0000015262 00000 n 0000015577 00000 n -0000016293 00000 n -0000073884 00000 n -0000018716 00000 n -0000018738 00000 n -0000019005 00000 n -0000019478 00000 n -0000019500 00000 n -0000019814 00000 n -0000022478 00000 n -0000022696 00000 n -0000037362 00000 n -0000037585 00000 n -0000052579 00000 n -0000052822 00000 n -0000065628 00000 n -0000065890 00000 n -0000073655 00000 n -0000074040 00000 n -0000076306 00000 n -0000078573 00000 n -0000080840 00000 n -0000083107 00000 n -0000084042 00000 n -0000084181 00000 n -0000084217 00000 n -0000084456 00000 n +0000016400 00000 n +0000073991 00000 n +0000018823 00000 n +0000018845 00000 n +0000019112 00000 n +0000019585 00000 n +0000019607 00000 n +0000019921 00000 n +0000022585 00000 n +0000022803 00000 n +0000037469 00000 n +0000037692 00000 n +0000052686 00000 n +0000052929 00000 n +0000065735 00000 n +0000065997 00000 n +0000073762 00000 n +0000074147 00000 n +0000076413 00000 n +0000078680 00000 n +0000080947 00000 n +0000083214 00000 n +0000084149 00000 n +0000084288 00000 n +0000084324 00000 n +0000084563 00000 n trailer << /Size 74 /Root 72 0 R /Info 73 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -84864 +84971 %%EOF diff --git a/required/latex-lab/testfiles-title/title-007.luatex.tpf b/required/latex-lab/testfiles-title/title-007.luatex.tpf index ea33b127b..ddc46f7c2 100644 --- a/required/latex-lab/testfiles-title/title-007.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-007.luatex.tpf @@ -132,7 +132,7 @@ endobj << /Kids [52 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 54 0 obj << /center <> @@ -153,7 +153,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1452,94 +1452,94 @@ xref 0000002200 00000 n 0000002222 00000 n 0000002244 00000 n -0000007246 00000 n +0000007505 00000 n 0000002302 00000 n 0000002755 00000 n -0000005131 00000 n -0000003651 00000 n +0000005390 00000 n +0000003758 00000 n 0000000012 00000 f -0000003719 00000 n +0000003826 00000 n 0000000014 00000 f -0000003789 00000 n +0000003896 00000 n 0000000020 00000 f -0000004669 00000 n -0000003870 00000 n -0000004942 00000 n -0000004771 00000 n -0000005044 00000 n +0000004928 00000 n +0000003977 00000 n +0000005201 00000 n +0000005030 00000 n +0000005303 00000 n 0000000000 00000 f -0000005192 00000 n -0000005299 00000 n -0000005388 00000 n -0000005477 00000 n -0000005566 00000 n -0000005686 00000 n -0000005791 00000 n -0000005941 00000 n -0000006064 00000 n -0000006204 00000 n -0000006344 00000 n -0000006484 00000 n -0000006624 00000 n -0000006748 00000 n -0000006852 00000 n -0000006998 00000 n -0000007106 00000 n -0000007383 00000 n +0000005451 00000 n +0000005558 00000 n +0000005647 00000 n +0000005736 00000 n +0000005825 00000 n +0000005945 00000 n +0000006050 00000 n +0000006200 00000 n +0000006323 00000 n +0000006463 00000 n +0000006603 00000 n +0000006743 00000 n +0000006883 00000 n +0000007007 00000 n +0000007111 00000 n +0000007257 00000 n +0000007365 00000 n +0000007642 00000 n 0000002006 00000 n 0000001871 00000 n 0000000020 00000 n -0000081355 00000 n -0000021941 00000 n -0000088728 00000 n -0000085228 00000 n -0000079413 00000 n -0000086968 00000 n -0000083292 00000 n -0000077472 00000 n -0000088905 00000 n +0000081614 00000 n +0000022200 00000 n +0000088987 00000 n +0000085487 00000 n +0000079672 00000 n +0000087227 00000 n +0000083551 00000 n +0000077731 00000 n +0000089164 00000 n 0000002266 00000 n 0000002387 00000 n 0000002718 00000 n -0000003414 00000 n -0000019862 00000 n -0000019885 00000 n -0000075616 00000 n -0000019998 00000 n -0000020021 00000 n -0000020248 00000 n -0000020347 00000 n -0000020372 00000 n -0000020994 00000 n -0000020404 00000 n -0000021215 00000 n -0000022095 00000 n -0000022295 00000 n -0000029867 00000 n -0000022438 00000 n -0000040072 00000 n -0000030072 00000 n -0000048452 00000 n -0000040276 00000 n -0000056572 00000 n -0000048656 00000 n -0000066826 00000 n -0000056776 00000 n -0000068973 00000 n -0000067030 00000 n -0000075414 00000 n -0000069175 00000 n -0000075688 00000 n -0000077629 00000 n -0000079571 00000 n -0000081513 00000 n -0000083449 00000 n -0000085385 00000 n -0000087145 00000 n -0000088967 00000 n -0000089082 00000 n +0000003521 00000 n +0000020121 00000 n +0000020144 00000 n +0000075875 00000 n +0000020257 00000 n +0000020280 00000 n +0000020507 00000 n +0000020606 00000 n +0000020631 00000 n +0000021253 00000 n +0000020663 00000 n +0000021474 00000 n +0000022354 00000 n +0000022554 00000 n +0000030126 00000 n +0000022697 00000 n +0000040331 00000 n +0000030331 00000 n +0000048711 00000 n +0000040535 00000 n +0000056831 00000 n +0000048915 00000 n +0000067085 00000 n +0000057035 00000 n +0000069232 00000 n +0000067289 00000 n +0000075673 00000 n +0000069434 00000 n +0000075947 00000 n +0000077888 00000 n +0000079830 00000 n +0000081772 00000 n +0000083708 00000 n +0000085644 00000 n +0000087404 00000 n +0000089226 00000 n +0000089341 00000 n trailer << /Size 91 /Root 89 0 R /Info 90 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -89425 +89684 %%EOF diff --git a/required/latex-lab/testfiles-title/title-007.tpf b/required/latex-lab/testfiles-title/title-007.tpf index fbe63e6e2..4f2bb5d70 100644 --- a/required/latex-lab/testfiles-title/title-007.tpf +++ b/required/latex-lab/testfiles-title/title-007.tpf @@ -367,7 +367,7 @@ endobj << /Kids [51 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 53 0 obj << /center <> @@ -388,7 +388,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1775,94 +1775,94 @@ xref 0000014366 00000 n 0000014388 00000 n 0000014410 00000 n -0000019610 00000 n +0000019869 00000 n 0000014468 00000 n 0000014961 00000 n -0000017337 00000 n -0000015857 00000 n +0000017596 00000 n +0000015964 00000 n 0000000012 00000 f -0000015925 00000 n +0000016032 00000 n 0000000014 00000 f -0000015995 00000 n +0000016102 00000 n 0000000020 00000 f -0000016875 00000 n -0000016076 00000 n -0000017148 00000 n -0000016977 00000 n -0000017250 00000 n +0000017134 00000 n +0000016183 00000 n +0000017407 00000 n +0000017236 00000 n +0000017509 00000 n 0000000000 00000 f -0000017398 00000 n -0000017505 00000 n -0000017594 00000 n -0000017683 00000 n -0000017803 00000 n -0000017908 00000 n +0000017657 00000 n +0000017764 00000 n +0000017853 00000 n +0000017942 00000 n +0000018062 00000 n +0000018167 00000 n 0000014036 00000 n -0000018088 00000 n -0000018275 00000 n -0000018413 00000 n -0000018551 00000 n -0000018689 00000 n -0000018827 00000 n -0000018951 00000 n -0000019055 00000 n -0000019298 00000 n -0000019471 00000 n +0000018347 00000 n +0000018534 00000 n +0000018672 00000 n +0000018810 00000 n +0000018948 00000 n +0000019086 00000 n +0000019210 00000 n +0000019314 00000 n +0000019557 00000 n +0000019730 00000 n 0000000015 00000 n 0000014171 00000 n 0000012491 00000 n -0000093616 00000 n -0000094507 00000 n -0000098102 00000 n -0000086816 00000 n -0000091349 00000 n -0000096298 00000 n -0000084549 00000 n -0000089083 00000 n -0000098279 00000 n +0000093875 00000 n +0000094766 00000 n +0000098361 00000 n +0000087075 00000 n +0000091608 00000 n +0000096557 00000 n +0000084808 00000 n +0000089342 00000 n +0000098538 00000 n 0000014432 00000 n 0000014609 00000 n 0000014924 00000 n -0000015620 00000 n -0000082235 00000 n -0000019747 00000 n -0000019771 00000 n -0000082391 00000 n -0000020020 00000 n -0000020042 00000 n -0000020515 00000 n -0000020667 00000 n -0000020691 00000 n -0000020713 00000 n -0000021027 00000 n -0000023691 00000 n -0000023909 00000 n -0000025851 00000 n -0000026076 00000 n -0000043663 00000 n -0000043890 00000 n -0000058529 00000 n -0000058768 00000 n -0000060566 00000 n -0000060789 00000 n -0000073966 00000 n -0000074241 00000 n -0000082006 00000 n -0000082460 00000 n -0000084727 00000 n -0000086994 00000 n -0000089260 00000 n -0000091527 00000 n -0000093794 00000 n -0000094671 00000 n -0000096475 00000 n -0000098338 00000 n -0000098453 00000 n +0000015727 00000 n +0000082494 00000 n +0000020006 00000 n +0000020030 00000 n +0000082650 00000 n +0000020279 00000 n +0000020301 00000 n +0000020774 00000 n +0000020926 00000 n +0000020950 00000 n +0000020972 00000 n +0000021286 00000 n +0000023950 00000 n +0000024168 00000 n +0000026110 00000 n +0000026335 00000 n +0000043922 00000 n +0000044149 00000 n +0000058788 00000 n +0000059027 00000 n +0000060825 00000 n +0000061048 00000 n +0000074225 00000 n +0000074500 00000 n +0000082265 00000 n +0000082719 00000 n +0000084986 00000 n +0000087253 00000 n +0000089519 00000 n +0000091786 00000 n +0000094053 00000 n +0000094930 00000 n +0000096734 00000 n +0000098597 00000 n +0000098712 00000 n trailer << /Size 88 /Root 86 0 R /Info 87 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -98796 +99055 %%EOF diff --git a/required/latex-lab/testfiles-title/title-008.luatex.tpf b/required/latex-lab/testfiles-title/title-008.luatex.tpf index 050abd4f8..aabf19c93 100644 --- a/required/latex-lab/testfiles-title/title-008.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-008.luatex.tpf @@ -120,7 +120,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /center <> @@ -141,7 +141,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1062,78 +1062,78 @@ xref 0000002002 00000 n 0000002024 00000 n 0000002046 00000 n -0000007048 00000 n +0000007307 00000 n 0000002104 00000 n 0000002557 00000 n -0000004933 00000 n -0000003453 00000 n +0000005192 00000 n +0000003560 00000 n 0000000012 00000 f -0000003521 00000 n +0000003628 00000 n 0000000014 00000 f -0000003591 00000 n +0000003698 00000 n 0000000020 00000 f -0000004471 00000 n -0000003672 00000 n -0000004744 00000 n -0000004573 00000 n -0000004846 00000 n +0000004730 00000 n +0000003779 00000 n +0000005003 00000 n +0000004832 00000 n +0000005105 00000 n 0000000000 00000 f -0000004994 00000 n -0000005101 00000 n -0000005190 00000 n -0000005279 00000 n -0000005368 00000 n -0000005488 00000 n -0000005593 00000 n -0000005743 00000 n -0000005866 00000 n -0000006006 00000 n -0000006146 00000 n -0000006286 00000 n -0000006426 00000 n -0000006550 00000 n -0000006654 00000 n -0000006800 00000 n -0000006908 00000 n -0000007185 00000 n +0000005253 00000 n +0000005360 00000 n +0000005449 00000 n +0000005538 00000 n +0000005627 00000 n +0000005747 00000 n +0000005852 00000 n +0000006002 00000 n +0000006125 00000 n +0000006265 00000 n +0000006405 00000 n +0000006545 00000 n +0000006685 00000 n +0000006809 00000 n +0000006913 00000 n +0000007059 00000 n +0000007167 00000 n +0000007444 00000 n 0000001844 00000 n 0000001709 00000 n 0000000020 00000 n -0000062690 00000 n -0000021630 00000 n -0000060748 00000 n -0000066562 00000 n -0000064627 00000 n -0000066719 00000 n +0000062949 00000 n +0000021889 00000 n +0000061007 00000 n +0000066821 00000 n +0000064886 00000 n +0000066978 00000 n 0000002068 00000 n 0000002189 00000 n 0000002520 00000 n -0000003216 00000 n -0000019664 00000 n -0000019689 00000 n -0000019834 00000 n -0000020061 00000 n -0000020683 00000 n +0000003323 00000 n +0000019923 00000 n +0000019948 00000 n 0000020093 00000 n -0000020904 00000 n -0000021784 00000 n -0000021984 00000 n -0000032127 00000 n -0000022127 00000 n -0000040507 00000 n -0000032331 00000 n -0000048134 00000 n -0000040711 00000 n -0000058760 00000 n -0000048338 00000 n -0000058964 00000 n -0000060906 00000 n -0000062848 00000 n -0000064783 00000 n -0000066781 00000 n -0000066896 00000 n +0000020320 00000 n +0000020942 00000 n +0000020352 00000 n +0000021163 00000 n +0000022043 00000 n +0000022243 00000 n +0000032386 00000 n +0000022386 00000 n +0000040766 00000 n +0000032590 00000 n +0000048393 00000 n +0000040970 00000 n +0000059019 00000 n +0000048597 00000 n +0000059223 00000 n +0000061165 00000 n +0000063107 00000 n +0000065042 00000 n +0000067040 00000 n +0000067155 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -67239 +67498 %%EOF diff --git a/required/latex-lab/testfiles-title/title-008.tpf b/required/latex-lab/testfiles-title/title-008.tpf index 8949907bc..4e13716a7 100644 --- a/required/latex-lab/testfiles-title/title-008.tpf +++ b/required/latex-lab/testfiles-title/title-008.tpf @@ -360,7 +360,7 @@ endobj << /Kids [48 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 50 0 obj << /center <> @@ -381,7 +381,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1300,80 +1300,80 @@ xref 0000014212 00000 n 0000014234 00000 n 0000014256 00000 n -0000019456 00000 n +0000019715 00000 n 0000014314 00000 n 0000014807 00000 n -0000017183 00000 n -0000015703 00000 n +0000017442 00000 n +0000015810 00000 n 0000000012 00000 f -0000015771 00000 n +0000015878 00000 n 0000000014 00000 f -0000015841 00000 n +0000015948 00000 n 0000000020 00000 f -0000016721 00000 n -0000015922 00000 n -0000016994 00000 n -0000016823 00000 n -0000017096 00000 n +0000016980 00000 n +0000016029 00000 n +0000017253 00000 n +0000017082 00000 n +0000017355 00000 n 0000000000 00000 f -0000017244 00000 n -0000017351 00000 n -0000017440 00000 n -0000017529 00000 n -0000017649 00000 n -0000017754 00000 n +0000017503 00000 n +0000017610 00000 n +0000017699 00000 n +0000017788 00000 n +0000017908 00000 n +0000018013 00000 n 0000013918 00000 n -0000017934 00000 n -0000018121 00000 n -0000018259 00000 n -0000018397 00000 n -0000018535 00000 n -0000018673 00000 n -0000018797 00000 n -0000018901 00000 n -0000019144 00000 n -0000019317 00000 n +0000018193 00000 n +0000018380 00000 n +0000018518 00000 n +0000018656 00000 n +0000018794 00000 n +0000018932 00000 n +0000019056 00000 n +0000019160 00000 n +0000019403 00000 n +0000019576 00000 n 0000000015 00000 n 0000014053 00000 n 0000012491 00000 n -0000083806 00000 n -0000084697 00000 n -0000081539 00000 n -0000079272 00000 n -0000077006 00000 n -0000084861 00000 n +0000084065 00000 n +0000084956 00000 n +0000081798 00000 n +0000079531 00000 n +0000077265 00000 n +0000085120 00000 n 0000014278 00000 n 0000014455 00000 n 0000014770 00000 n -0000015466 00000 n -0000074761 00000 n -0000019593 00000 n -0000019615 00000 n -0000019882 00000 n -0000020355 00000 n -0000020377 00000 n -0000020691 00000 n -0000023355 00000 n -0000023573 00000 n -0000038239 00000 n -0000038462 00000 n -0000053456 00000 n -0000053699 00000 n -0000066505 00000 n -0000066767 00000 n -0000074532 00000 n -0000074917 00000 n -0000077183 00000 n -0000079450 00000 n -0000081717 00000 n -0000083984 00000 n -0000084920 00000 n -0000085035 00000 n +0000015573 00000 n +0000075020 00000 n +0000019852 00000 n +0000019874 00000 n +0000020141 00000 n +0000020614 00000 n +0000020636 00000 n +0000020950 00000 n +0000023614 00000 n +0000023832 00000 n +0000038498 00000 n +0000038721 00000 n +0000053715 00000 n +0000053958 00000 n +0000066764 00000 n +0000067026 00000 n +0000074791 00000 n +0000075176 00000 n +0000077442 00000 n +0000079709 00000 n +0000081976 00000 n +0000084243 00000 n +0000085179 00000 n +0000085294 00000 n trailer << /Size 74 /Root 72 0 R /Info 73 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -85378 +85637 %%EOF diff --git a/required/latex-lab/testfiles-title/title-009.luatex.tpf b/required/latex-lab/testfiles-title/title-009.luatex.tpf index 4e6cc566e..712bfed1f 100644 --- a/required/latex-lab/testfiles-title/title-009.luatex.tpf +++ b/required/latex-lab/testfiles-title/title-009.luatex.tpf @@ -120,7 +120,7 @@ endobj << /Kids [49 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 51 0 obj << /center <> @@ -141,7 +141,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1062,78 +1062,78 @@ xref 0000002002 00000 n 0000002024 00000 n 0000002046 00000 n -0000007048 00000 n +0000007307 00000 n 0000002104 00000 n 0000002557 00000 n -0000004933 00000 n -0000003453 00000 n +0000005192 00000 n +0000003560 00000 n 0000000012 00000 f -0000003521 00000 n +0000003628 00000 n 0000000014 00000 f -0000003591 00000 n +0000003698 00000 n 0000000020 00000 f -0000004471 00000 n -0000003672 00000 n -0000004744 00000 n -0000004573 00000 n -0000004846 00000 n +0000004730 00000 n +0000003779 00000 n +0000005003 00000 n +0000004832 00000 n +0000005105 00000 n 0000000000 00000 f -0000004994 00000 n -0000005101 00000 n -0000005190 00000 n -0000005279 00000 n -0000005368 00000 n -0000005488 00000 n -0000005593 00000 n -0000005743 00000 n -0000005866 00000 n -0000006006 00000 n -0000006146 00000 n -0000006286 00000 n -0000006426 00000 n -0000006550 00000 n -0000006654 00000 n -0000006800 00000 n -0000006908 00000 n -0000007185 00000 n +0000005253 00000 n +0000005360 00000 n +0000005449 00000 n +0000005538 00000 n +0000005627 00000 n +0000005747 00000 n +0000005852 00000 n +0000006002 00000 n +0000006125 00000 n +0000006265 00000 n +0000006405 00000 n +0000006545 00000 n +0000006685 00000 n +0000006809 00000 n +0000006913 00000 n +0000007059 00000 n +0000007167 00000 n +0000007444 00000 n 0000001844 00000 n 0000001709 00000 n 0000000020 00000 n -0000062690 00000 n -0000021630 00000 n -0000060748 00000 n -0000066562 00000 n -0000064627 00000 n -0000066719 00000 n +0000062949 00000 n +0000021889 00000 n +0000061007 00000 n +0000066821 00000 n +0000064886 00000 n +0000066978 00000 n 0000002068 00000 n 0000002189 00000 n 0000002520 00000 n -0000003216 00000 n -0000019664 00000 n -0000019689 00000 n -0000019834 00000 n -0000020061 00000 n -0000020683 00000 n +0000003323 00000 n +0000019923 00000 n +0000019948 00000 n 0000020093 00000 n -0000020904 00000 n -0000021784 00000 n -0000021984 00000 n -0000032127 00000 n -0000022127 00000 n -0000040507 00000 n -0000032331 00000 n -0000048134 00000 n -0000040711 00000 n -0000058760 00000 n -0000048338 00000 n -0000058964 00000 n -0000060906 00000 n -0000062848 00000 n -0000064783 00000 n -0000066781 00000 n -0000066896 00000 n +0000020320 00000 n +0000020942 00000 n +0000020352 00000 n +0000021163 00000 n +0000022043 00000 n +0000022243 00000 n +0000032386 00000 n +0000022386 00000 n +0000040766 00000 n +0000032590 00000 n +0000048393 00000 n +0000040970 00000 n +0000059019 00000 n +0000048597 00000 n +0000059223 00000 n +0000061165 00000 n +0000063107 00000 n +0000065042 00000 n +0000067040 00000 n +0000067155 00000 n trailer << /Size 75 /Root 73 0 R /Info 74 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -67239 +67498 %%EOF diff --git a/required/latex-lab/testfiles-title/title-009.tpf b/required/latex-lab/testfiles-title/title-009.tpf index 986f3fac4..1dbf5bbc1 100644 --- a/required/latex-lab/testfiles-title/title-009.tpf +++ b/required/latex-lab/testfiles-title/title-009.tpf @@ -360,7 +360,7 @@ endobj << /Kids [48 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 50 0 obj << /center <> @@ -381,7 +381,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1300,80 +1300,80 @@ xref 0000014212 00000 n 0000014234 00000 n 0000014256 00000 n -0000019456 00000 n +0000019715 00000 n 0000014314 00000 n 0000014807 00000 n -0000017183 00000 n -0000015703 00000 n +0000017442 00000 n +0000015810 00000 n 0000000012 00000 f -0000015771 00000 n +0000015878 00000 n 0000000014 00000 f -0000015841 00000 n +0000015948 00000 n 0000000020 00000 f -0000016721 00000 n -0000015922 00000 n -0000016994 00000 n -0000016823 00000 n -0000017096 00000 n +0000016980 00000 n +0000016029 00000 n +0000017253 00000 n +0000017082 00000 n +0000017355 00000 n 0000000000 00000 f -0000017244 00000 n -0000017351 00000 n -0000017440 00000 n -0000017529 00000 n -0000017649 00000 n -0000017754 00000 n +0000017503 00000 n +0000017610 00000 n +0000017699 00000 n +0000017788 00000 n +0000017908 00000 n +0000018013 00000 n 0000013918 00000 n -0000017934 00000 n -0000018121 00000 n -0000018259 00000 n -0000018397 00000 n -0000018535 00000 n -0000018673 00000 n -0000018797 00000 n -0000018901 00000 n -0000019144 00000 n -0000019317 00000 n +0000018193 00000 n +0000018380 00000 n +0000018518 00000 n +0000018656 00000 n +0000018794 00000 n +0000018932 00000 n +0000019056 00000 n +0000019160 00000 n +0000019403 00000 n +0000019576 00000 n 0000000015 00000 n 0000014053 00000 n 0000012491 00000 n -0000083806 00000 n -0000084697 00000 n -0000081539 00000 n -0000079272 00000 n -0000077006 00000 n -0000084861 00000 n +0000084065 00000 n +0000084956 00000 n +0000081798 00000 n +0000079531 00000 n +0000077265 00000 n +0000085120 00000 n 0000014278 00000 n 0000014455 00000 n 0000014770 00000 n -0000015466 00000 n -0000074761 00000 n -0000019593 00000 n -0000019615 00000 n -0000019882 00000 n -0000020355 00000 n -0000020377 00000 n -0000020691 00000 n -0000023355 00000 n -0000023573 00000 n -0000038239 00000 n -0000038462 00000 n -0000053456 00000 n -0000053699 00000 n -0000066505 00000 n -0000066767 00000 n -0000074532 00000 n -0000074917 00000 n -0000077183 00000 n -0000079450 00000 n -0000081717 00000 n -0000083984 00000 n -0000084920 00000 n -0000085035 00000 n +0000015573 00000 n +0000075020 00000 n +0000019852 00000 n +0000019874 00000 n +0000020141 00000 n +0000020614 00000 n +0000020636 00000 n +0000020950 00000 n +0000023614 00000 n +0000023832 00000 n +0000038498 00000 n +0000038721 00000 n +0000053715 00000 n +0000053958 00000 n +0000066764 00000 n +0000067026 00000 n +0000074791 00000 n +0000075176 00000 n +0000077442 00000 n +0000079709 00000 n +0000081976 00000 n +0000084243 00000 n +0000085179 00000 n +0000085294 00000 n trailer << /Size 74 /Root 72 0 R /Info 73 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -85378 +85637 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-debug.luatex.tlg b/required/latex-lab/testfiles-toc/toc-debug.luatex.tlg index 7577ad79e..64f72296a 100644 --- a/required/latex-lab/testfiles-toc/toc-debug.luatex.tlg +++ b/required/latex-lab/testfiles-toc/toc-debug.luatex.tlg @@ -191,22 +191,23 @@ The structure 14 contains: The structure has the following kids: > Struct 15 > MC 9 +> MC 10 ========================= ========================= The structure 15 contains: > Type => /StructElem -> S => /section-number +> S => /heading-number > NS => latex -> tag => {section-number}{latex} -> rolemap => {Span}{pdf2} -> parentrole => {Span}{pdf2} +> tag => {heading-number}{latex} +> rolemap => {Lbl}{pdf2} +> parentrole => {Lbl}{pdf2} > parentnum => 14 = /section The structure has the following kids: > MC 8 ========================= Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~15 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-toc/toc-debug.tlg b/required/latex-lab/testfiles-toc/toc-debug.tlg index 48a5e1d8b..e59cf1478 100644 --- a/required/latex-lab/testfiles-toc/toc-debug.tlg +++ b/required/latex-lab/testfiles-toc/toc-debug.tlg @@ -179,22 +179,23 @@ The structure 13 contains: The structure has the following kids: > Struct 14 > MC 9 +> MC 10 ========================= ========================= The structure 14 contains: > Type => /StructElem -> S => /section-number +> S => /heading-number > NS => latex -> tag => {section-number}{latex} -> rolemap => {Span}{pdf2} -> parentrole => {Span}{pdf2} +> tag => {heading-number}{latex} +> rolemap => {Lbl}{pdf2} +> parentrole => {Lbl}{pdf2} > parentnum => 13 = /section The structure has the following kids: > MC 8 ========================= Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~14 structure objects -(tagpdf) with ~11 'MC' leaf nodes. +(tagpdf) with ~12 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.luatex.tpf index 15629512c..9d4ecb216 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.luatex.tpf @@ -525,21 +525,25 @@ endobj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> endobj 165 0 obj -<< /Length 392 >> +<< /Length 437 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(In)31(tro)-30(duction)]TJ ET @@ -569,7 +573,7 @@ endobj << /D [ 164 0 R /XYZ 133.768 675.168 null ] >> endobj 105 0 obj -[ 161 0 R /XYZ 133.768 675.168 null ] +[ 160 0 R /XYZ 133.768 675.168 null ] endobj 106 0 obj << /D [ 164 0 R /XYZ 133.768 647.37 null ] >> @@ -584,7 +588,7 @@ endobj << /Type/OBJR/Obj 174 0 R/Pg 189 0 R >> endobj 192 0 obj -<< /Length 2770 >> +<< /Length 2968 >> stream /opacity1 gs /Artifact BMC @@ -623,16 +627,22 @@ BT 1 0 0 1 355.036 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(2)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Swiss)]TJ /F15 9.96264 Tf @@ -643,7 +653,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(A)]TJ @@ -667,21 +677,27 @@ BT 1 0 0 1 232.565 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 235.886 596.671 Tm [(1)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 568.782 Tm [(2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 568.782 Tm [<0067>]TJ +1 0 0 1 150.954 568.782 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 568.782 Tm [(Living)]TJ @@ -693,21 +709,27 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 550.393 Tm [(Switzerland)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 522.505 Tm [(2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 522.505 Tm [<0067>]TJ +1 0 0 1 150.954 522.505 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 522.505 Tm [(Hobbies)]TJ @@ -715,7 +737,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 504.115 Tm [(Albhorn)]TJ @@ -758,19 +780,19 @@ endobj << /D [ 189 0 R /XYZ 133.768 636.425 null ] >> endobj 109 0 obj -[ 170 0 R /XYZ 133.768 636.425 null ] +[ 169 0 R /XYZ 133.768 636.425 null ] endobj 110 0 obj << /D [ 189 0 R /XYZ 133.768 582.73 null ] >> endobj 111 0 obj -[ 181 0 R /XYZ 133.768 582.73 null ] +[ 180 0 R /XYZ 133.768 582.73 null ] endobj 112 0 obj << /D [ 189 0 R /XYZ 133.768 536.452 null ] >> endobj 113 0 obj -[ 186 0 R /XYZ 133.768 536.452 null ] +[ 185 0 R /XYZ 133.768 536.452 null ] endobj 191 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> @@ -779,7 +801,7 @@ endobj << /Type/OBJR/Obj 202 0 R/Pg 207 0 R >> endobj 210 0 obj -<< /Length 1843 >> +<< /Length 1906 >> stream /opacity1 gs /Artifact BMC @@ -818,16 +840,22 @@ BT 1 0 0 1 357.997 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(3)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Italian)]TJ /F15 9.96264 Tf @@ -838,7 +866,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Italian)]TJ @@ -858,7 +886,7 @@ BT 1 0 0 1 231.292 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 234.613 596.671 Tm [(2)]TJ @@ -901,27 +929,31 @@ endobj << /D [ 207 0 R /XYZ 133.768 636.425 null ] >> endobj 115 0 obj -[ 198 0 R /XYZ 133.768 636.425 null ] +[ 197 0 R /XYZ 133.768 636.425 null ] endobj 209 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> endobj 221 0 obj -<< /Length 722 >> +<< /Length 767 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(4)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Mask)31(ed)]TJ /F15 9.96264 Tf @@ -932,7 +964,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Mask)27(ed)]TJ @@ -967,7 +999,7 @@ endobj << /D [ 220 0 R /XYZ 133.768 675.168 null ] >> endobj 117 0 obj -[ 216 0 R /XYZ 133.768 675.168 null ] +[ 215 0 R /XYZ 133.768 675.168 null ] endobj 219 0 obj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> @@ -976,7 +1008,7 @@ endobj << /Type/OBJR/Obj 231 0 R/Pg 236 0 R >> endobj 239 0 obj -<< /Length 1977 >> +<< /Length 2022 >> stream /opacity1 gs /Artifact BMC @@ -1013,16 +1045,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(5)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Hugging)]TJ /F15 9.96264 Tf @@ -1033,7 +1069,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Duc)27(k)]TJ @@ -1061,7 +1097,7 @@ BT 1 0 0 1 283.706 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 287.027 596.671 Tm [(3)]TJ @@ -1110,27 +1146,31 @@ endobj << /D [ 236 0 R /XYZ 133.768 636.425 null ] >> endobj 121 0 obj -[ 227 0 R /XYZ 133.768 636.425 null ] +[ 226 0 R /XYZ 133.768 636.425 null ] endobj 238 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> endobj 251 0 obj -<< /Length 718 >> +<< /Length 763 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(6)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Witc)31(h)]TJ /F15 9.96264 Tf @@ -1141,7 +1181,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Witc)27(h)]TJ @@ -1176,7 +1216,7 @@ endobj << /D [ 250 0 R /XYZ 133.768 675.168 null ] >> endobj 123 0 obj -[ 245 0 R /XYZ 133.768 675.168 null ] +[ 244 0 R /XYZ 133.768 675.168 null ] endobj 249 0 obj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> @@ -1259,12 +1299,12 @@ endobj 6 0 obj << /Nums [0 [ 27 0 R 31 0 R 33 0 R 31 0 R 30 0 R 36 0 R 35 0 R 41 0 R 43 0 R 41 0 R 40 0 R 47 0 R 49 0 R 47 0 R 46 0 R 52 0 R 54 0 R 52 0 R 51 0 R 57 0 R 59 0 R 57 0 R 56 0 R 62 0 R 64 0 R 62 0 R 61 0 R 67 0 R 66 0 R 72 0 R 74 0 R 72 0 R 71 0 R 77 0 R 79 0 R 77 0 R 76 0 R] 1 [ 125 0 R 129 0 R 131 0 R 129 0 R 128 0 R 134 0 R 136 0 R 134 0 R 133 0 R 139 0 R 141 0 R 139 0 R 138 0 R] -2 [ 161 0 R 160 0 R] -3 [ 177 0 R 178 0 R 170 0 R 169 0 R 172 0 R 173 0 R 181 0 R 180 0 R 183 0 R 186 0 R 185 0 R 188 0 R] -4 [ 205 0 R 206 0 R 198 0 R 197 0 R 200 0 R 201 0 R] -5 [ 216 0 R 215 0 R 218 0 R] -6 [ 234 0 R 235 0 R 227 0 R 226 0 R 229 0 R 230 0 R] -7 [ 245 0 R 244 0 R 247 0 R] +2 [ 161 0 R 160 0 R 160 0 R] +3 [ 177 0 R 178 0 R 170 0 R 169 0 R 169 0 R 172 0 R 173 0 R 181 0 R 180 0 R 180 0 R 183 0 R 186 0 R 185 0 R 185 0 R 188 0 R] +4 [ 205 0 R 206 0 R 198 0 R 197 0 R 197 0 R 200 0 R 201 0 R] +5 [ 216 0 R 215 0 R 215 0 R 218 0 R] +6 [ 234 0 R 235 0 R 227 0 R 226 0 R 226 0 R 229 0 R 230 0 R] +7 [ 245 0 R 244 0 R 244 0 R 247 0 R] 8 31 0 R 9 36 0 R 10 41 0 R @@ -1296,7 +1336,7 @@ endobj << /Kids [285 0 R 286 0 R 287 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 289 0 obj << /justify <> @@ -1315,7 +1355,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1354,7 +1394,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 26 0 R /K [29 0 R 34 0 R 38 0 R 65 0 R 69 0 R] /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 161 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 160 0 R ] /K 30 0 R /ID (ID.0009) >> endobj 30 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R <> ] /ID (ID.0010) >> @@ -1378,7 +1418,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [39 0 R 44 0 R 55 0 R 60 0 R] /ID (ID.0016) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 170 0 R ] /K 40 0 R /ID (ID.0017) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 169 0 R ] /K 40 0 R /ID (ID.0017) >> endobj 40 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [ 41 0 R <> ] /ID (ID.0018) >> @@ -1393,7 +1433,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [45 0 R 50 0 R] /ID (ID.0021) >> endobj 45 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 181 0 R ] /K 46 0 R /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 180 0 R ] /K 46 0 R /ID (ID.0022) >> endobj 46 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [ 47 0 R <> ] /ID (ID.0023) >> @@ -1405,7 +1445,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0025) >> endobj 50 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 186 0 R ] /K 51 0 R /ID (ID.0026) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 185 0 R ] /K 51 0 R /ID (ID.0026) >> endobj 51 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 50 0 R /K [ 52 0 R <> ] /ID (ID.0027) >> @@ -1417,7 +1457,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0029) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 198 0 R ] /K 56 0 R /ID (ID.0030) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 197 0 R ] /K 56 0 R /ID (ID.0030) >> endobj 56 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [ 57 0 R <> ] /ID (ID.0031) >> @@ -1429,7 +1469,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 57 0 R /K <> /ID (ID.0033) >> endobj 60 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 216 0 R ] /K 61 0 R /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 215 0 R ] /K 61 0 R /ID (ID.0034) >> endobj 61 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [ 62 0 R <> ] /ID (ID.0035) >> @@ -1453,7 +1493,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [70 0 R 75 0 R] /ID (ID.0041) >> endobj 70 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 227 0 R ] /K 71 0 R /ID (ID.0042) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 226 0 R ] /K 71 0 R /ID (ID.0042) >> endobj 71 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 70 0 R /K [ 72 0 R <> ] /ID (ID.0043) >> @@ -1465,7 +1505,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 72 0 R /K <> /ID (ID.0045) >> endobj 75 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 245 0 R ] /K 76 0 R /ID (ID.0046) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 244 0 R ] /K 76 0 R /ID (ID.0046) >> endobj 76 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 75 0 R /K [ 77 0 R <> ] /ID (ID.0047) >> @@ -1525,10 +1565,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 160 0 R /ID (ID.0065) >> endobj 160 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 159 0 R /K [161 0 R <> ] /ID (ID.0066) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 159 0 R /K [161 0 R <> <> ] /ID (ID.0066) >> endobj 161 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 160 0 R /K <> /ID (ID.0067) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 160 0 R /K <> /ID (ID.0067) >> endobj 162 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [168 0 R 196 0 R 214 0 R] /ID (ID.0068) >> @@ -1537,19 +1577,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [169 0 R 171 0 R 179 0 R 184 0 R] /ID (ID.0069) >> endobj 169 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 168 0 R /K [170 0 R <> ] /ID (ID.0070) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 168 0 R /K [170 0 R <> <> ] /ID (ID.0070) >> endobj 170 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 169 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 169 0 R /K <> /ID (ID.0071) >> endobj 171 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 168 0 R /K 172 0 R /ID (ID.0072) >> endobj 172 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 171 0 R /K [<> 173 0 R ] /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 171 0 R /K [<> 173 0 R ] /ID (ID.0073) >> endobj 173 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 172 0 R /K [<> 190 0 R] /ID (ID.0074) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 172 0 R /K [<> 190 0 R] /ID (ID.0074) >> endobj 175 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 176 0 R /ID (ID.0075) >> @@ -1567,49 +1607,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 168 0 R /K [180 0 R 182 0 R] /ID (ID.0079) >> endobj 180 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> ] /ID (ID.0080) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> <> ] /ID (ID.0080) >> endobj 181 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0081) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0081) >> endobj 182 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 179 0 R /K 183 0 R /ID (ID.0082) >> endobj 183 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0083) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0083) >> endobj 184 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 168 0 R /K [185 0 R 187 0 R] /ID (ID.0084) >> endobj 185 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> ] /ID (ID.0085) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> <> ] /ID (ID.0085) >> endobj 186 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0086) >> endobj 187 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 188 0 R /ID (ID.0087) >> endobj 188 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0088) >> endobj 196 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [197 0 R 199 0 R] /ID (ID.0089) >> endobj 197 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <> ] /ID (ID.0090) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <> <> ] /ID (ID.0090) >> endobj 198 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0091) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0091) >> endobj 199 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 196 0 R /K 200 0 R /ID (ID.0092) >> endobj 200 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 199 0 R /K [<> 201 0 R ] /ID (ID.0093) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 199 0 R /K [<> 201 0 R ] /ID (ID.0093) >> endobj 201 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 200 0 R /K [<> 208 0 R] /ID (ID.0094) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 200 0 R /K [<> 208 0 R] /ID (ID.0094) >> endobj 203 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 204 0 R /ID (ID.0095) >> @@ -1627,16 +1667,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [215 0 R 217 0 R] /ID (ID.0099) >> endobj 215 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 214 0 R /K [216 0 R <> ] /ID (ID.0100) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 214 0 R /K [216 0 R <> <> ] /ID (ID.0100) >> endobj 216 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 215 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 215 0 R /K <> /ID (ID.0101) >> endobj 217 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 214 0 R /K 218 0 R /ID (ID.0102) >> endobj 218 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 217 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 217 0 R /K <> /ID (ID.0103) >> endobj 224 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [225 0 R 243 0 R] /ID (ID.0104) >> @@ -1645,19 +1685,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 224 0 R /K [226 0 R 228 0 R] /ID (ID.0105) >> endobj 226 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 225 0 R /K [227 0 R <> ] /ID (ID.0106) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 225 0 R /K [227 0 R <> <> ] /ID (ID.0106) >> endobj 227 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 226 0 R /K <> /ID (ID.0107) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 226 0 R /K <> /ID (ID.0107) >> endobj 228 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 229 0 R /ID (ID.0108) >> endobj 229 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K [<> 230 0 R ] /ID (ID.0109) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K [<> 230 0 R ] /ID (ID.0109) >> endobj 230 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 229 0 R /K [<> 237 0 R] /ID (ID.0110) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 229 0 R /K [<> 237 0 R] /ID (ID.0110) >> endobj 232 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 233 0 R /ID (ID.0111) >> @@ -1675,16 +1715,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 224 0 R /K [244 0 R 246 0 R] /ID (ID.0115) >> endobj 244 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 243 0 R /K [245 0 R <> ] /ID (ID.0116) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 243 0 R /K [245 0 R <> <> ] /ID (ID.0116) >> endobj 245 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 244 0 R /K <> /ID (ID.0117) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 244 0 R /K <> /ID (ID.0117) >> endobj 246 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 247 0 R /ID (ID.0118) >> endobj 247 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 246 0 R /K <> /ID (ID.0119) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 246 0 R /K <> /ID (ID.0119) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 288 0 R /ClassMap 289 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -2429,85 +2469,85 @@ endobj xref 0 312 0000000010 65535 f -0000025800 00000 n -0000025847 00000 n -0000025869 00000 n -0000025891 00000 n -0000049583 00000 n -0000027347 00000 n -0000030525 00000 n -0000032827 00000 n -0000031347 00000 n +0000026241 00000 n +0000026288 00000 n +0000026310 00000 n +0000026332 00000 n +0000050638 00000 n +0000027788 00000 n +0000031030 00000 n +0000033591 00000 n +0000031959 00000 n 0000000012 00000 f -0000031415 00000 n +0000032027 00000 n 0000000014 00000 f -0000031485 00000 n +0000032097 00000 n 0000000020 00000 f -0000032365 00000 n -0000031566 00000 n -0000032638 00000 n -0000032467 00000 n -0000032740 00000 n +0000033129 00000 n +0000032178 00000 n +0000033402 00000 n +0000033231 00000 n +0000033504 00000 n 0000000000 00000 f 0000004735 00000 n -0000032888 00000 n -0000033028 00000 n -0000033118 00000 n -0000033236 00000 n -0000033326 00000 n -0000033431 00000 n -0000033600 00000 n -0000033746 00000 n -0000033916 00000 n -0000034055 00000 n +0000033652 00000 n +0000033792 00000 n +0000033882 00000 n +0000034000 00000 n +0000034090 00000 n +0000034195 00000 n +0000034364 00000 n +0000034510 00000 n +0000034680 00000 n +0000034819 00000 n 0000004978 00000 n -0000034230 00000 n -0000034353 00000 n -0000034495 00000 n -0000034634 00000 n +0000034994 00000 n +0000035117 00000 n +0000035259 00000 n +0000035398 00000 n 0000005205 00000 n -0000034767 00000 n -0000034884 00000 n -0000035050 00000 n -0000035190 00000 n +0000035531 00000 n +0000035648 00000 n +0000035814 00000 n +0000035954 00000 n 0000005428 00000 n -0000035365 00000 n -0000035488 00000 n -0000035591 00000 n -0000035765 00000 n -0000035905 00000 n +0000036129 00000 n +0000036252 00000 n +0000036355 00000 n +0000036529 00000 n +0000036669 00000 n 0000005656 00000 n -0000036082 00000 n -0000036206 00000 n -0000036356 00000 n -0000036496 00000 n +0000036846 00000 n +0000036970 00000 n +0000037120 00000 n +0000037260 00000 n 0000005888 00000 n -0000036673 00000 n -0000036797 00000 n -0000036971 00000 n -0000037111 00000 n +0000037437 00000 n +0000037561 00000 n +0000037735 00000 n +0000037875 00000 n 0000006121 00000 n -0000037288 00000 n -0000037412 00000 n -0000037578 00000 n -0000037718 00000 n +0000038052 00000 n +0000038176 00000 n +0000038342 00000 n +0000038482 00000 n 0000006349 00000 n -0000037895 00000 n -0000038019 00000 n -0000038161 00000 n -0000038301 00000 n +0000038659 00000 n +0000038783 00000 n +0000038925 00000 n +0000039065 00000 n 0000006577 00000 n -0000038435 00000 n -0000038538 00000 n -0000038708 00000 n -0000038848 00000 n +0000039199 00000 n +0000039302 00000 n +0000039472 00000 n +0000039612 00000 n 0000006801 00000 n -0000039025 00000 n -0000039149 00000 n -0000039311 00000 n -0000039451 00000 n +0000039789 00000 n +0000039913 00000 n +0000040075 00000 n +0000040215 00000 n 0000007028 00000 n -0000039628 00000 n +0000040392 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -2526,50 +2566,50 @@ xref 0000007430 00000 n 0000007483 00000 n 0000007545 00000 n -0000116904 00000 n -0000114952 00000 n -0000063870 00000 n -0000118851 00000 n -0000119013 00000 n +0000117959 00000 n +0000116007 00000 n +0000064925 00000 n +0000119906 00000 n +0000120068 00000 n 0000004887 00000 n -0000013090 00000 n -0000013154 00000 n -0000013209 00000 n -0000013272 00000 n -0000016960 00000 n -0000017024 00000 n -0000017079 00000 n -0000017142 00000 n -0000017196 00000 n -0000017260 00000 n -0000020021 00000 n -0000020085 00000 n -0000021268 00000 n -0000021332 00000 n -0000024229 00000 n -0000024293 00000 n -0000024348 00000 n -0000024412 00000 n -0000025591 00000 n -0000025655 00000 n -0000039752 00000 n -0000039860 00000 n -0000040060 00000 n -0000040197 00000 n -0000040406 00000 n -0000040549 00000 n +0000013135 00000 n +0000013199 00000 n +0000013254 00000 n +0000013317 00000 n +0000017203 00000 n +0000017267 00000 n +0000017322 00000 n +0000017385 00000 n +0000017439 00000 n +0000017503 00000 n +0000020327 00000 n +0000020391 00000 n +0000021619 00000 n +0000021683 00000 n +0000024625 00000 n +0000024689 00000 n +0000024744 00000 n +0000024808 00000 n +0000026032 00000 n +0000026096 00000 n +0000040516 00000 n +0000040624 00000 n +0000040824 00000 n +0000040961 00000 n +0000041170 00000 n +0000041313 00000 n 0000011350 00000 n -0000040730 00000 n -0000040856 00000 n -0000041073 00000 n -0000041216 00000 n +0000041494 00000 n +0000041620 00000 n +0000041837 00000 n +0000041980 00000 n 0000011586 00000 n -0000041397 00000 n -0000041523 00000 n -0000041708 00000 n -0000041852 00000 n +0000042161 00000 n +0000042287 00000 n +0000042472 00000 n +0000042616 00000 n 0000011818 00000 n -0000042034 00000 n +0000042798 00000 n 0000011150 00000 n 0000007699 00000 n 0000007756 00000 n @@ -2581,167 +2621,167 @@ xref 0000012172 00000 n 0000012236 00000 n 0000011305 00000 n -0000016841 00000 n -0000016905 00000 n -0000019902 00000 n -0000019966 00000 n -0000024110 00000 n -0000024174 00000 n -0000042161 00000 n -0000042259 00000 n -0000042457 00000 n -0000042594 00000 n -0000013326 00000 n -0000012834 00000 n +0000017084 00000 n +0000017148 00000 n +0000020208 00000 n +0000020272 00000 n +0000024506 00000 n +0000024570 00000 n +0000042925 00000 n +0000043023 00000 n +0000043257 00000 n +0000043394 00000 n +0000013371 00000 n +0000012879 00000 n 0000012381 00000 n -0000012973 00000 n -0000013036 00000 n -0000042710 00000 n -0000042835 00000 n -0000043029 00000 n -0000043166 00000 n -0000043274 00000 n -0000043430 00000 n -0000016488 00000 n -0000043567 00000 n -0000043666 00000 n -0000043778 00000 n -0000043904 00000 n -0000044049 00000 n -0000044158 00000 n -0000044363 00000 n -0000044500 00000 n -0000044608 00000 n -0000044753 00000 n -0000044862 00000 n -0000045044 00000 n -0000045181 00000 n -0000045289 00000 n -0000016304 00000 n -0000013416 00000 n -0000017315 00000 n -0000013473 00000 n -0000016724 00000 n -0000016787 00000 n -0000016459 00000 n -0000045435 00000 n -0000045544 00000 n -0000045746 00000 n -0000045883 00000 n -0000045991 00000 n -0000046147 00000 n -0000019550 00000 n -0000046284 00000 n -0000046383 00000 n -0000046495 00000 n -0000046621 00000 n -0000019366 00000 n -0000017405 00000 n -0000020140 00000 n -0000017462 00000 n -0000019785 00000 n -0000019848 00000 n -0000019521 00000 n -0000046766 00000 n -0000046875 00000 n -0000047069 00000 n -0000047206 00000 n -0000047314 00000 n -0000021387 00000 n -0000021013 00000 n -0000020230 00000 n -0000021152 00000 n -0000021215 00000 n -0000047459 00000 n -0000047567 00000 n -0000047676 00000 n -0000047874 00000 n -0000048011 00000 n -0000048119 00000 n -0000048275 00000 n -0000023756 00000 n -0000048412 00000 n -0000048511 00000 n -0000048623 00000 n -0000048749 00000 n -0000023572 00000 n -0000021477 00000 n -0000024467 00000 n -0000021534 00000 n -0000023993 00000 n -0000024056 00000 n -0000023727 00000 n -0000048894 00000 n -0000049003 00000 n -0000049193 00000 n -0000049330 00000 n -0000049438 00000 n -0000049722 00000 n -0000025710 00000 n -0000025336 00000 n -0000024557 00000 n -0000025475 00000 n -0000025538 00000 n -0000025913 00000 n -0000025950 00000 n -0000120065 00000 n -0000026009 00000 n -0000026098 00000 n -0000119933 00000 n -0000026154 00000 n -0000026208 00000 n -0000119815 00000 n -0000026267 00000 n +0000013018 00000 n +0000013081 00000 n +0000043510 00000 n +0000043635 00000 n +0000043865 00000 n +0000044002 00000 n +0000044110 00000 n +0000044266 00000 n +0000016731 00000 n +0000044403 00000 n +0000044502 00000 n +0000044614 00000 n +0000044740 00000 n +0000044885 00000 n +0000044994 00000 n +0000045235 00000 n +0000045372 00000 n +0000045480 00000 n +0000045626 00000 n +0000045735 00000 n +0000045954 00000 n +0000046092 00000 n +0000046200 00000 n +0000016547 00000 n +0000013461 00000 n +0000017558 00000 n +0000013518 00000 n +0000016967 00000 n +0000017030 00000 n +0000016702 00000 n +0000046346 00000 n +0000046455 00000 n +0000046693 00000 n +0000046830 00000 n +0000046938 00000 n +0000047094 00000 n +0000019856 00000 n +0000047231 00000 n +0000047330 00000 n +0000047442 00000 n +0000047568 00000 n +0000019672 00000 n +0000017648 00000 n +0000020446 00000 n +0000017705 00000 n +0000020091 00000 n +0000020154 00000 n +0000019827 00000 n +0000047713 00000 n +0000047822 00000 n +0000048052 00000 n +0000048189 00000 n +0000048297 00000 n +0000021738 00000 n +0000021364 00000 n +0000020536 00000 n +0000021503 00000 n +0000021566 00000 n +0000048442 00000 n +0000048550 00000 n +0000048659 00000 n +0000048893 00000 n +0000049030 00000 n +0000049138 00000 n +0000049294 00000 n +0000024152 00000 n +0000049431 00000 n +0000049530 00000 n +0000049642 00000 n +0000049768 00000 n +0000023968 00000 n +0000021828 00000 n +0000024863 00000 n +0000021885 00000 n +0000024389 00000 n +0000024452 00000 n +0000024123 00000 n +0000049913 00000 n +0000050022 00000 n +0000050248 00000 n +0000050385 00000 n +0000050493 00000 n +0000050777 00000 n +0000026151 00000 n +0000025777 00000 n +0000024953 00000 n +0000025916 00000 n +0000025979 00000 n 0000026354 00000 n -0000119736 00000 n -0000026418 00000 n -0000026515 00000 n -0000119657 00000 n -0000026579 00000 n -0000026643 00000 n -0000119564 00000 n -0000026702 00000 n -0000026799 00000 n -0000119485 00000 n -0000026858 00000 n -0000026945 00000 n -0000119367 00000 n -0000027001 00000 n -0000027055 00000 n -0000119288 00000 n -0000027114 00000 n -0000027206 00000 n -0000119209 00000 n -0000027265 00000 n -0000028208 00000 n -0000029122 00000 n -0000030084 00000 n -0000030470 00000 n -0000031184 00000 n -0000061913 00000 n -0000062296 00000 n -0000062920 00000 n -0000062329 00000 n -0000063143 00000 n -0000064027 00000 n -0000064230 00000 n -0000064490 00000 n -0000080082 00000 n -0000064790 00000 n -0000094663 00000 n -0000080291 00000 n -0000112955 00000 n -0000094872 00000 n -0000113162 00000 n -0000115114 00000 n -0000117066 00000 n -0000119132 00000 n -0000120144 00000 n -0000120700 00000 n -0000120738 00000 n -0000121001 00000 n +0000026391 00000 n +0000121120 00000 n +0000026450 00000 n +0000026539 00000 n +0000120988 00000 n +0000026595 00000 n +0000026649 00000 n +0000120870 00000 n +0000026708 00000 n +0000026795 00000 n +0000120791 00000 n +0000026859 00000 n +0000026956 00000 n +0000120712 00000 n +0000027020 00000 n +0000027084 00000 n +0000120619 00000 n +0000027143 00000 n +0000027240 00000 n +0000120540 00000 n +0000027299 00000 n +0000027386 00000 n +0000120422 00000 n +0000027442 00000 n +0000027496 00000 n +0000120343 00000 n +0000027555 00000 n +0000027647 00000 n +0000120264 00000 n +0000027706 00000 n +0000028713 00000 n +0000029627 00000 n +0000030589 00000 n +0000030975 00000 n +0000031796 00000 n +0000062968 00000 n +0000063351 00000 n +0000063975 00000 n +0000063384 00000 n +0000064198 00000 n +0000065082 00000 n +0000065285 00000 n +0000065545 00000 n +0000081137 00000 n +0000065845 00000 n +0000095718 00000 n +0000081346 00000 n +0000114010 00000 n +0000095927 00000 n +0000114217 00000 n +0000116169 00000 n +0000118121 00000 n +0000120187 00000 n +0000121199 00000 n +0000121755 00000 n +0000121793 00000 n +0000122056 00000 n trailer << /Size 312 /Root 310 0 R /Info 311 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -121211 +122266 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.tpf index 58d25c0e9..37d414b6f 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-1.tpf @@ -556,19 +556,24 @@ endobj endobj 163 0 obj << -/Length 281 +/Length 359 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(In)31(tro)-31(duction)]TJ ET EMC @@ -603,7 +608,7 @@ endobj >> endobj 104 0 obj -[159 0 R /XYZ 133.768 675.168 null] +[158 0 R /XYZ 133.768 675.168 null] endobj 105 0 obj << @@ -616,7 +621,7 @@ endobj 162 0 obj << /ExtGState 1 0 R -/Font << /F47 97 0 R /F45 101 0 R >> +/Font << /F47 97 0 R /F53 100 0 R /F45 101 0 R >> >> endobj 174 0 obj @@ -624,7 +629,7 @@ endobj endobj 190 0 obj << -/Length 1778 +/Length 2021 >> stream /opacity1 gs @@ -640,54 +645,69 @@ BT /F45 9.9626 Tf 280.71 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 42.247 0 Td [(b)-31(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 235.86 596.731 Td [(1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 568.846 Td [(2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 568.846 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 568.846 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 41.321 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 550.458 Td [(Switzerland)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 522.573 Td [(2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 522.573 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 522.573 Td [(Hobbies)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 504.185 Td [(Albhorn)]TJ ET @@ -741,7 +761,7 @@ endobj >> endobj 108 0 obj -[168 0 R /XYZ 133.768 636.482 null] +[167 0 R /XYZ 133.768 636.482 null] endobj 109 0 obj << @@ -749,7 +769,7 @@ endobj >> endobj 110 0 obj -[181 0 R /XYZ 133.768 582.793 null] +[180 0 R /XYZ 133.768 582.793 null] endobj 111 0 obj << @@ -757,7 +777,7 @@ endobj >> endobj 112 0 obj -[186 0 R /XYZ 133.768 536.52 null] +[185 0 R /XYZ 133.768 536.52 null] endobj 189 0 obj << @@ -770,7 +790,7 @@ endobj endobj 207 0 obj << -/Length 1154 +/Length 1232 >> stream /opacity1 gs @@ -786,27 +806,32 @@ BT /F45 9.9626 Tf 277.749 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 30.987 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(3)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 50.511 0 Td [(b)-30(e)-1(a)1(r)-1(s)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.205 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 234.588 596.731 Td [(2)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -857,7 +882,7 @@ endobj >> endobj 114 0 obj -[195 0 R /XYZ 133.768 636.482 null] +[194 0 R /XYZ 133.768 636.482 null] endobj 206 0 obj << @@ -867,23 +892,28 @@ endobj endobj 217 0 obj << -/Length 488 +/Length 566 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Mask)31(ed)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 58.162 0 Td [(b)-30(e)-1(a)1(r)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -919,7 +949,7 @@ endobj >> endobj 116 0 obj -[212 0 R /XYZ 133.768 675.168 null] +[211 0 R /XYZ 133.768 675.168 null] endobj 216 0 obj << @@ -932,7 +962,7 @@ endobj endobj 235 0 obj << -/Length 1201 +/Length 1279 >> stream /opacity1 gs @@ -948,27 +978,32 @@ BT /F45 9.9626 Tf 292.565 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(duc)28(k)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(5)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 63.171 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 286.99 596.731 Td [(3)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -1027,7 +1062,7 @@ endobj >> endobj 120 0 obj -[223 0 R /XYZ 133.768 636.482 null] +[222 0 R /XYZ 133.768 636.482 null] endobj 234 0 obj << @@ -1280,23 +1315,28 @@ endstream endobj 247 0 obj << -/Length 479 +/Length 557 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Witc)31(h)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 47.409 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1332,7 +1372,7 @@ endobj >> endobj 122 0 obj -[241 0 R /XYZ 133.768 675.168 null] +[240 0 R /XYZ 133.768 675.168 null] endobj 246 0 obj << @@ -1418,12 +1458,12 @@ endobj 6 0 obj << /Nums [0 [ 26 0 R 29 0 R 30 0 R 32 0 R 30 0 R 29 0 R 29 0 R 35 0 R 36 0 R 35 0 R 35 0 R 41 0 R 42 0 R 44 0 R 42 0 R 41 0 R 41 0 R 48 0 R 49 0 R 51 0 R 49 0 R 48 0 R 48 0 R 54 0 R 55 0 R 57 0 R 55 0 R 54 0 R 54 0 R 60 0 R 61 0 R 63 0 R 61 0 R 60 0 R 60 0 R 66 0 R 67 0 R 69 0 R 67 0 R 66 0 R 66 0 R 72 0 R 73 0 R 72 0 R 72 0 R 78 0 R 79 0 R 81 0 R 79 0 R 78 0 R 78 0 R 84 0 R 85 0 R 87 0 R 85 0 R 84 0 R 84 0 R ] 1 [ 124 0 R 128 0 R 129 0 R 131 0 R 129 0 R 128 0 R 128 0 R 134 0 R 135 0 R 137 0 R 135 0 R 134 0 R 134 0 R 140 0 R 141 0 R 143 0 R 141 0 R 140 0 R 140 0 R ] -2 [ 159 0 R 158 0 R ] -3 [ 177 0 R 178 0 R 168 0 R 167 0 R 171 0 R 172 0 R 171 0 R 181 0 R 180 0 R 183 0 R 186 0 R 185 0 R 188 0 R ] -4 [ 204 0 R 205 0 R 195 0 R 194 0 R 198 0 R 199 0 R 198 0 R ] -5 [ 212 0 R 211 0 R 215 0 R ] -6 [ 232 0 R 233 0 R 223 0 R 222 0 R 226 0 R 227 0 R 226 0 R ] -7 [ 241 0 R 240 0 R 244 0 R ] +2 [ 159 0 R 158 0 R 158 0 R ] +3 [ 177 0 R 178 0 R 168 0 R 167 0 R 167 0 R 171 0 R 172 0 R 171 0 R 181 0 R 180 0 R 180 0 R 183 0 R 186 0 R 185 0 R 185 0 R 188 0 R ] +4 [ 204 0 R 205 0 R 195 0 R 194 0 R 194 0 R 198 0 R 199 0 R 198 0 R ] +5 [ 212 0 R 211 0 R 211 0 R 215 0 R ] +6 [ 232 0 R 233 0 R 223 0 R 222 0 R 222 0 R 226 0 R 227 0 R 226 0 R ] +7 [ 241 0 R 240 0 R 240 0 R 244 0 R ] 8 30 0 R 9 36 0 R 10 42 0 R @@ -1455,7 +1495,7 @@ endobj << /Kids [281 0 R 282 0 R 283 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 285 0 obj << /justify <> @@ -1474,7 +1514,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1510,7 +1550,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 34 0 R 39 0 R 71 0 R 76 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 159 0 R ] /K 29 0 R /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 158 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.0009) >> @@ -1534,7 +1574,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [40 0 R 46 0 R 59 0 R 65 0 R] /ID (ID.0015) >> endobj 40 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 168 0 R ] /K 41 0 R /ID (ID.0016) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 167 0 R ] /K 41 0 R /ID (ID.0016) >> endobj 41 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 40 0 R /K [<> 42 0 R <> <>] /ID (ID.0017) >> @@ -1549,7 +1589,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 39 0 R /K [47 0 R 53 0 R] /ID (ID.0020) >> endobj 47 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 181 0 R ] /K 48 0 R /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 180 0 R ] /K 48 0 R /ID (ID.0021) >> endobj 48 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 47 0 R /K [<> 49 0 R <> <>] /ID (ID.0022) >> @@ -1561,7 +1601,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0024) >> endobj 53 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 186 0 R ] /K 54 0 R /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 185 0 R ] /K 54 0 R /ID (ID.0025) >> endobj 54 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 53 0 R /K [<> 55 0 R <> <>] /ID (ID.0026) >> @@ -1573,7 +1613,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0028) >> endobj 59 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 195 0 R ] /K 60 0 R /ID (ID.0029) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 194 0 R ] /K 60 0 R /ID (ID.0029) >> endobj 60 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 59 0 R /K [<> 61 0 R <> <>] /ID (ID.0030) >> @@ -1585,7 +1625,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.0032) >> endobj 65 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 212 0 R ] /K 66 0 R /ID (ID.0033) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 211 0 R ] /K 66 0 R /ID (ID.0033) >> endobj 66 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 65 0 R /K [<> 67 0 R <> <>] /ID (ID.0034) >> @@ -1609,7 +1649,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [77 0 R 83 0 R] /ID (ID.0040) >> endobj 77 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 223 0 R ] /K 78 0 R /ID (ID.0041) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 222 0 R ] /K 78 0 R /ID (ID.0041) >> endobj 78 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 77 0 R /K [<> 79 0 R <> <>] /ID (ID.0042) >> @@ -1621,7 +1661,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 79 0 R /K <> /ID (ID.0044) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 241 0 R ] /K 84 0 R /ID (ID.0045) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 240 0 R ] /K 84 0 R /ID (ID.0045) >> endobj 84 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 83 0 R /K [<> 85 0 R <> <>] /ID (ID.0046) >> @@ -1681,10 +1721,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 158 0 R /ID (ID.0064) >> endobj 158 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 157 0 R /K [159 0 R <>] /ID (ID.0065) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 157 0 R /K [159 0 R <> <>] /ID (ID.0065) >> endobj 159 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 158 0 R /K <> /ID (ID.0066) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 158 0 R /K <> /ID (ID.0066) >> endobj 161 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [166 0 R 193 0 R 210 0 R] /ID (ID.0067) >> @@ -1693,19 +1733,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [167 0 R 170 0 R 179 0 R 184 0 R] /ID (ID.0068) >> endobj 167 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 166 0 R /K [168 0 R <>] /ID (ID.0069) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 166 0 R /K [168 0 R <> <>] /ID (ID.0069) >> endobj 168 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 167 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 167 0 R /K <> /ID (ID.0070) >> endobj 170 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 166 0 R /K 171 0 R /ID (ID.0071) >> endobj 171 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K [<> 172 0 R <>] /ID (ID.0072) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K [<> 172 0 R <>] /ID (ID.0072) >> endobj 172 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 171 0 R /K [<> 174 0 R] /ID (ID.0073) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 171 0 R /K [<> 174 0 R] /ID (ID.0073) >> endobj 175 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 176 0 R /ID (ID.0074) >> @@ -1723,49 +1763,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 166 0 R /K [180 0 R 182 0 R] /ID (ID.0078) >> endobj 180 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <>] /ID (ID.0079) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> <>] /ID (ID.0079) >> endobj 181 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0080) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0080) >> endobj 182 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 179 0 R /K 183 0 R /ID (ID.0081) >> endobj 183 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0082) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0082) >> endobj 184 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 166 0 R /K [185 0 R 187 0 R] /ID (ID.0083) >> endobj 185 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <>] /ID (ID.0084) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> <>] /ID (ID.0084) >> endobj 186 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0085) >> endobj 187 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 188 0 R /ID (ID.0086) >> endobj 188 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0087) >> endobj 193 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [194 0 R 197 0 R] /ID (ID.0088) >> endobj 194 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 193 0 R /K [195 0 R <>] /ID (ID.0089) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 193 0 R /K [195 0 R <> <>] /ID (ID.0089) >> endobj 195 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0090) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0090) >> endobj 197 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 193 0 R /K 198 0 R /ID (ID.0091) >> endobj 198 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K [<> 199 0 R <>] /ID (ID.0092) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K [<> 199 0 R <>] /ID (ID.0092) >> endobj 199 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 198 0 R /K [<> 201 0 R] /ID (ID.0093) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 198 0 R /K [<> 201 0 R] /ID (ID.0093) >> endobj 202 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 203 0 R /ID (ID.0094) >> @@ -1783,16 +1823,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [211 0 R 214 0 R] /ID (ID.0098) >> endobj 211 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 210 0 R /K [212 0 R <>] /ID (ID.0099) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 210 0 R /K [212 0 R <> <>] /ID (ID.0099) >> endobj 212 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 211 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 211 0 R /K <> /ID (ID.0100) >> endobj 214 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 210 0 R /K 215 0 R /ID (ID.0101) >> endobj 215 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 214 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 214 0 R /K <> /ID (ID.0102) >> endobj 220 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [221 0 R 239 0 R] /ID (ID.0103) >> @@ -1801,19 +1841,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 220 0 R /K [222 0 R 225 0 R] /ID (ID.0104) >> endobj 222 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 221 0 R /K [223 0 R <>] /ID (ID.0105) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 221 0 R /K [223 0 R <> <>] /ID (ID.0105) >> endobj 223 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 222 0 R /K <> /ID (ID.0106) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 222 0 R /K <> /ID (ID.0106) >> endobj 225 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 221 0 R /K 226 0 R /ID (ID.0107) >> endobj 226 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 225 0 R /K [<> 227 0 R <>] /ID (ID.0108) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 225 0 R /K [<> 227 0 R <>] /ID (ID.0108) >> endobj 227 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 226 0 R /K [<> 229 0 R] /ID (ID.0109) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 226 0 R /K [<> 229 0 R] /ID (ID.0109) >> endobj 230 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 231 0 R /ID (ID.0110) >> @@ -1831,16 +1871,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 220 0 R /K [240 0 R 243 0 R] /ID (ID.0114) >> endobj 240 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 239 0 R /K [241 0 R <>] /ID (ID.0115) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 239 0 R /K [241 0 R <> <>] /ID (ID.0115) >> endobj 241 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0116) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0116) >> endobj 243 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 244 0 R /ID (ID.0117) >> endobj 244 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0118) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0118) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 284 0 R /ClassMap 285 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -2844,93 +2884,93 @@ endobj xref 0 317 0000000010 65535 f -0000039801 00000 n -0000039848 00000 n -0000039870 00000 n -0000039892 00000 n -0000064479 00000 n -0000041338 00000 n -0000044711 00000 n -0000047013 00000 n -0000045533 00000 n +0000040447 00000 n +0000040494 00000 n +0000040516 00000 n +0000040538 00000 n +0000065723 00000 n +0000041984 00000 n +0000045421 00000 n +0000047982 00000 n +0000046350 00000 n 0000000012 00000 f -0000045601 00000 n +0000046418 00000 n 0000000014 00000 f -0000045671 00000 n +0000046488 00000 n 0000000020 00000 f -0000046551 00000 n -0000045752 00000 n -0000046824 00000 n -0000046653 00000 n -0000046926 00000 n +0000047520 00000 n +0000046569 00000 n +0000047793 00000 n +0000047622 00000 n +0000047895 00000 n 0000000000 00000 f 0000007493 00000 n -0000047074 00000 n -0000047214 00000 n -0000047332 00000 n -0000047422 00000 n -0000047527 00000 n -0000047694 00000 n -0000047840 00000 n -0000048010 00000 n -0000048211 00000 n +0000048043 00000 n +0000048183 00000 n +0000048301 00000 n +0000048391 00000 n +0000048496 00000 n +0000048663 00000 n +0000048809 00000 n +0000048979 00000 n +0000049180 00000 n 0000007711 00000 n -0000048382 00000 n +0000049351 00000 n 0000000015 00000 n -0000048503 00000 n -0000048645 00000 n -0000048847 00000 n +0000049472 00000 n +0000049614 00000 n +0000049816 00000 n 0000007912 00000 n 0000000069 00000 n -0000048978 00000 n -0000049095 00000 n -0000049261 00000 n -0000049465 00000 n +0000049947 00000 n +0000050064 00000 n +0000050230 00000 n +0000050434 00000 n 0000008110 00000 n -0000049638 00000 n +0000050607 00000 n 0000000123 00000 n -0000049760 00000 n -0000049863 00000 n -0000050037 00000 n -0000050241 00000 n +0000050729 00000 n +0000050832 00000 n +0000051006 00000 n +0000051210 00000 n 0000008312 00000 n -0000050414 00000 n +0000051383 00000 n 0000000177 00000 n -0000050536 00000 n -0000050686 00000 n -0000050890 00000 n +0000051505 00000 n +0000051655 00000 n +0000051859 00000 n 0000008519 00000 n -0000051063 00000 n +0000052032 00000 n 0000000231 00000 n -0000051185 00000 n -0000051359 00000 n -0000051563 00000 n +0000052154 00000 n +0000052328 00000 n +0000052532 00000 n 0000008726 00000 n -0000051736 00000 n +0000052705 00000 n 0000000285 00000 n -0000051858 00000 n -0000052024 00000 n -0000052228 00000 n +0000052827 00000 n +0000052993 00000 n +0000053197 00000 n 0000008928 00000 n -0000052401 00000 n +0000053370 00000 n 0000000339 00000 n -0000052523 00000 n -0000052665 00000 n -0000052869 00000 n +0000053492 00000 n +0000053634 00000 n +0000053838 00000 n 0000009129 00000 n 0000000393 00000 n -0000053001 00000 n -0000053104 00000 n -0000053274 00000 n -0000053478 00000 n +0000053970 00000 n +0000054073 00000 n +0000054243 00000 n +0000054447 00000 n 0000009328 00000 n -0000053651 00000 n +0000054620 00000 n 0000000447 00000 n -0000053773 00000 n -0000053935 00000 n -0000054139 00000 n +0000054742 00000 n +0000054904 00000 n +0000055108 00000 n 0000009530 00000 n -0000054312 00000 n +0000055281 00000 n 0000000501 00000 n 0000010063 00000 n 0000000555 00000 n @@ -2940,53 +2980,53 @@ xref 0000009901 00000 n 0000009952 00000 n 0000010012 00000 n -0000141449 00000 n -0000136905 00000 n -0000139177 00000 n -0000144618 00000 n -0000143721 00000 n -0000144786 00000 n -0000018055 00000 n -0000018117 00000 n -0000018170 00000 n -0000018232 00000 n -0000020855 00000 n -0000020917 00000 n -0000020970 00000 n -0000021032 00000 n -0000021085 00000 n -0000021146 00000 n -0000023169 00000 n -0000023231 00000 n -0000024174 00000 n -0000024236 00000 n -0000026296 00000 n -0000026358 00000 n -0000026411 00000 n -0000026473 00000 n -0000039595 00000 n -0000039657 00000 n -0000054434 00000 n -0000054542 00000 n +0000142693 00000 n +0000138149 00000 n +0000140421 00000 n +0000145862 00000 n +0000144965 00000 n +0000146030 00000 n +0000018133 00000 n +0000018195 00000 n +0000018248 00000 n +0000018310 00000 n +0000021189 00000 n +0000021251 00000 n +0000021304 00000 n +0000021366 00000 n +0000021419 00000 n +0000021480 00000 n +0000023581 00000 n +0000023643 00000 n +0000024664 00000 n +0000024726 00000 n +0000026864 00000 n +0000026926 00000 n +0000026979 00000 n +0000027041 00000 n +0000040241 00000 n +0000040303 00000 n +0000055403 00000 n +0000055511 00000 n 0000016337 00000 n -0000054740 00000 n -0000054877 00000 n -0000055086 00000 n -0000055293 00000 n +0000055709 00000 n +0000055846 00000 n +0000056055 00000 n +0000056262 00000 n 0000016512 00000 n -0000055470 00000 n +0000056439 00000 n 0000010177 00000 n -0000055594 00000 n -0000055811 00000 n -0000056020 00000 n +0000056563 00000 n +0000056780 00000 n +0000056989 00000 n 0000016722 00000 n -0000056198 00000 n +0000057167 00000 n 0000010234 00000 n -0000056322 00000 n -0000056507 00000 n -0000056717 00000 n +0000057291 00000 n +0000057476 00000 n +0000057686 00000 n 0000016932 00000 n -0000056896 00000 n +0000057865 00000 n 0000010291 00000 n 0000017371 00000 n 0000010348 00000 n @@ -2994,177 +3034,177 @@ xref 0000017204 00000 n 0000017256 00000 n 0000017318 00000 n -0000020740 00000 n -0000020802 00000 n -0000023054 00000 n -0000023116 00000 n -0000026181 00000 n -0000026243 00000 n -0000057021 00000 n -0000057119 00000 n -0000057315 00000 n -0000017803 00000 n -0000057450 00000 n -0000018285 00000 n -0000017462 00000 n -0000017942 00000 n -0000018003 00000 n -0000057566 00000 n -0000057691 00000 n -0000057883 00000 n -0000020258 00000 n -0000058018 00000 n -0000058126 00000 n -0000058313 00000 n -0000020417 00000 n +0000021074 00000 n +0000021136 00000 n +0000023466 00000 n +0000023528 00000 n +0000026749 00000 n +0000026811 00000 n +0000057990 00000 n +0000058088 00000 n +0000058318 00000 n +0000017881 00000 n +0000058453 00000 n 0000018363 00000 n -0000058448 00000 n -0000058547 00000 n -0000058659 00000 n -0000058783 00000 n -0000058926 00000 n -0000059035 00000 n -0000059238 00000 n -0000059373 00000 n -0000059481 00000 n -0000059624 00000 n -0000059733 00000 n -0000059913 00000 n -0000060049 00000 n -0000060157 00000 n -0000021198 00000 n -0000018420 00000 n -0000020627 00000 n -0000020688 00000 n -0000060301 00000 n -0000060410 00000 n -0000060610 00000 n -0000022572 00000 n -0000060745 00000 n -0000060853 00000 n -0000061040 00000 n -0000022731 00000 n -0000021301 00000 n -0000061175 00000 n -0000061274 00000 n -0000061386 00000 n -0000061510 00000 n -0000023284 00000 n -0000021358 00000 n -0000022941 00000 n -0000023002 00000 n -0000061653 00000 n -0000061762 00000 n -0000061954 00000 n -0000023923 00000 n -0000062089 00000 n -0000062197 00000 n -0000024289 00000 n -0000023375 00000 n -0000024062 00000 n -0000024123 00000 n -0000062340 00000 n -0000062448 00000 n -0000062557 00000 n -0000062753 00000 n -0000025698 00000 n -0000062888 00000 n -0000062996 00000 n -0000063183 00000 n -0000025857 00000 n -0000024380 00000 n -0000063318 00000 n -0000063417 00000 n -0000063529 00000 n -0000063653 00000 n -0000026526 00000 n -0000024437 00000 n -0000026068 00000 n -0000026129 00000 n -0000144902 00000 n -0000063796 00000 n -0000063905 00000 n -0000064093 00000 n -0000039344 00000 n -0000064228 00000 n -0000064336 00000 n -0000026617 00000 n -0000039710 00000 n -0000038805 00000 n -0000039483 00000 n -0000039544 00000 n -0000039914 00000 n -0000039951 00000 n -0000145989 00000 n -0000040010 00000 n -0000040098 00000 n -0000145857 00000 n -0000040154 00000 n -0000040207 00000 n -0000145739 00000 n -0000040266 00000 n -0000040352 00000 n -0000145660 00000 n -0000040416 00000 n -0000040512 00000 n -0000145581 00000 n -0000040576 00000 n -0000040639 00000 n -0000145488 00000 n -0000040698 00000 n -0000040794 00000 n -0000145409 00000 n +0000017462 00000 n +0000018020 00000 n +0000018081 00000 n +0000058569 00000 n +0000058694 00000 n +0000058920 00000 n +0000020592 00000 n +0000059055 00000 n +0000059163 00000 n +0000059350 00000 n +0000020751 00000 n +0000018454 00000 n +0000059485 00000 n +0000059584 00000 n +0000059696 00000 n +0000059820 00000 n +0000059963 00000 n +0000060072 00000 n +0000060310 00000 n +0000060445 00000 n +0000060553 00000 n +0000060697 00000 n +0000060806 00000 n +0000061021 00000 n +0000061157 00000 n +0000061265 00000 n +0000021532 00000 n +0000018511 00000 n +0000020961 00000 n +0000021022 00000 n +0000061409 00000 n +0000061518 00000 n +0000061752 00000 n +0000022984 00000 n +0000061887 00000 n +0000061995 00000 n +0000062182 00000 n +0000023143 00000 n +0000021635 00000 n +0000062317 00000 n +0000062416 00000 n +0000062528 00000 n +0000062652 00000 n +0000023696 00000 n +0000021692 00000 n +0000023353 00000 n +0000023414 00000 n +0000062795 00000 n +0000062904 00000 n +0000063130 00000 n +0000024413 00000 n +0000063265 00000 n +0000063373 00000 n +0000024779 00000 n +0000023787 00000 n +0000024552 00000 n +0000024613 00000 n +0000063516 00000 n +0000063624 00000 n +0000063733 00000 n +0000063963 00000 n +0000026266 00000 n +0000064098 00000 n +0000064206 00000 n +0000064393 00000 n +0000026425 00000 n +0000024870 00000 n +0000064528 00000 n +0000064627 00000 n +0000064739 00000 n +0000064863 00000 n +0000027094 00000 n +0000024927 00000 n +0000026636 00000 n +0000026697 00000 n +0000146146 00000 n +0000065006 00000 n +0000065115 00000 n +0000065337 00000 n +0000039990 00000 n +0000065472 00000 n +0000065580 00000 n +0000027185 00000 n +0000040356 00000 n +0000039373 00000 n +0000040129 00000 n +0000040190 00000 n +0000040560 00000 n +0000040597 00000 n +0000147233 00000 n +0000040656 00000 n +0000040744 00000 n +0000147101 00000 n +0000040800 00000 n 0000040853 00000 n -0000040939 00000 n -0000145291 00000 n -0000040995 00000 n -0000041048 00000 n -0000145212 00000 n -0000041107 00000 n -0000041198 00000 n -0000145133 00000 n -0000041257 00000 n -0000042411 00000 n -0000043326 00000 n -0000044288 00000 n -0000044656 00000 n -0000045370 00000 n -0000134587 00000 n -0000064618 00000 n -0000065196 00000 n -0000065219 00000 n -0000065674 00000 n -0000066115 00000 n -0000066536 00000 n -0000069201 00000 n -0000069421 00000 n -0000086947 00000 n -0000087252 00000 n -0000101556 00000 n -0000101840 00000 n -0000116847 00000 n -0000117148 00000 n -0000134244 00000 n -0000134815 00000 n -0000137087 00000 n -0000139359 00000 n -0000141631 00000 n -0000143904 00000 n -0000144987 00000 n -0000145056 00000 n -0000146068 00000 n -0000146265 00000 n -0000146427 00000 n -0000146605 00000 n -0000146806 00000 n -0000146908 00000 n -0000146946 00000 n -0000147209 00000 n +0000146983 00000 n +0000040912 00000 n +0000040998 00000 n +0000146904 00000 n +0000041062 00000 n +0000041158 00000 n +0000146825 00000 n +0000041222 00000 n +0000041285 00000 n +0000146732 00000 n +0000041344 00000 n +0000041440 00000 n +0000146653 00000 n +0000041499 00000 n +0000041585 00000 n +0000146535 00000 n +0000041641 00000 n +0000041694 00000 n +0000146456 00000 n +0000041753 00000 n +0000041844 00000 n +0000146377 00000 n +0000041903 00000 n +0000043121 00000 n +0000044036 00000 n +0000044998 00000 n +0000045366 00000 n +0000046187 00000 n +0000135831 00000 n +0000065862 00000 n +0000066440 00000 n +0000066463 00000 n +0000066918 00000 n +0000067359 00000 n +0000067780 00000 n +0000070445 00000 n +0000070665 00000 n +0000088191 00000 n +0000088496 00000 n +0000102800 00000 n +0000103084 00000 n +0000118091 00000 n +0000118392 00000 n +0000135488 00000 n +0000136059 00000 n +0000138331 00000 n +0000140603 00000 n +0000142875 00000 n +0000145148 00000 n +0000146231 00000 n +0000146300 00000 n +0000147312 00000 n +0000147509 00000 n +0000147671 00000 n +0000147849 00000 n +0000148050 00000 n +0000148152 00000 n +0000148190 00000 n +0000148453 00000 n trailer << /Size 317 /Root 315 0 R /Info 316 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -147419 +148663 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.luatex.tpf index e88f79572..24052af66 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.luatex.tpf @@ -503,21 +503,25 @@ endobj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> endobj 165 0 obj -<< /Length 392 >> +<< /Length 437 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(In)31(tro)-30(duction)]TJ ET @@ -547,7 +551,7 @@ endobj << /D [ 164 0 R /XYZ 133.768 675.168 null ] >> endobj 105 0 obj -[ 161 0 R /XYZ 133.768 675.168 null ] +[ 160 0 R /XYZ 133.768 675.168 null ] endobj 106 0 obj << /D [ 164 0 R /XYZ 133.768 647.37 null ] >> @@ -562,7 +566,7 @@ endobj << /Type/OBJR/Obj 174 0 R/Pg 189 0 R >> endobj 192 0 obj -<< /Length 2770 >> +<< /Length 2968 >> stream /opacity1 gs /Artifact BMC @@ -601,16 +605,22 @@ BT 1 0 0 1 355.036 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(2)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Swiss)]TJ /F15 9.96264 Tf @@ -621,7 +631,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(A)]TJ @@ -645,21 +655,27 @@ BT 1 0 0 1 232.565 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 235.886 596.671 Tm [(1)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 568.782 Tm [(2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 568.782 Tm [<0067>]TJ +1 0 0 1 150.954 568.782 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 568.782 Tm [(Living)]TJ @@ -671,21 +687,27 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 550.393 Tm [(Switzerland)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 522.505 Tm [(2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 522.505 Tm [<0067>]TJ +1 0 0 1 150.954 522.505 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 522.505 Tm [(Hobbies)]TJ @@ -693,7 +715,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 504.115 Tm [(Albhorn)]TJ @@ -736,19 +758,19 @@ endobj << /D [ 189 0 R /XYZ 133.768 636.425 null ] >> endobj 109 0 obj -[ 170 0 R /XYZ 133.768 636.425 null ] +[ 169 0 R /XYZ 133.768 636.425 null ] endobj 110 0 obj << /D [ 189 0 R /XYZ 133.768 582.73 null ] >> endobj 111 0 obj -[ 181 0 R /XYZ 133.768 582.73 null ] +[ 180 0 R /XYZ 133.768 582.73 null ] endobj 112 0 obj << /D [ 189 0 R /XYZ 133.768 536.452 null ] >> endobj 113 0 obj -[ 186 0 R /XYZ 133.768 536.452 null ] +[ 185 0 R /XYZ 133.768 536.452 null ] endobj 191 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> @@ -757,7 +779,7 @@ endobj << /Type/OBJR/Obj 202 0 R/Pg 207 0 R >> endobj 210 0 obj -<< /Length 1843 >> +<< /Length 1906 >> stream /opacity1 gs /Artifact BMC @@ -796,16 +818,22 @@ BT 1 0 0 1 357.997 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(3)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Italian)]TJ /F15 9.96264 Tf @@ -816,7 +844,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Italian)]TJ @@ -836,7 +864,7 @@ BT 1 0 0 1 231.292 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 234.613 596.671 Tm [(2)]TJ @@ -879,27 +907,31 @@ endobj << /D [ 207 0 R /XYZ 133.768 636.425 null ] >> endobj 115 0 obj -[ 198 0 R /XYZ 133.768 636.425 null ] +[ 197 0 R /XYZ 133.768 636.425 null ] endobj 209 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> endobj 221 0 obj -<< /Length 722 >> +<< /Length 767 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(4)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Mask)31(ed)]TJ /F15 9.96264 Tf @@ -910,7 +942,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Mask)27(ed)]TJ @@ -945,7 +977,7 @@ endobj << /D [ 220 0 R /XYZ 133.768 675.168 null ] >> endobj 117 0 obj -[ 216 0 R /XYZ 133.768 675.168 null ] +[ 215 0 R /XYZ 133.768 675.168 null ] endobj 219 0 obj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> @@ -954,7 +986,7 @@ endobj << /Type/OBJR/Obj 231 0 R/Pg 236 0 R >> endobj 239 0 obj -<< /Length 1977 >> +<< /Length 2022 >> stream /opacity1 gs /Artifact BMC @@ -991,16 +1023,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(5)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Hugging)]TJ /F15 9.96264 Tf @@ -1011,7 +1047,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Duc)27(k)]TJ @@ -1039,7 +1075,7 @@ BT 1 0 0 1 283.706 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 287.027 596.671 Tm [(3)]TJ @@ -1088,27 +1124,31 @@ endobj << /D [ 236 0 R /XYZ 133.768 636.425 null ] >> endobj 121 0 obj -[ 227 0 R /XYZ 133.768 636.425 null ] +[ 226 0 R /XYZ 133.768 636.425 null ] endobj 238 0 obj << /ExtGState 1 0 R /Font << /F16 101 0 R /F15 100 0 R /F18 98 0 R >> >> endobj 251 0 obj -<< /Length 718 >> +<< /Length 763 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(6)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Witc)31(h)]TJ /F15 9.96264 Tf @@ -1119,7 +1159,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Witc)27(h)]TJ @@ -1154,7 +1194,7 @@ endobj << /D [ 250 0 R /XYZ 133.768 675.168 null ] >> endobj 123 0 obj -[ 245 0 R /XYZ 133.768 675.168 null ] +[ 244 0 R /XYZ 133.768 675.168 null ] endobj 249 0 obj << /ExtGState 1 0 R /Font << /F18 98 0 R /F15 100 0 R /F16 101 0 R >> >> @@ -1237,12 +1277,12 @@ endobj 6 0 obj << /Nums [0 [ 27 0 R 31 0 R 30 0 R 32 0 R 35 0 R 36 0 R 41 0 R 40 0 R 42 0 R 47 0 R 46 0 R 48 0 R 52 0 R 51 0 R 53 0 R 57 0 R 56 0 R 58 0 R 62 0 R 61 0 R 63 0 R 66 0 R 67 0 R 72 0 R 71 0 R 73 0 R 77 0 R 76 0 R 78 0 R] 1 [ 125 0 R 129 0 R 128 0 R 130 0 R 134 0 R 133 0 R 135 0 R 139 0 R 138 0 R 140 0 R] -2 [ 161 0 R 160 0 R] -3 [ 177 0 R 178 0 R 170 0 R 169 0 R 172 0 R 173 0 R 181 0 R 180 0 R 183 0 R 186 0 R 185 0 R 188 0 R] -4 [ 205 0 R 206 0 R 198 0 R 197 0 R 200 0 R 201 0 R] -5 [ 216 0 R 215 0 R 218 0 R] -6 [ 234 0 R 235 0 R 227 0 R 226 0 R 229 0 R 230 0 R] -7 [ 245 0 R 244 0 R 247 0 R] +2 [ 161 0 R 160 0 R 160 0 R] +3 [ 177 0 R 178 0 R 170 0 R 169 0 R 169 0 R 172 0 R 173 0 R 181 0 R 180 0 R 180 0 R 183 0 R 186 0 R 185 0 R 185 0 R 188 0 R] +4 [ 205 0 R 206 0 R 198 0 R 197 0 R 197 0 R 200 0 R 201 0 R] +5 [ 216 0 R 215 0 R 215 0 R 218 0 R] +6 [ 234 0 R 235 0 R 227 0 R 226 0 R 226 0 R 229 0 R 230 0 R] +7 [ 245 0 R 244 0 R 244 0 R 247 0 R] 8 32 0 R 9 36 0 R 10 42 0 R @@ -1274,7 +1314,7 @@ endobj << /Kids [285 0 R 286 0 R 287 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 289 0 obj << /justify <> @@ -1293,7 +1333,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1332,7 +1372,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 26 0 R /K [29 0 R 34 0 R 38 0 R 65 0 R 69 0 R] /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 161 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 160 0 R ] /K 30 0 R /ID (ID.0009) >> endobj 30 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R <> 32 0 R ] /ID (ID.0010) >> @@ -1356,7 +1396,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [39 0 R 44 0 R 55 0 R 60 0 R] /ID (ID.0016) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 170 0 R ] /K 40 0 R /ID (ID.0017) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 169 0 R ] /K 40 0 R /ID (ID.0017) >> endobj 40 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [ 41 0 R <> 42 0 R ] /ID (ID.0018) >> @@ -1371,7 +1411,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [45 0 R 50 0 R] /ID (ID.0021) >> endobj 45 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 181 0 R ] /K 46 0 R /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 180 0 R ] /K 46 0 R /ID (ID.0022) >> endobj 46 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [ 47 0 R <> 48 0 R ] /ID (ID.0023) >> @@ -1383,7 +1423,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 46 0 R /K [<> 83 0 R] /ID (ID.0025) >> endobj 50 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 186 0 R ] /K 51 0 R /ID (ID.0026) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 185 0 R ] /K 51 0 R /ID (ID.0026) >> endobj 51 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 50 0 R /K [ 52 0 R <> 53 0 R ] /ID (ID.0027) >> @@ -1395,7 +1435,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 51 0 R /K [<> 84 0 R] /ID (ID.0029) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 198 0 R ] /K 56 0 R /ID (ID.0030) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 197 0 R ] /K 56 0 R /ID (ID.0030) >> endobj 56 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [ 57 0 R <> 58 0 R ] /ID (ID.0031) >> @@ -1407,7 +1447,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 56 0 R /K [<> 85 0 R] /ID (ID.0033) >> endobj 60 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 216 0 R ] /K 61 0 R /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 215 0 R ] /K 61 0 R /ID (ID.0034) >> endobj 61 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [ 62 0 R <> 63 0 R ] /ID (ID.0035) >> @@ -1431,7 +1471,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [70 0 R 75 0 R] /ID (ID.0041) >> endobj 70 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 227 0 R ] /K 71 0 R /ID (ID.0042) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 226 0 R ] /K 71 0 R /ID (ID.0042) >> endobj 71 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 70 0 R /K [ 72 0 R <> 73 0 R ] /ID (ID.0043) >> @@ -1443,7 +1483,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 71 0 R /K [<> 88 0 R] /ID (ID.0045) >> endobj 75 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 245 0 R ] /K 76 0 R /ID (ID.0046) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 69 0 R /Ref [ 244 0 R ] /K 76 0 R /ID (ID.0046) >> endobj 76 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 75 0 R /K [ 77 0 R <> 78 0 R ] /ID (ID.0047) >> @@ -1503,10 +1543,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 160 0 R /ID (ID.0065) >> endobj 160 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 159 0 R /K [161 0 R <> ] /ID (ID.0066) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 159 0 R /K [161 0 R <> <> ] /ID (ID.0066) >> endobj 161 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 160 0 R /K <> /ID (ID.0067) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 160 0 R /K <> /ID (ID.0067) >> endobj 162 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [168 0 R 196 0 R 214 0 R] /ID (ID.0068) >> @@ -1515,19 +1555,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [169 0 R 171 0 R 179 0 R 184 0 R] /ID (ID.0069) >> endobj 169 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 168 0 R /K [170 0 R <> ] /ID (ID.0070) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 168 0 R /K [170 0 R <> <> ] /ID (ID.0070) >> endobj 170 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 169 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 169 0 R /K <> /ID (ID.0071) >> endobj 171 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 168 0 R /K 172 0 R /ID (ID.0072) >> endobj 172 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 171 0 R /K [<> 173 0 R ] /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 171 0 R /K [<> 173 0 R ] /ID (ID.0073) >> endobj 173 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 172 0 R /K [<> 190 0 R] /ID (ID.0074) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 172 0 R /K [<> 190 0 R] /ID (ID.0074) >> endobj 175 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 176 0 R /ID (ID.0075) >> @@ -1545,49 +1585,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 168 0 R /K [180 0 R 182 0 R] /ID (ID.0079) >> endobj 180 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> ] /ID (ID.0080) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> <> ] /ID (ID.0080) >> endobj 181 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0081) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0081) >> endobj 182 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 179 0 R /K 183 0 R /ID (ID.0082) >> endobj 183 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0083) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0083) >> endobj 184 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 168 0 R /K [185 0 R 187 0 R] /ID (ID.0084) >> endobj 185 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> ] /ID (ID.0085) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> <> ] /ID (ID.0085) >> endobj 186 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0086) >> endobj 187 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 188 0 R /ID (ID.0087) >> endobj 188 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0088) >> endobj 196 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [197 0 R 199 0 R] /ID (ID.0089) >> endobj 197 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <> ] /ID (ID.0090) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <> <> ] /ID (ID.0090) >> endobj 198 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0091) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0091) >> endobj 199 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 196 0 R /K 200 0 R /ID (ID.0092) >> endobj 200 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 199 0 R /K [<> 201 0 R ] /ID (ID.0093) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 199 0 R /K [<> 201 0 R ] /ID (ID.0093) >> endobj 201 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 200 0 R /K [<> 208 0 R] /ID (ID.0094) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 200 0 R /K [<> 208 0 R] /ID (ID.0094) >> endobj 203 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 204 0 R /ID (ID.0095) >> @@ -1605,16 +1645,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 162 0 R /K [215 0 R 217 0 R] /ID (ID.0099) >> endobj 215 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 214 0 R /K [216 0 R <> ] /ID (ID.0100) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 214 0 R /K [216 0 R <> <> ] /ID (ID.0100) >> endobj 216 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 215 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 215 0 R /K <> /ID (ID.0101) >> endobj 217 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 214 0 R /K 218 0 R /ID (ID.0102) >> endobj 218 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 217 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 217 0 R /K <> /ID (ID.0103) >> endobj 224 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [225 0 R 243 0 R] /ID (ID.0104) >> @@ -1623,19 +1663,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 224 0 R /K [226 0 R 228 0 R] /ID (ID.0105) >> endobj 226 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 225 0 R /K [227 0 R <> ] /ID (ID.0106) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 225 0 R /K [227 0 R <> <> ] /ID (ID.0106) >> endobj 227 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 226 0 R /K <> /ID (ID.0107) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 226 0 R /K <> /ID (ID.0107) >> endobj 228 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 229 0 R /ID (ID.0108) >> endobj 229 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K [<> 230 0 R ] /ID (ID.0109) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K [<> 230 0 R ] /ID (ID.0109) >> endobj 230 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 229 0 R /K [<> 237 0 R] /ID (ID.0110) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 229 0 R /K [<> 237 0 R] /ID (ID.0110) >> endobj 232 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 233 0 R /ID (ID.0111) >> @@ -1653,16 +1693,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 224 0 R /K [244 0 R 246 0 R] /ID (ID.0115) >> endobj 244 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 243 0 R /K [245 0 R <> ] /ID (ID.0116) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 243 0 R /K [245 0 R <> <> ] /ID (ID.0116) >> endobj 245 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 244 0 R /K <> /ID (ID.0117) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 244 0 R /K <> /ID (ID.0117) >> endobj 246 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 247 0 R /ID (ID.0118) >> endobj 247 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 246 0 R /K <> /ID (ID.0119) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 246 0 R /K <> /ID (ID.0119) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 288 0 R /ClassMap 289 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -2407,84 +2447,84 @@ endobj xref 0 312 0000000010 65535 f -0000025519 00000 n -0000025566 00000 n -0000025588 00000 n -0000025610 00000 n -0000048834 00000 n -0000027066 00000 n -0000030164 00000 n -0000032466 00000 n -0000030986 00000 n +0000025960 00000 n +0000026007 00000 n +0000026029 00000 n +0000026051 00000 n +0000049889 00000 n +0000027507 00000 n +0000030669 00000 n +0000033230 00000 n +0000031598 00000 n 0000000012 00000 f -0000031054 00000 n +0000031666 00000 n 0000000014 00000 f -0000031124 00000 n +0000031736 00000 n 0000000020 00000 f -0000032004 00000 n -0000031205 00000 n -0000032277 00000 n -0000032106 00000 n -0000032379 00000 n +0000032768 00000 n +0000031817 00000 n +0000033041 00000 n +0000032870 00000 n +0000033143 00000 n 0000000000 00000 f 0000004527 00000 n -0000032527 00000 n -0000032667 00000 n -0000032757 00000 n -0000032875 00000 n -0000032965 00000 n -0000033070 00000 n -0000033239 00000 n -0000033385 00000 n -0000033555 00000 n -0000033702 00000 n -0000033825 00000 n +0000033291 00000 n +0000033431 00000 n +0000033521 00000 n +0000033639 00000 n +0000033729 00000 n +0000033834 00000 n +0000034003 00000 n +0000034149 00000 n +0000034319 00000 n +0000034466 00000 n +0000034589 00000 n 0000004770 00000 n -0000033958 00000 n -0000034100 00000 n -0000034239 00000 n +0000034722 00000 n +0000034864 00000 n +0000035003 00000 n 0000004997 00000 n -0000034372 00000 n -0000034489 00000 n -0000034655 00000 n -0000034802 00000 n -0000034925 00000 n +0000035136 00000 n +0000035253 00000 n +0000035419 00000 n +0000035566 00000 n +0000035689 00000 n 0000005220 00000 n -0000035058 00000 n -0000035161 00000 n -0000035335 00000 n -0000035483 00000 n -0000035606 00000 n +0000035822 00000 n +0000035925 00000 n +0000036099 00000 n +0000036247 00000 n +0000036370 00000 n 0000005448 00000 n -0000035740 00000 n -0000035890 00000 n -0000036038 00000 n -0000036162 00000 n +0000036504 00000 n +0000036654 00000 n +0000036802 00000 n +0000036926 00000 n 0000005680 00000 n -0000036296 00000 n -0000036470 00000 n -0000036618 00000 n -0000036742 00000 n +0000037060 00000 n +0000037234 00000 n +0000037382 00000 n +0000037506 00000 n 0000005913 00000 n -0000036876 00000 n -0000037042 00000 n -0000037190 00000 n -0000037314 00000 n +0000037640 00000 n +0000037806 00000 n +0000037954 00000 n +0000038078 00000 n 0000006141 00000 n -0000037448 00000 n -0000037590 00000 n -0000037730 00000 n +0000038212 00000 n +0000038354 00000 n +0000038494 00000 n 0000006369 00000 n -0000037864 00000 n -0000037967 00000 n -0000038137 00000 n -0000038285 00000 n -0000038409 00000 n +0000038628 00000 n +0000038731 00000 n +0000038901 00000 n +0000039049 00000 n +0000039173 00000 n 0000006594 00000 n -0000038543 00000 n -0000038705 00000 n -0000038853 00000 n -0000038977 00000 n +0000039307 00000 n +0000039469 00000 n +0000039617 00000 n +0000039741 00000 n 0000006821 00000 n 0000000020 00000 n 0000000074 00000 n @@ -2504,49 +2544,49 @@ xref 0000007223 00000 n 0000007276 00000 n 0000007338 00000 n -0000116155 00000 n -0000114203 00000 n -0000063121 00000 n -0000118102 00000 n -0000118264 00000 n +0000117210 00000 n +0000115258 00000 n +0000064176 00000 n +0000119157 00000 n +0000119319 00000 n 0000004679 00000 n -0000012809 00000 n -0000012873 00000 n -0000012928 00000 n -0000012991 00000 n -0000016679 00000 n -0000016743 00000 n -0000016798 00000 n -0000016861 00000 n -0000016915 00000 n -0000016979 00000 n -0000019740 00000 n -0000019804 00000 n -0000020987 00000 n -0000021051 00000 n -0000023948 00000 n -0000024012 00000 n -0000024067 00000 n -0000024131 00000 n -0000025310 00000 n -0000025374 00000 n -0000039111 00000 n -0000039219 00000 n -0000039419 00000 n -0000039556 00000 n -0000039765 00000 n -0000039917 00000 n -0000040043 00000 n +0000012854 00000 n +0000012918 00000 n +0000012973 00000 n +0000013036 00000 n +0000016922 00000 n +0000016986 00000 n +0000017041 00000 n +0000017104 00000 n +0000017158 00000 n +0000017222 00000 n +0000020046 00000 n +0000020110 00000 n +0000021338 00000 n +0000021402 00000 n +0000024344 00000 n +0000024408 00000 n +0000024463 00000 n +0000024527 00000 n +0000025751 00000 n +0000025815 00000 n +0000039875 00000 n +0000039983 00000 n +0000040183 00000 n +0000040320 00000 n +0000040529 00000 n +0000040681 00000 n +0000040807 00000 n 0000011065 00000 n -0000040180 00000 n -0000040397 00000 n -0000040549 00000 n -0000040675 00000 n +0000040944 00000 n +0000041161 00000 n +0000041313 00000 n +0000041439 00000 n 0000011301 00000 n -0000040812 00000 n -0000040997 00000 n -0000041149 00000 n -0000041275 00000 n +0000041576 00000 n +0000041761 00000 n +0000041913 00000 n +0000042039 00000 n 0000011537 00000 n 0000010865 00000 n 0000007492 00000 n @@ -2559,167 +2599,167 @@ xref 0000011891 00000 n 0000011955 00000 n 0000011020 00000 n -0000016560 00000 n -0000016624 00000 n -0000019621 00000 n -0000019685 00000 n -0000023829 00000 n -0000023893 00000 n -0000041412 00000 n -0000041510 00000 n -0000041708 00000 n -0000041845 00000 n -0000013045 00000 n -0000012553 00000 n +0000016803 00000 n +0000016867 00000 n +0000019927 00000 n +0000019991 00000 n +0000024225 00000 n +0000024289 00000 n +0000042176 00000 n +0000042274 00000 n +0000042508 00000 n +0000042645 00000 n +0000013090 00000 n +0000012598 00000 n 0000012100 00000 n -0000012692 00000 n -0000012755 00000 n -0000041961 00000 n -0000042086 00000 n -0000042280 00000 n -0000042417 00000 n -0000042525 00000 n -0000042681 00000 n -0000016207 00000 n -0000042818 00000 n -0000042917 00000 n -0000043029 00000 n -0000043155 00000 n -0000043300 00000 n -0000043409 00000 n -0000043614 00000 n -0000043751 00000 n -0000043859 00000 n -0000044004 00000 n -0000044113 00000 n -0000044295 00000 n -0000044432 00000 n -0000044540 00000 n -0000016023 00000 n -0000013135 00000 n -0000017034 00000 n -0000013192 00000 n -0000016443 00000 n -0000016506 00000 n -0000016178 00000 n -0000044686 00000 n -0000044795 00000 n -0000044997 00000 n -0000045134 00000 n -0000045242 00000 n -0000045398 00000 n -0000019269 00000 n -0000045535 00000 n -0000045634 00000 n -0000045746 00000 n -0000045872 00000 n -0000019085 00000 n -0000017124 00000 n -0000019859 00000 n -0000017181 00000 n -0000019504 00000 n -0000019567 00000 n -0000019240 00000 n -0000046017 00000 n -0000046126 00000 n -0000046320 00000 n -0000046457 00000 n -0000046565 00000 n -0000021106 00000 n -0000020732 00000 n -0000019949 00000 n -0000020871 00000 n -0000020934 00000 n -0000046710 00000 n -0000046818 00000 n -0000046927 00000 n -0000047125 00000 n -0000047262 00000 n -0000047370 00000 n -0000047526 00000 n -0000023475 00000 n -0000047663 00000 n -0000047762 00000 n -0000047874 00000 n -0000048000 00000 n -0000023291 00000 n -0000021196 00000 n -0000024186 00000 n -0000021253 00000 n -0000023712 00000 n -0000023775 00000 n -0000023446 00000 n -0000048145 00000 n -0000048254 00000 n -0000048444 00000 n -0000048581 00000 n -0000048689 00000 n -0000048973 00000 n -0000025429 00000 n -0000025055 00000 n -0000024276 00000 n -0000025194 00000 n -0000025257 00000 n -0000025632 00000 n -0000025669 00000 n -0000119316 00000 n -0000025728 00000 n -0000025817 00000 n -0000119184 00000 n -0000025873 00000 n -0000025927 00000 n -0000119066 00000 n -0000025986 00000 n +0000012737 00000 n +0000012800 00000 n +0000042761 00000 n +0000042886 00000 n +0000043116 00000 n +0000043253 00000 n +0000043361 00000 n +0000043517 00000 n +0000016450 00000 n +0000043654 00000 n +0000043753 00000 n +0000043865 00000 n +0000043991 00000 n +0000044136 00000 n +0000044245 00000 n +0000044486 00000 n +0000044623 00000 n +0000044731 00000 n +0000044877 00000 n +0000044986 00000 n +0000045205 00000 n +0000045343 00000 n +0000045451 00000 n +0000016266 00000 n +0000013180 00000 n +0000017277 00000 n +0000013237 00000 n +0000016686 00000 n +0000016749 00000 n +0000016421 00000 n +0000045597 00000 n +0000045706 00000 n +0000045944 00000 n +0000046081 00000 n +0000046189 00000 n +0000046345 00000 n +0000019575 00000 n +0000046482 00000 n +0000046581 00000 n +0000046693 00000 n +0000046819 00000 n +0000019391 00000 n +0000017367 00000 n +0000020165 00000 n +0000017424 00000 n +0000019810 00000 n +0000019873 00000 n +0000019546 00000 n +0000046964 00000 n +0000047073 00000 n +0000047303 00000 n +0000047440 00000 n +0000047548 00000 n +0000021457 00000 n +0000021083 00000 n +0000020255 00000 n +0000021222 00000 n +0000021285 00000 n +0000047693 00000 n +0000047801 00000 n +0000047910 00000 n +0000048144 00000 n +0000048281 00000 n +0000048389 00000 n +0000048545 00000 n +0000023871 00000 n +0000048682 00000 n +0000048781 00000 n +0000048893 00000 n +0000049019 00000 n +0000023687 00000 n +0000021547 00000 n +0000024582 00000 n +0000021604 00000 n +0000024108 00000 n +0000024171 00000 n +0000023842 00000 n +0000049164 00000 n +0000049273 00000 n +0000049499 00000 n +0000049636 00000 n +0000049744 00000 n +0000050028 00000 n +0000025870 00000 n +0000025496 00000 n +0000024672 00000 n +0000025635 00000 n +0000025698 00000 n 0000026073 00000 n -0000118987 00000 n -0000026137 00000 n -0000026234 00000 n -0000118908 00000 n -0000026298 00000 n -0000026362 00000 n -0000118815 00000 n -0000026421 00000 n -0000026518 00000 n -0000118736 00000 n -0000026577 00000 n -0000026664 00000 n -0000118618 00000 n -0000026720 00000 n -0000026774 00000 n -0000118539 00000 n -0000026833 00000 n -0000026925 00000 n -0000118460 00000 n -0000026984 00000 n -0000027847 00000 n -0000028761 00000 n -0000029723 00000 n -0000030109 00000 n -0000030823 00000 n -0000061164 00000 n -0000061547 00000 n -0000062171 00000 n -0000061580 00000 n -0000062394 00000 n -0000063278 00000 n -0000063481 00000 n -0000063741 00000 n -0000079333 00000 n -0000064041 00000 n -0000093914 00000 n -0000079542 00000 n -0000112206 00000 n -0000094123 00000 n -0000112413 00000 n -0000114365 00000 n -0000116317 00000 n -0000118383 00000 n -0000119395 00000 n -0000119951 00000 n -0000119989 00000 n -0000120252 00000 n +0000026110 00000 n +0000120371 00000 n +0000026169 00000 n +0000026258 00000 n +0000120239 00000 n +0000026314 00000 n +0000026368 00000 n +0000120121 00000 n +0000026427 00000 n +0000026514 00000 n +0000120042 00000 n +0000026578 00000 n +0000026675 00000 n +0000119963 00000 n +0000026739 00000 n +0000026803 00000 n +0000119870 00000 n +0000026862 00000 n +0000026959 00000 n +0000119791 00000 n +0000027018 00000 n +0000027105 00000 n +0000119673 00000 n +0000027161 00000 n +0000027215 00000 n +0000119594 00000 n +0000027274 00000 n +0000027366 00000 n +0000119515 00000 n +0000027425 00000 n +0000028352 00000 n +0000029266 00000 n +0000030228 00000 n +0000030614 00000 n +0000031435 00000 n +0000062219 00000 n +0000062602 00000 n +0000063226 00000 n +0000062635 00000 n +0000063449 00000 n +0000064333 00000 n +0000064536 00000 n +0000064796 00000 n +0000080388 00000 n +0000065096 00000 n +0000094969 00000 n +0000080597 00000 n +0000113261 00000 n +0000095178 00000 n +0000113468 00000 n +0000115420 00000 n +0000117372 00000 n +0000119438 00000 n +0000120450 00000 n +0000121006 00000 n +0000121044 00000 n +0000121307 00000 n trailer << /Size 312 /Root 310 0 R /Info 311 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -120462 +121517 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.tpf index 075ed6067..05d1a8910 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-2.tpf @@ -556,19 +556,24 @@ endobj endobj 163 0 obj << -/Length 281 +/Length 359 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(In)31(tro)-31(duction)]TJ ET EMC @@ -603,7 +608,7 @@ endobj >> endobj 104 0 obj -[159 0 R /XYZ 133.768 675.168 null] +[158 0 R /XYZ 133.768 675.168 null] endobj 105 0 obj << @@ -616,7 +621,7 @@ endobj 162 0 obj << /ExtGState 1 0 R -/Font << /F47 97 0 R /F45 101 0 R >> +/Font << /F47 97 0 R /F53 100 0 R /F45 101 0 R >> >> endobj 174 0 obj @@ -624,7 +629,7 @@ endobj endobj 190 0 obj << -/Length 1778 +/Length 2021 >> stream /opacity1 gs @@ -640,54 +645,69 @@ BT /F45 9.9626 Tf 280.71 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 42.247 0 Td [(b)-31(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 235.86 596.731 Td [(1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 568.846 Td [(2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 568.846 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 568.846 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 41.321 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 550.458 Td [(Switzerland)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 522.573 Td [(2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 522.573 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 522.573 Td [(Hobbies)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 504.185 Td [(Albhorn)]TJ ET @@ -741,7 +761,7 @@ endobj >> endobj 108 0 obj -[168 0 R /XYZ 133.768 636.482 null] +[167 0 R /XYZ 133.768 636.482 null] endobj 109 0 obj << @@ -749,7 +769,7 @@ endobj >> endobj 110 0 obj -[181 0 R /XYZ 133.768 582.793 null] +[180 0 R /XYZ 133.768 582.793 null] endobj 111 0 obj << @@ -757,7 +777,7 @@ endobj >> endobj 112 0 obj -[186 0 R /XYZ 133.768 536.52 null] +[185 0 R /XYZ 133.768 536.52 null] endobj 189 0 obj << @@ -770,7 +790,7 @@ endobj endobj 207 0 obj << -/Length 1154 +/Length 1232 >> stream /opacity1 gs @@ -786,27 +806,32 @@ BT /F45 9.9626 Tf 277.749 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 30.987 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(3)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 50.511 0 Td [(b)-30(e)-1(a)1(r)-1(s)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.205 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 234.588 596.731 Td [(2)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -857,7 +882,7 @@ endobj >> endobj 114 0 obj -[195 0 R /XYZ 133.768 636.482 null] +[194 0 R /XYZ 133.768 636.482 null] endobj 206 0 obj << @@ -867,23 +892,28 @@ endobj endobj 217 0 obj << -/Length 488 +/Length 566 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Mask)31(ed)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 58.162 0 Td [(b)-30(e)-1(a)1(r)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -919,7 +949,7 @@ endobj >> endobj 116 0 obj -[212 0 R /XYZ 133.768 675.168 null] +[211 0 R /XYZ 133.768 675.168 null] endobj 216 0 obj << @@ -932,7 +962,7 @@ endobj endobj 235 0 obj << -/Length 1201 +/Length 1279 >> stream /opacity1 gs @@ -948,27 +978,32 @@ BT /F45 9.9626 Tf 292.565 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(duc)28(k)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(5)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 63.171 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 286.99 596.731 Td [(3)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -1027,7 +1062,7 @@ endobj >> endobj 120 0 obj -[223 0 R /XYZ 133.768 636.482 null] +[222 0 R /XYZ 133.768 636.482 null] endobj 234 0 obj << @@ -1280,23 +1315,28 @@ endstream endobj 247 0 obj << -/Length 479 +/Length 557 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Witc)31(h)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 47.409 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1332,7 +1372,7 @@ endobj >> endobj 122 0 obj -[241 0 R /XYZ 133.768 675.168 null] +[240 0 R /XYZ 133.768 675.168 null] endobj 246 0 obj << @@ -1418,12 +1458,12 @@ endobj 6 0 obj << /Nums [0 [ 26 0 R 29 0 R 30 0 R 29 0 R 29 0 R 31 0 R 29 0 R 35 0 R 35 0 R 36 0 R 35 0 R 41 0 R 42 0 R 41 0 R 41 0 R 43 0 R 41 0 R 48 0 R 49 0 R 48 0 R 48 0 R 50 0 R 48 0 R 54 0 R 55 0 R 54 0 R 54 0 R 56 0 R 54 0 R 60 0 R 61 0 R 60 0 R 60 0 R 62 0 R 60 0 R 66 0 R 67 0 R 66 0 R 66 0 R 68 0 R 66 0 R 72 0 R 72 0 R 73 0 R 72 0 R 78 0 R 79 0 R 78 0 R 78 0 R 80 0 R 78 0 R 84 0 R 85 0 R 84 0 R 84 0 R 86 0 R 84 0 R ] 1 [ 124 0 R 128 0 R 129 0 R 128 0 R 128 0 R 130 0 R 128 0 R 134 0 R 135 0 R 134 0 R 134 0 R 136 0 R 134 0 R 140 0 R 141 0 R 140 0 R 140 0 R 142 0 R 140 0 R ] -2 [ 159 0 R 158 0 R ] -3 [ 177 0 R 178 0 R 168 0 R 167 0 R 171 0 R 172 0 R 171 0 R 181 0 R 180 0 R 183 0 R 186 0 R 185 0 R 188 0 R ] -4 [ 204 0 R 205 0 R 195 0 R 194 0 R 198 0 R 199 0 R 198 0 R ] -5 [ 212 0 R 211 0 R 215 0 R ] -6 [ 232 0 R 233 0 R 223 0 R 222 0 R 226 0 R 227 0 R 226 0 R ] -7 [ 241 0 R 240 0 R 244 0 R ] +2 [ 159 0 R 158 0 R 158 0 R ] +3 [ 177 0 R 178 0 R 168 0 R 167 0 R 167 0 R 171 0 R 172 0 R 171 0 R 181 0 R 180 0 R 180 0 R 183 0 R 186 0 R 185 0 R 185 0 R 188 0 R ] +4 [ 204 0 R 205 0 R 195 0 R 194 0 R 194 0 R 198 0 R 199 0 R 198 0 R ] +5 [ 212 0 R 211 0 R 211 0 R 215 0 R ] +6 [ 232 0 R 233 0 R 223 0 R 222 0 R 222 0 R 226 0 R 227 0 R 226 0 R ] +7 [ 241 0 R 240 0 R 240 0 R 244 0 R ] 8 31 0 R 9 36 0 R 10 43 0 R @@ -1455,7 +1495,7 @@ endobj << /Kids [281 0 R 282 0 R 283 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 285 0 obj << /justify <> @@ -1474,7 +1514,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1510,7 +1550,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 34 0 R 39 0 R 71 0 R 76 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 159 0 R ] /K 29 0 R /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 158 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <> 31 0 R <>] /ID (ID.0009) >> @@ -1534,7 +1574,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [40 0 R 46 0 R 59 0 R 65 0 R] /ID (ID.0015) >> endobj 40 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 168 0 R ] /K 41 0 R /ID (ID.0016) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 167 0 R ] /K 41 0 R /ID (ID.0016) >> endobj 41 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 40 0 R /K [<> 42 0 R <> <> 43 0 R <>] /ID (ID.0017) >> @@ -1549,7 +1589,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 39 0 R /K [47 0 R 53 0 R] /ID (ID.0020) >> endobj 47 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 181 0 R ] /K 48 0 R /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 180 0 R ] /K 48 0 R /ID (ID.0021) >> endobj 48 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 47 0 R /K [<> 49 0 R <> <> 50 0 R <>] /ID (ID.0022) >> @@ -1561,7 +1601,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 48 0 R /K [<> 52 0 R] /ID (ID.0024) >> endobj 53 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 186 0 R ] /K 54 0 R /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 185 0 R ] /K 54 0 R /ID (ID.0025) >> endobj 54 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 53 0 R /K [<> 55 0 R <> <> 56 0 R <>] /ID (ID.0026) >> @@ -1573,7 +1613,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 54 0 R /K [<> 58 0 R] /ID (ID.0028) >> endobj 59 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 195 0 R ] /K 60 0 R /ID (ID.0029) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 194 0 R ] /K 60 0 R /ID (ID.0029) >> endobj 60 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 59 0 R /K [<> 61 0 R <> <> 62 0 R <>] /ID (ID.0030) >> @@ -1585,7 +1625,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 60 0 R /K [<> 64 0 R] /ID (ID.0032) >> endobj 65 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 212 0 R ] /K 66 0 R /ID (ID.0033) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 211 0 R ] /K 66 0 R /ID (ID.0033) >> endobj 66 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 65 0 R /K [<> 67 0 R <> <> 68 0 R <>] /ID (ID.0034) >> @@ -1609,7 +1649,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [77 0 R 83 0 R] /ID (ID.0040) >> endobj 77 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 223 0 R ] /K 78 0 R /ID (ID.0041) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 222 0 R ] /K 78 0 R /ID (ID.0041) >> endobj 78 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 77 0 R /K [<> 79 0 R <> <> 80 0 R <>] /ID (ID.0042) >> @@ -1621,7 +1661,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 78 0 R /K [<> 82 0 R] /ID (ID.0044) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 241 0 R ] /K 84 0 R /ID (ID.0045) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 76 0 R /Ref [ 240 0 R ] /K 84 0 R /ID (ID.0045) >> endobj 84 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 83 0 R /K [<> 85 0 R <> <> 86 0 R <>] /ID (ID.0046) >> @@ -1681,10 +1721,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 158 0 R /ID (ID.0064) >> endobj 158 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 157 0 R /K [159 0 R <>] /ID (ID.0065) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 157 0 R /K [159 0 R <> <>] /ID (ID.0065) >> endobj 159 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 158 0 R /K <> /ID (ID.0066) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 158 0 R /K <> /ID (ID.0066) >> endobj 161 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [166 0 R 193 0 R 210 0 R] /ID (ID.0067) >> @@ -1693,19 +1733,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [167 0 R 170 0 R 179 0 R 184 0 R] /ID (ID.0068) >> endobj 167 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 166 0 R /K [168 0 R <>] /ID (ID.0069) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 166 0 R /K [168 0 R <> <>] /ID (ID.0069) >> endobj 168 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 167 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 167 0 R /K <> /ID (ID.0070) >> endobj 170 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 166 0 R /K 171 0 R /ID (ID.0071) >> endobj 171 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K [<> 172 0 R <>] /ID (ID.0072) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 170 0 R /K [<> 172 0 R <>] /ID (ID.0072) >> endobj 172 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 171 0 R /K [<> 174 0 R] /ID (ID.0073) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 171 0 R /K [<> 174 0 R] /ID (ID.0073) >> endobj 175 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 176 0 R /ID (ID.0074) >> @@ -1723,49 +1763,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 166 0 R /K [180 0 R 182 0 R] /ID (ID.0078) >> endobj 180 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <>] /ID (ID.0079) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 179 0 R /K [181 0 R <> <>] /ID (ID.0079) >> endobj 181 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0080) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 180 0 R /K <> /ID (ID.0080) >> endobj 182 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 179 0 R /K 183 0 R /ID (ID.0081) >> endobj 183 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0082) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0082) >> endobj 184 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 166 0 R /K [185 0 R 187 0 R] /ID (ID.0083) >> endobj 185 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <>] /ID (ID.0084) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 184 0 R /K [186 0 R <> <>] /ID (ID.0084) >> endobj 186 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 185 0 R /K <> /ID (ID.0085) >> endobj 187 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 188 0 R /ID (ID.0086) >> endobj 188 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 187 0 R /K <> /ID (ID.0087) >> endobj 193 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [194 0 R 197 0 R] /ID (ID.0088) >> endobj 194 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 193 0 R /K [195 0 R <>] /ID (ID.0089) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 193 0 R /K [195 0 R <> <>] /ID (ID.0089) >> endobj 195 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0090) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0090) >> endobj 197 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 193 0 R /K 198 0 R /ID (ID.0091) >> endobj 198 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K [<> 199 0 R <>] /ID (ID.0092) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K [<> 199 0 R <>] /ID (ID.0092) >> endobj 199 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 198 0 R /K [<> 201 0 R] /ID (ID.0093) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 198 0 R /K [<> 201 0 R] /ID (ID.0093) >> endobj 202 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 203 0 R /ID (ID.0094) >> @@ -1783,16 +1823,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 161 0 R /K [211 0 R 214 0 R] /ID (ID.0098) >> endobj 211 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 210 0 R /K [212 0 R <>] /ID (ID.0099) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 210 0 R /K [212 0 R <> <>] /ID (ID.0099) >> endobj 212 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 211 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 211 0 R /K <> /ID (ID.0100) >> endobj 214 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 210 0 R /K 215 0 R /ID (ID.0101) >> endobj 215 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 214 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 214 0 R /K <> /ID (ID.0102) >> endobj 220 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [221 0 R 239 0 R] /ID (ID.0103) >> @@ -1801,19 +1841,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 220 0 R /K [222 0 R 225 0 R] /ID (ID.0104) >> endobj 222 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 221 0 R /K [223 0 R <>] /ID (ID.0105) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 221 0 R /K [223 0 R <> <>] /ID (ID.0105) >> endobj 223 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 222 0 R /K <> /ID (ID.0106) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 222 0 R /K <> /ID (ID.0106) >> endobj 225 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 221 0 R /K 226 0 R /ID (ID.0107) >> endobj 226 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 225 0 R /K [<> 227 0 R <>] /ID (ID.0108) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 225 0 R /K [<> 227 0 R <>] /ID (ID.0108) >> endobj 227 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 226 0 R /K [<> 229 0 R] /ID (ID.0109) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 226 0 R /K [<> 229 0 R] /ID (ID.0109) >> endobj 230 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 231 0 R /ID (ID.0110) >> @@ -1831,16 +1871,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 220 0 R /K [240 0 R 243 0 R] /ID (ID.0114) >> endobj 240 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 239 0 R /K [241 0 R <>] /ID (ID.0115) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 239 0 R /K [241 0 R <> <>] /ID (ID.0115) >> endobj 241 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0116) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0116) >> endobj 243 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 244 0 R /ID (ID.0117) >> endobj 244 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0118) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0118) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 284 0 R /ClassMap 285 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -2844,92 +2884,92 @@ endobj xref 0 317 0000000010 65535 f -0000039853 00000 n -0000039900 00000 n -0000039922 00000 n -0000039944 00000 n -0000064531 00000 n -0000041390 00000 n -0000044763 00000 n -0000047065 00000 n -0000045585 00000 n +0000040499 00000 n +0000040546 00000 n +0000040568 00000 n +0000040590 00000 n +0000065775 00000 n +0000042036 00000 n +0000045473 00000 n +0000048034 00000 n +0000046402 00000 n 0000000012 00000 f -0000045653 00000 n +0000046470 00000 n 0000000014 00000 f -0000045723 00000 n +0000046540 00000 n 0000000020 00000 f -0000046603 00000 n -0000045804 00000 n -0000046876 00000 n -0000046705 00000 n -0000046978 00000 n +0000047572 00000 n +0000046621 00000 n +0000047845 00000 n +0000047674 00000 n +0000047947 00000 n 0000000000 00000 f 0000007533 00000 n -0000047126 00000 n -0000047266 00000 n -0000047384 00000 n -0000047474 00000 n -0000047579 00000 n -0000047746 00000 n -0000047892 00000 n -0000048062 00000 n -0000048303 00000 n -0000048424 00000 n +0000048095 00000 n +0000048235 00000 n +0000048353 00000 n +0000048443 00000 n +0000048548 00000 n +0000048715 00000 n +0000048861 00000 n +0000049031 00000 n +0000049272 00000 n +0000049393 00000 n 0000007751 00000 n 0000000015 00000 n -0000048555 00000 n -0000048697 00000 n -0000048899 00000 n +0000049524 00000 n +0000049666 00000 n +0000049868 00000 n 0000007952 00000 n 0000000069 00000 n -0000049030 00000 n -0000049147 00000 n -0000049313 00000 n -0000049558 00000 n -0000049680 00000 n +0000049999 00000 n +0000050116 00000 n +0000050282 00000 n +0000050527 00000 n +0000050649 00000 n 0000008149 00000 n 0000000123 00000 n -0000049812 00000 n -0000049915 00000 n -0000050089 00000 n -0000050334 00000 n -0000050456 00000 n +0000050781 00000 n +0000050884 00000 n +0000051058 00000 n +0000051303 00000 n +0000051425 00000 n 0000008351 00000 n 0000000177 00000 n -0000050588 00000 n -0000050738 00000 n -0000050983 00000 n -0000051105 00000 n +0000051557 00000 n +0000051707 00000 n +0000051952 00000 n +0000052074 00000 n 0000008558 00000 n 0000000231 00000 n -0000051237 00000 n -0000051411 00000 n -0000051656 00000 n -0000051778 00000 n +0000052206 00000 n +0000052380 00000 n +0000052625 00000 n +0000052747 00000 n 0000008765 00000 n 0000000285 00000 n -0000051910 00000 n -0000052076 00000 n -0000052321 00000 n -0000052443 00000 n +0000052879 00000 n +0000053045 00000 n +0000053290 00000 n +0000053412 00000 n 0000008966 00000 n 0000000339 00000 n -0000052575 00000 n -0000052717 00000 n -0000052921 00000 n +0000053544 00000 n +0000053686 00000 n +0000053890 00000 n 0000009168 00000 n 0000000393 00000 n -0000053053 00000 n -0000053156 00000 n -0000053326 00000 n -0000053571 00000 n -0000053693 00000 n +0000054022 00000 n +0000054125 00000 n +0000054295 00000 n +0000054540 00000 n +0000054662 00000 n 0000009366 00000 n 0000000447 00000 n -0000053825 00000 n -0000053987 00000 n -0000054232 00000 n -0000054354 00000 n +0000054794 00000 n +0000054956 00000 n +0000055201 00000 n +0000055323 00000 n 0000009568 00000 n 0000000501 00000 n 0000010101 00000 n @@ -2940,52 +2980,52 @@ xref 0000009939 00000 n 0000009990 00000 n 0000010050 00000 n -0000141501 00000 n -0000136957 00000 n -0000139229 00000 n -0000144670 00000 n -0000143773 00000 n -0000144838 00000 n -0000018107 00000 n -0000018169 00000 n -0000018222 00000 n -0000018284 00000 n -0000020907 00000 n -0000020969 00000 n -0000021022 00000 n -0000021084 00000 n -0000021137 00000 n -0000021198 00000 n -0000023221 00000 n -0000023283 00000 n -0000024226 00000 n -0000024288 00000 n -0000026348 00000 n -0000026410 00000 n -0000026463 00000 n -0000026525 00000 n -0000039647 00000 n -0000039709 00000 n -0000054486 00000 n -0000054594 00000 n +0000142745 00000 n +0000138201 00000 n +0000140473 00000 n +0000145914 00000 n +0000145017 00000 n +0000146082 00000 n +0000018185 00000 n +0000018247 00000 n +0000018300 00000 n +0000018362 00000 n +0000021241 00000 n +0000021303 00000 n +0000021356 00000 n +0000021418 00000 n +0000021471 00000 n +0000021532 00000 n +0000023633 00000 n +0000023695 00000 n +0000024716 00000 n +0000024778 00000 n +0000026916 00000 n +0000026978 00000 n +0000027031 00000 n +0000027093 00000 n +0000040293 00000 n +0000040355 00000 n +0000055455 00000 n +0000055563 00000 n 0000016390 00000 n -0000054792 00000 n -0000054929 00000 n -0000055138 00000 n -0000055387 00000 n -0000055511 00000 n +0000055761 00000 n +0000055898 00000 n +0000056107 00000 n +0000056356 00000 n +0000056480 00000 n 0000016565 00000 n 0000010215 00000 n -0000055646 00000 n -0000055863 00000 n -0000056114 00000 n -0000056238 00000 n +0000056615 00000 n +0000056832 00000 n +0000057083 00000 n +0000057207 00000 n 0000016775 00000 n 0000010272 00000 n -0000056374 00000 n -0000056559 00000 n -0000056812 00000 n -0000056937 00000 n +0000057343 00000 n +0000057528 00000 n +0000057781 00000 n +0000057906 00000 n 0000016985 00000 n 0000010329 00000 n 0000017423 00000 n @@ -2994,177 +3034,177 @@ xref 0000017256 00000 n 0000017308 00000 n 0000017370 00000 n -0000020792 00000 n -0000020854 00000 n -0000023106 00000 n -0000023168 00000 n -0000026233 00000 n -0000026295 00000 n -0000057073 00000 n -0000057171 00000 n -0000057367 00000 n -0000017855 00000 n -0000057502 00000 n -0000018337 00000 n -0000017514 00000 n -0000017994 00000 n -0000018055 00000 n -0000057618 00000 n -0000057743 00000 n -0000057935 00000 n -0000020310 00000 n -0000058070 00000 n -0000058178 00000 n -0000058365 00000 n -0000020469 00000 n +0000021126 00000 n +0000021188 00000 n +0000023518 00000 n +0000023580 00000 n +0000026801 00000 n +0000026863 00000 n +0000058042 00000 n +0000058140 00000 n +0000058370 00000 n +0000017933 00000 n +0000058505 00000 n 0000018415 00000 n -0000058500 00000 n -0000058599 00000 n -0000058711 00000 n -0000058835 00000 n -0000058978 00000 n -0000059087 00000 n -0000059290 00000 n -0000059425 00000 n -0000059533 00000 n -0000059676 00000 n -0000059785 00000 n -0000059965 00000 n -0000060101 00000 n -0000060209 00000 n -0000021250 00000 n -0000018472 00000 n -0000020679 00000 n -0000020740 00000 n -0000060353 00000 n -0000060462 00000 n -0000060662 00000 n -0000022624 00000 n -0000060797 00000 n -0000060905 00000 n -0000061092 00000 n -0000022783 00000 n -0000021353 00000 n -0000061227 00000 n -0000061326 00000 n -0000061438 00000 n -0000061562 00000 n -0000023336 00000 n -0000021410 00000 n -0000022993 00000 n -0000023054 00000 n -0000061705 00000 n -0000061814 00000 n -0000062006 00000 n -0000023975 00000 n -0000062141 00000 n -0000062249 00000 n -0000024341 00000 n -0000023427 00000 n -0000024114 00000 n -0000024175 00000 n -0000062392 00000 n -0000062500 00000 n -0000062609 00000 n -0000062805 00000 n -0000025750 00000 n -0000062940 00000 n -0000063048 00000 n -0000063235 00000 n -0000025909 00000 n -0000024432 00000 n -0000063370 00000 n -0000063469 00000 n -0000063581 00000 n -0000063705 00000 n -0000026578 00000 n -0000024489 00000 n -0000026120 00000 n -0000026181 00000 n -0000144954 00000 n -0000063848 00000 n -0000063957 00000 n -0000064145 00000 n -0000039396 00000 n -0000064280 00000 n -0000064388 00000 n -0000026669 00000 n -0000039762 00000 n -0000038857 00000 n -0000039535 00000 n -0000039596 00000 n -0000039966 00000 n -0000040003 00000 n -0000146041 00000 n -0000040062 00000 n -0000040150 00000 n -0000145909 00000 n -0000040206 00000 n -0000040259 00000 n -0000145791 00000 n -0000040318 00000 n -0000040404 00000 n -0000145712 00000 n -0000040468 00000 n -0000040564 00000 n -0000145633 00000 n -0000040628 00000 n -0000040691 00000 n -0000145540 00000 n -0000040750 00000 n -0000040846 00000 n -0000145461 00000 n +0000017514 00000 n +0000018072 00000 n +0000018133 00000 n +0000058621 00000 n +0000058746 00000 n +0000058972 00000 n +0000020644 00000 n +0000059107 00000 n +0000059215 00000 n +0000059402 00000 n +0000020803 00000 n +0000018506 00000 n +0000059537 00000 n +0000059636 00000 n +0000059748 00000 n +0000059872 00000 n +0000060015 00000 n +0000060124 00000 n +0000060362 00000 n +0000060497 00000 n +0000060605 00000 n +0000060749 00000 n +0000060858 00000 n +0000061073 00000 n +0000061209 00000 n +0000061317 00000 n +0000021584 00000 n +0000018563 00000 n +0000021013 00000 n +0000021074 00000 n +0000061461 00000 n +0000061570 00000 n +0000061804 00000 n +0000023036 00000 n +0000061939 00000 n +0000062047 00000 n +0000062234 00000 n +0000023195 00000 n +0000021687 00000 n +0000062369 00000 n +0000062468 00000 n +0000062580 00000 n +0000062704 00000 n +0000023748 00000 n +0000021744 00000 n +0000023405 00000 n +0000023466 00000 n +0000062847 00000 n +0000062956 00000 n +0000063182 00000 n +0000024465 00000 n +0000063317 00000 n +0000063425 00000 n +0000024831 00000 n +0000023839 00000 n +0000024604 00000 n +0000024665 00000 n +0000063568 00000 n +0000063676 00000 n +0000063785 00000 n +0000064015 00000 n +0000026318 00000 n +0000064150 00000 n +0000064258 00000 n +0000064445 00000 n +0000026477 00000 n +0000024922 00000 n +0000064580 00000 n +0000064679 00000 n +0000064791 00000 n +0000064915 00000 n +0000027146 00000 n +0000024979 00000 n +0000026688 00000 n +0000026749 00000 n +0000146198 00000 n +0000065058 00000 n +0000065167 00000 n +0000065389 00000 n +0000040042 00000 n +0000065524 00000 n +0000065632 00000 n +0000027237 00000 n +0000040408 00000 n +0000039425 00000 n +0000040181 00000 n +0000040242 00000 n +0000040612 00000 n +0000040649 00000 n +0000147285 00000 n +0000040708 00000 n +0000040796 00000 n +0000147153 00000 n +0000040852 00000 n 0000040905 00000 n -0000040991 00000 n -0000145343 00000 n -0000041047 00000 n -0000041100 00000 n -0000145264 00000 n -0000041159 00000 n -0000041250 00000 n -0000145185 00000 n -0000041309 00000 n -0000042463 00000 n -0000043378 00000 n -0000044340 00000 n -0000044708 00000 n -0000045422 00000 n -0000134639 00000 n -0000064670 00000 n -0000065248 00000 n -0000065271 00000 n -0000065726 00000 n -0000066167 00000 n -0000066588 00000 n -0000069253 00000 n -0000069473 00000 n -0000086999 00000 n -0000087304 00000 n -0000101608 00000 n -0000101892 00000 n -0000116899 00000 n -0000117200 00000 n -0000134296 00000 n -0000134867 00000 n -0000137139 00000 n -0000139411 00000 n -0000141683 00000 n -0000143956 00000 n -0000145039 00000 n -0000145108 00000 n -0000146120 00000 n -0000146317 00000 n -0000146479 00000 n -0000146657 00000 n -0000146858 00000 n -0000146960 00000 n -0000146998 00000 n -0000147261 00000 n +0000147035 00000 n +0000040964 00000 n +0000041050 00000 n +0000146956 00000 n +0000041114 00000 n +0000041210 00000 n +0000146877 00000 n +0000041274 00000 n +0000041337 00000 n +0000146784 00000 n +0000041396 00000 n +0000041492 00000 n +0000146705 00000 n +0000041551 00000 n +0000041637 00000 n +0000146587 00000 n +0000041693 00000 n +0000041746 00000 n +0000146508 00000 n +0000041805 00000 n +0000041896 00000 n +0000146429 00000 n +0000041955 00000 n +0000043173 00000 n +0000044088 00000 n +0000045050 00000 n +0000045418 00000 n +0000046239 00000 n +0000135883 00000 n +0000065914 00000 n +0000066492 00000 n +0000066515 00000 n +0000066970 00000 n +0000067411 00000 n +0000067832 00000 n +0000070497 00000 n +0000070717 00000 n +0000088243 00000 n +0000088548 00000 n +0000102852 00000 n +0000103136 00000 n +0000118143 00000 n +0000118444 00000 n +0000135540 00000 n +0000136111 00000 n +0000138383 00000 n +0000140655 00000 n +0000142927 00000 n +0000145200 00000 n +0000146283 00000 n +0000146352 00000 n +0000147364 00000 n +0000147561 00000 n +0000147723 00000 n +0000147901 00000 n +0000148102 00000 n +0000148204 00000 n +0000148242 00000 n +0000148505 00000 n trailer << /Size 317 /Root 315 0 R /Info 316 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -147471 +148715 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.luatex.tpf index 17d66427e..b60157697 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.luatex.tpf @@ -603,21 +603,25 @@ endobj << /ExtGState 1 0 R /Font << /F18 128 0 R /F15 130 0 R /F16 131 0 R >> >> endobj 204 0 obj -<< /Length 392 >> +<< /Length 437 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(In)31(tro)-30(duction)]TJ ET @@ -647,7 +651,7 @@ endobj << /D [ 203 0 R /XYZ 133.768 675.168 null ] >> endobj 135 0 obj -[ 200 0 R /XYZ 133.768 675.168 null ] +[ 199 0 R /XYZ 133.768 675.168 null ] endobj 136 0 obj << /D [ 203 0 R /XYZ 133.768 647.37 null ] >> @@ -662,7 +666,7 @@ endobj << /Type/OBJR/Obj 213 0 R/Pg 228 0 R >> endobj 231 0 obj -<< /Length 2770 >> +<< /Length 2968 >> stream /opacity1 gs /Artifact BMC @@ -701,16 +705,22 @@ BT 1 0 0 1 355.036 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(2)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Swiss)]TJ /F15 9.96264 Tf @@ -721,7 +731,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(A)]TJ @@ -745,21 +755,27 @@ BT 1 0 0 1 232.565 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 235.886 596.671 Tm [(1)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 568.782 Tm [(2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 568.782 Tm [<0067>]TJ +1 0 0 1 150.954 568.782 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 568.782 Tm [(Living)]TJ @@ -771,21 +787,27 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 550.393 Tm [(Switzerland)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 522.505 Tm [(2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 522.505 Tm [<0067>]TJ +1 0 0 1 150.954 522.505 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 522.505 Tm [(Hobbies)]TJ @@ -793,7 +815,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 504.115 Tm [(Albhorn)]TJ @@ -836,19 +858,19 @@ endobj << /D [ 228 0 R /XYZ 133.768 636.425 null ] >> endobj 139 0 obj -[ 209 0 R /XYZ 133.768 636.425 null ] +[ 208 0 R /XYZ 133.768 636.425 null ] endobj 140 0 obj << /D [ 228 0 R /XYZ 133.768 582.73 null ] >> endobj 141 0 obj -[ 220 0 R /XYZ 133.768 582.73 null ] +[ 219 0 R /XYZ 133.768 582.73 null ] endobj 142 0 obj << /D [ 228 0 R /XYZ 133.768 536.452 null ] >> endobj 143 0 obj -[ 225 0 R /XYZ 133.768 536.452 null ] +[ 224 0 R /XYZ 133.768 536.452 null ] endobj 230 0 obj << /ExtGState 1 0 R /Font << /F16 131 0 R /F15 130 0 R /F18 128 0 R >> >> @@ -857,7 +879,7 @@ endobj << /Type/OBJR/Obj 241 0 R/Pg 246 0 R >> endobj 249 0 obj -<< /Length 1843 >> +<< /Length 1906 >> stream /opacity1 gs /Artifact BMC @@ -896,16 +918,22 @@ BT 1 0 0 1 357.997 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(3)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Italian)]TJ /F15 9.96264 Tf @@ -916,7 +944,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Italian)]TJ @@ -936,7 +964,7 @@ BT 1 0 0 1 231.292 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 234.613 596.671 Tm [(2)]TJ @@ -979,27 +1007,31 @@ endobj << /D [ 246 0 R /XYZ 133.768 636.425 null ] >> endobj 145 0 obj -[ 237 0 R /XYZ 133.768 636.425 null ] +[ 236 0 R /XYZ 133.768 636.425 null ] endobj 248 0 obj << /ExtGState 1 0 R /Font << /F16 131 0 R /F15 130 0 R /F18 128 0 R >> >> endobj 260 0 obj -<< /Length 722 >> +<< /Length 767 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(4)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Mask)31(ed)]TJ /F15 9.96264 Tf @@ -1010,7 +1042,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Mask)27(ed)]TJ @@ -1045,7 +1077,7 @@ endobj << /D [ 259 0 R /XYZ 133.768 675.168 null ] >> endobj 147 0 obj -[ 255 0 R /XYZ 133.768 675.168 null ] +[ 254 0 R /XYZ 133.768 675.168 null ] endobj 258 0 obj << /ExtGState 1 0 R /Font << /F18 128 0 R /F15 130 0 R /F16 131 0 R >> >> @@ -1054,7 +1086,7 @@ endobj << /Type/OBJR/Obj 270 0 R/Pg 275 0 R >> endobj 278 0 obj -<< /Length 1977 >> +<< /Length 2022 >> stream /opacity1 gs /Artifact BMC @@ -1091,16 +1123,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(5)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Hugging)]TJ /F15 9.96264 Tf @@ -1111,7 +1147,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Duc)27(k)]TJ @@ -1139,7 +1175,7 @@ BT 1 0 0 1 283.706 596.671 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 287.027 596.671 Tm [(3)]TJ @@ -1188,27 +1224,31 @@ endobj << /D [ 275 0 R /XYZ 133.768 636.425 null ] >> endobj 151 0 obj -[ 266 0 R /XYZ 133.768 636.425 null ] +[ 265 0 R /XYZ 133.768 636.425 null ] endobj 277 0 obj << /ExtGState 1 0 R /Font << /F16 131 0 R /F15 130 0 R /F18 128 0 R >> >> endobj 290 0 obj -<< /Length 718 >> +<< /Length 763 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(6)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Witc)31(h)]TJ /F15 9.96264 Tf @@ -1219,7 +1259,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Witc)27(h)]TJ @@ -1254,7 +1294,7 @@ endobj << /D [ 289 0 R /XYZ 133.768 675.168 null ] >> endobj 153 0 obj -[ 284 0 R /XYZ 133.768 675.168 null ] +[ 283 0 R /XYZ 133.768 675.168 null ] endobj 288 0 obj << /ExtGState 1 0 R /Font << /F18 128 0 R /F15 130 0 R /F16 131 0 R >> >> @@ -1337,12 +1377,12 @@ endobj 6 0 obj << /Nums [0 [ 27 0 R 31 0 R 33 0 R 31 0 R 34 0 R 38 0 R 40 0 R 45 0 R 47 0 R 45 0 R 48 0 R 53 0 R 55 0 R 53 0 R 56 0 R 60 0 R 62 0 R 60 0 R 63 0 R 67 0 R 69 0 R 67 0 R 70 0 R 74 0 R 76 0 R 74 0 R 77 0 R 81 0 R 83 0 R 88 0 R 90 0 R 88 0 R 91 0 R 95 0 R 97 0 R 95 0 R 98 0 R] 1 [ 155 0 R 159 0 R 161 0 R 159 0 R 162 0 R 166 0 R 168 0 R 166 0 R 169 0 R 173 0 R 175 0 R 173 0 R 176 0 R] -2 [ 200 0 R 199 0 R] -3 [ 216 0 R 217 0 R 209 0 R 208 0 R 211 0 R 212 0 R 220 0 R 219 0 R 222 0 R 225 0 R 224 0 R 227 0 R] -4 [ 244 0 R 245 0 R 237 0 R 236 0 R 239 0 R 240 0 R] -5 [ 255 0 R 254 0 R 257 0 R] -6 [ 273 0 R 274 0 R 266 0 R 265 0 R 268 0 R 269 0 R] -7 [ 284 0 R 283 0 R 286 0 R] +2 [ 200 0 R 199 0 R 199 0 R] +3 [ 216 0 R 217 0 R 209 0 R 208 0 R 208 0 R 211 0 R 212 0 R 220 0 R 219 0 R 219 0 R 222 0 R 225 0 R 224 0 R 224 0 R 227 0 R] +4 [ 244 0 R 245 0 R 237 0 R 236 0 R 236 0 R 239 0 R 240 0 R] +5 [ 255 0 R 254 0 R 254 0 R 257 0 R] +6 [ 273 0 R 274 0 R 266 0 R 265 0 R 265 0 R 268 0 R 269 0 R] +7 [ 284 0 R 283 0 R 283 0 R 286 0 R] 8 31 0 R 9 34 0 R 10 38 0 R @@ -1387,7 +1427,7 @@ endobj << /Kids [324 0 R 325 0 R 326 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 328 0 obj << /justify <> @@ -1406,7 +1446,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1445,7 +1485,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 26 0 R /K [29 0 R 36 0 R 42 0 R 79 0 R 85 0 R] /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 200 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 199 0 R ] /K 30 0 R /ID (ID.0009) >> endobj 30 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R 34 0 R ] /ID (ID.0010) >> @@ -1475,7 +1515,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [43 0 R 50 0 R 65 0 R 72 0 R] /ID (ID.0018) >> endobj 43 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 209 0 R ] /K 44 0 R /ID (ID.0019) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 208 0 R ] /K 44 0 R /ID (ID.0019) >> endobj 44 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 43 0 R /K [ 45 0 R 48 0 R ] /ID (ID.0020) >> @@ -1493,7 +1533,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 42 0 R /K [51 0 R 58 0 R] /ID (ID.0024) >> endobj 51 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 50 0 R /Ref [ 220 0 R ] /K 52 0 R /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 50 0 R /Ref [ 219 0 R ] /K 52 0 R /ID (ID.0025) >> endobj 52 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [ 53 0 R 56 0 R ] /ID (ID.0026) >> @@ -1508,7 +1548,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 52 0 R /K [<> 107 0 R] /ID (ID.0029) >> endobj 58 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 50 0 R /Ref [ 225 0 R ] /K 59 0 R /ID (ID.0030) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 50 0 R /Ref [ 224 0 R ] /K 59 0 R /ID (ID.0030) >> endobj 59 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 58 0 R /K [ 60 0 R 63 0 R ] /ID (ID.0031) >> @@ -1523,7 +1563,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 59 0 R /K [<> 109 0 R] /ID (ID.0034) >> endobj 65 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 237 0 R ] /K 66 0 R /ID (ID.0035) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 236 0 R ] /K 66 0 R /ID (ID.0035) >> endobj 66 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 65 0 R /K [ 67 0 R 70 0 R ] /ID (ID.0036) >> @@ -1538,7 +1578,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 66 0 R /K [<> 111 0 R] /ID (ID.0039) >> endobj 72 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 255 0 R ] /K 73 0 R /ID (ID.0040) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 42 0 R /Ref [ 254 0 R ] /K 73 0 R /ID (ID.0040) >> endobj 73 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 72 0 R /K [ 74 0 R 77 0 R ] /ID (ID.0041) >> @@ -1568,7 +1608,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [86 0 R 93 0 R] /ID (ID.0049) >> endobj 86 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 85 0 R /Ref [ 266 0 R ] /K 87 0 R /ID (ID.0050) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 85 0 R /Ref [ 265 0 R ] /K 87 0 R /ID (ID.0050) >> endobj 87 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 86 0 R /K [ 88 0 R 91 0 R ] /ID (ID.0051) >> @@ -1583,7 +1623,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 87 0 R /K [<> 117 0 R] /ID (ID.0054) >> endobj 93 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 85 0 R /Ref [ 284 0 R ] /K 94 0 R /ID (ID.0055) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 85 0 R /Ref [ 283 0 R ] /K 94 0 R /ID (ID.0055) >> endobj 94 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 93 0 R /K [ 95 0 R 98 0 R ] /ID (ID.0056) >> @@ -1655,10 +1695,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 199 0 R /ID (ID.0078) >> endobj 199 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 198 0 R /K [200 0 R <> ] /ID (ID.0079) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 198 0 R /K [200 0 R <> <> ] /ID (ID.0079) >> endobj 200 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 199 0 R /K <> /ID (ID.0080) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 199 0 R /K <> /ID (ID.0080) >> endobj 201 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [207 0 R 235 0 R 253 0 R] /ID (ID.0081) >> @@ -1667,19 +1707,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 201 0 R /K [208 0 R 210 0 R 218 0 R 223 0 R] /ID (ID.0082) >> endobj 208 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 207 0 R /K [209 0 R <> ] /ID (ID.0083) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 207 0 R /K [209 0 R <> <> ] /ID (ID.0083) >> endobj 209 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 208 0 R /K <> /ID (ID.0084) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 208 0 R /K <> /ID (ID.0084) >> endobj 210 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 207 0 R /K 211 0 R /ID (ID.0085) >> endobj 211 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 210 0 R /K [<> 212 0 R ] /ID (ID.0086) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 210 0 R /K [<> 212 0 R ] /ID (ID.0086) >> endobj 212 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 211 0 R /K [<> 229 0 R] /ID (ID.0087) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 211 0 R /K [<> 229 0 R] /ID (ID.0087) >> endobj 214 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 215 0 R /ID (ID.0088) >> @@ -1697,49 +1737,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 207 0 R /K [219 0 R 221 0 R] /ID (ID.0092) >> endobj 219 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 218 0 R /K [220 0 R <> ] /ID (ID.0093) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 218 0 R /K [220 0 R <> <> ] /ID (ID.0093) >> endobj 220 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 219 0 R /K <> /ID (ID.0094) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 219 0 R /K <> /ID (ID.0094) >> endobj 221 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 218 0 R /K 222 0 R /ID (ID.0095) >> endobj 222 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 221 0 R /K <> /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 221 0 R /K <> /ID (ID.0096) >> endobj 223 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 207 0 R /K [224 0 R 226 0 R] /ID (ID.0097) >> endobj 224 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 223 0 R /K [225 0 R <> ] /ID (ID.0098) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 223 0 R /K [225 0 R <> <> ] /ID (ID.0098) >> endobj 225 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 224 0 R /K <> /ID (ID.0099) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 224 0 R /K <> /ID (ID.0099) >> endobj 226 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 223 0 R /K 227 0 R /ID (ID.0100) >> endobj 227 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 226 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 226 0 R /K <> /ID (ID.0101) >> endobj 235 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 201 0 R /K [236 0 R 238 0 R] /ID (ID.0102) >> endobj 236 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 235 0 R /K [237 0 R <> ] /ID (ID.0103) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 235 0 R /K [237 0 R <> <> ] /ID (ID.0103) >> endobj 237 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 236 0 R /K <> /ID (ID.0104) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 236 0 R /K <> /ID (ID.0104) >> endobj 238 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 235 0 R /K 239 0 R /ID (ID.0105) >> endobj 239 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 238 0 R /K [<> 240 0 R ] /ID (ID.0106) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 238 0 R /K [<> 240 0 R ] /ID (ID.0106) >> endobj 240 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 239 0 R /K [<> 247 0 R] /ID (ID.0107) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 239 0 R /K [<> 247 0 R] /ID (ID.0107) >> endobj 242 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 243 0 R /ID (ID.0108) >> @@ -1757,16 +1797,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 201 0 R /K [254 0 R 256 0 R] /ID (ID.0112) >> endobj 254 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 253 0 R /K [255 0 R <> ] /ID (ID.0113) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 253 0 R /K [255 0 R <> <> ] /ID (ID.0113) >> endobj 255 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 254 0 R /K <> /ID (ID.0114) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 254 0 R /K <> /ID (ID.0114) >> endobj 256 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 253 0 R /K 257 0 R /ID (ID.0115) >> endobj 257 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 256 0 R /K <> /ID (ID.0116) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 256 0 R /K <> /ID (ID.0116) >> endobj 263 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [264 0 R 282 0 R] /ID (ID.0117) >> @@ -1775,19 +1815,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 263 0 R /K [265 0 R 267 0 R] /ID (ID.0118) >> endobj 265 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 264 0 R /K [266 0 R <> ] /ID (ID.0119) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 264 0 R /K [266 0 R <> <> ] /ID (ID.0119) >> endobj 266 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 265 0 R /K <> /ID (ID.0120) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 265 0 R /K <> /ID (ID.0120) >> endobj 267 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 264 0 R /K 268 0 R /ID (ID.0121) >> endobj 268 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 267 0 R /K [<> 269 0 R ] /ID (ID.0122) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 267 0 R /K [<> 269 0 R ] /ID (ID.0122) >> endobj 269 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 276 0 R] /ID (ID.0123) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 268 0 R /K [<> 276 0 R] /ID (ID.0123) >> endobj 271 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 272 0 R /ID (ID.0124) >> @@ -1805,16 +1845,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 263 0 R /K [283 0 R 285 0 R] /ID (ID.0128) >> endobj 283 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 282 0 R /K [284 0 R <> ] /ID (ID.0129) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 282 0 R /K [284 0 R <> <> ] /ID (ID.0129) >> endobj 284 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 283 0 R /K <> /ID (ID.0130) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 283 0 R /K <> /ID (ID.0130) >> endobj 285 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 282 0 R /K 286 0 R /ID (ID.0131) >> endobj 286 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 285 0 R /K <> /ID (ID.0132) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 285 0 R /K <> /ID (ID.0132) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 327 0 R /ClassMap 328 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -2559,104 +2599,104 @@ endobj xref 0 351 0000000010 65535 f -0000029571 00000 n -0000029618 00000 n -0000029640 00000 n -0000029662 00000 n -0000055134 00000 n -0000031118 00000 n -0000034653 00000 n -0000036955 00000 n -0000035475 00000 n +0000030012 00000 n +0000030059 00000 n +0000030081 00000 n +0000030103 00000 n +0000056189 00000 n +0000031559 00000 n +0000035158 00000 n +0000037719 00000 n +0000036087 00000 n 0000000012 00000 f -0000035543 00000 n +0000036155 00000 n 0000000014 00000 f -0000035613 00000 n +0000036225 00000 n 0000000020 00000 f -0000036493 00000 n -0000035694 00000 n -0000036766 00000 n -0000036595 00000 n -0000036868 00000 n +0000037257 00000 n +0000036306 00000 n +0000037530 00000 n +0000037359 00000 n +0000037632 00000 n 0000000000 00000 f 0000005246 00000 n -0000037016 00000 n -0000037156 00000 n -0000037246 00000 n -0000037364 00000 n -0000037454 00000 n -0000037559 00000 n -0000037728 00000 n -0000037874 00000 n -0000038044 00000 n -0000038157 00000 n +0000037780 00000 n +0000037920 00000 n +0000038010 00000 n +0000038128 00000 n +0000038218 00000 n +0000038323 00000 n +0000038492 00000 n +0000038638 00000 n +0000038808 00000 n +0000038921 00000 n 0000005561 00000 n -0000038333 00000 n -0000038456 00000 n +0000039097 00000 n +0000039220 00000 n 0000005788 00000 n -0000038590 00000 n -0000038732 00000 n -0000038845 00000 n +0000039354 00000 n +0000039496 00000 n +0000039609 00000 n 0000006015 00000 n -0000038979 00000 n +0000039743 00000 n 0000006239 00000 n -0000039113 00000 n -0000039230 00000 n -0000039396 00000 n -0000039509 00000 n +0000039877 00000 n +0000039994 00000 n +0000040160 00000 n +0000040273 00000 n 0000006463 00000 n -0000039685 00000 n -0000039808 00000 n +0000040449 00000 n +0000040572 00000 n 0000006691 00000 n -0000039943 00000 n -0000040046 00000 n -0000040220 00000 n -0000040333 00000 n +0000040707 00000 n +0000040810 00000 n +0000040984 00000 n +0000041097 00000 n 0000006919 00000 n -0000040511 00000 n -0000040635 00000 n +0000041275 00000 n +0000041399 00000 n 0000007151 00000 n -0000040770 00000 n -0000040920 00000 n -0000041033 00000 n +0000041534 00000 n +0000041684 00000 n +0000041797 00000 n 0000007383 00000 n -0000041211 00000 n -0000041335 00000 n +0000041975 00000 n +0000042099 00000 n 0000007616 00000 n -0000041470 00000 n -0000041644 00000 n -0000041757 00000 n +0000042234 00000 n +0000042408 00000 n +0000042521 00000 n 0000007849 00000 n -0000041935 00000 n -0000042059 00000 n +0000042699 00000 n +0000042823 00000 n 0000008077 00000 n -0000042194 00000 n -0000042360 00000 n -0000042473 00000 n +0000042958 00000 n +0000043124 00000 n +0000043237 00000 n 0000008305 00000 n -0000042651 00000 n -0000042775 00000 n +0000043415 00000 n +0000043539 00000 n 0000008533 00000 n -0000042910 00000 n -0000043052 00000 n -0000043165 00000 n +0000043674 00000 n +0000043816 00000 n +0000043929 00000 n 0000008761 00000 n -0000043300 00000 n +0000044064 00000 n 0000008985 00000 n -0000043435 00000 n -0000043538 00000 n -0000043708 00000 n -0000043821 00000 n +0000044199 00000 n +0000044302 00000 n +0000044472 00000 n +0000044585 00000 n 0000009210 00000 n -0000043999 00000 n -0000044123 00000 n +0000044763 00000 n +0000044887 00000 n 0000009437 00000 n -0000044258 00000 n -0000044420 00000 n -0000044533 00000 n +0000045022 00000 n +0000045184 00000 n +0000045297 00000 n 0000009664 00000 n -0000044711 00000 n -0000044835 00000 n +0000045475 00000 n +0000045599 00000 n 0000009891 00000 n 0000000020 00000 n 0000000075 00000 n @@ -2686,55 +2726,55 @@ xref 0000010296 00000 n 0000010350 00000 n 0000010413 00000 n -0000122456 00000 n -0000120503 00000 n -0000069421 00000 n -0000124404 00000 n -0000124566 00000 n +0000123511 00000 n +0000121558 00000 n +0000070476 00000 n +0000125459 00000 n +0000125621 00000 n 0000005400 00000 n -0000016854 00000 n -0000016918 00000 n -0000016973 00000 n -0000017036 00000 n -0000020725 00000 n -0000020789 00000 n -0000020844 00000 n -0000020907 00000 n -0000020961 00000 n -0000021025 00000 n -0000023788 00000 n -0000023852 00000 n -0000025036 00000 n -0000025100 00000 n -0000027998 00000 n -0000028062 00000 n -0000028117 00000 n -0000028181 00000 n -0000029361 00000 n -0000029425 00000 n -0000044970 00000 n -0000045078 00000 n -0000045278 00000 n -0000045415 00000 n -0000045624 00000 n -0000045741 00000 n +0000016899 00000 n +0000016963 00000 n +0000017018 00000 n +0000017081 00000 n +0000020968 00000 n +0000021032 00000 n +0000021087 00000 n +0000021150 00000 n +0000021204 00000 n +0000021268 00000 n +0000024094 00000 n +0000024158 00000 n +0000025387 00000 n +0000025451 00000 n +0000028394 00000 n +0000028458 00000 n +0000028513 00000 n +0000028577 00000 n +0000029802 00000 n +0000029866 00000 n +0000045734 00000 n +0000045842 00000 n +0000046042 00000 n +0000046179 00000 n +0000046388 00000 n +0000046505 00000 n 0000014402 00000 n -0000045922 00000 n -0000046048 00000 n +0000046686 00000 n +0000046812 00000 n 0000014638 00000 n -0000046185 00000 n -0000046402 00000 n -0000046519 00000 n +0000046949 00000 n +0000047166 00000 n +0000047283 00000 n 0000014874 00000 n -0000046700 00000 n -0000046826 00000 n +0000047464 00000 n +0000047590 00000 n 0000015107 00000 n -0000046963 00000 n -0000047148 00000 n -0000047265 00000 n +0000047727 00000 n +0000047912 00000 n +0000048029 00000 n 0000015344 00000 n -0000047447 00000 n -0000047574 00000 n +0000048211 00000 n +0000048338 00000 n 0000015581 00000 n 0000014178 00000 n 0000010571 00000 n @@ -2750,167 +2790,167 @@ xref 0000015935 00000 n 0000015999 00000 n 0000014333 00000 n -0000020606 00000 n -0000020670 00000 n -0000023669 00000 n -0000023733 00000 n -0000027879 00000 n -0000027943 00000 n -0000047712 00000 n -0000047810 00000 n -0000048008 00000 n -0000048145 00000 n -0000017090 00000 n -0000016598 00000 n +0000020849 00000 n +0000020913 00000 n +0000023975 00000 n +0000024039 00000 n +0000028275 00000 n +0000028339 00000 n +0000048476 00000 n +0000048574 00000 n +0000048808 00000 n +0000048945 00000 n +0000017135 00000 n +0000016643 00000 n 0000016145 00000 n -0000016737 00000 n -0000016800 00000 n -0000048261 00000 n -0000048386 00000 n -0000048580 00000 n -0000048717 00000 n -0000048825 00000 n -0000048981 00000 n -0000020253 00000 n -0000049118 00000 n -0000049217 00000 n -0000049329 00000 n -0000049455 00000 n -0000049600 00000 n -0000049709 00000 n -0000049914 00000 n -0000050051 00000 n -0000050159 00000 n -0000050304 00000 n -0000050413 00000 n -0000050595 00000 n -0000050732 00000 n -0000050840 00000 n -0000020069 00000 n -0000017181 00000 n -0000021080 00000 n -0000017238 00000 n -0000020489 00000 n -0000020552 00000 n -0000020224 00000 n -0000050986 00000 n -0000051095 00000 n -0000051297 00000 n -0000051434 00000 n -0000051542 00000 n -0000051698 00000 n -0000023316 00000 n -0000051835 00000 n -0000051934 00000 n -0000052046 00000 n -0000052172 00000 n -0000023132 00000 n -0000021171 00000 n -0000023907 00000 n -0000021228 00000 n -0000023552 00000 n -0000023615 00000 n -0000023287 00000 n -0000052317 00000 n -0000052426 00000 n -0000052620 00000 n -0000052757 00000 n -0000052865 00000 n -0000025155 00000 n -0000024781 00000 n -0000023998 00000 n -0000024920 00000 n -0000024983 00000 n -0000053010 00000 n -0000053118 00000 n -0000053227 00000 n -0000053425 00000 n -0000053562 00000 n -0000053670 00000 n -0000053826 00000 n -0000027525 00000 n -0000053963 00000 n -0000054062 00000 n -0000054174 00000 n -0000054300 00000 n -0000027341 00000 n -0000025246 00000 n -0000028236 00000 n -0000025303 00000 n -0000027762 00000 n -0000027825 00000 n -0000027496 00000 n -0000054445 00000 n -0000054554 00000 n -0000054744 00000 n -0000054881 00000 n -0000054989 00000 n -0000055273 00000 n -0000029480 00000 n -0000029106 00000 n -0000028327 00000 n -0000029245 00000 n -0000029308 00000 n -0000029684 00000 n -0000029721 00000 n -0000125618 00000 n -0000029780 00000 n -0000029869 00000 n -0000125486 00000 n -0000029925 00000 n -0000029979 00000 n -0000125368 00000 n -0000030038 00000 n +0000016782 00000 n +0000016845 00000 n +0000049061 00000 n +0000049186 00000 n +0000049416 00000 n +0000049553 00000 n +0000049661 00000 n +0000049817 00000 n +0000020496 00000 n +0000049954 00000 n +0000050053 00000 n +0000050165 00000 n +0000050291 00000 n +0000050436 00000 n +0000050545 00000 n +0000050786 00000 n +0000050923 00000 n +0000051031 00000 n +0000051177 00000 n +0000051286 00000 n +0000051505 00000 n +0000051643 00000 n +0000051751 00000 n +0000020312 00000 n +0000017226 00000 n +0000021323 00000 n +0000017283 00000 n +0000020732 00000 n +0000020795 00000 n +0000020467 00000 n +0000051897 00000 n +0000052006 00000 n +0000052244 00000 n +0000052381 00000 n +0000052489 00000 n +0000052645 00000 n +0000023622 00000 n +0000052782 00000 n +0000052881 00000 n +0000052993 00000 n +0000053119 00000 n +0000023438 00000 n +0000021414 00000 n +0000024213 00000 n +0000021471 00000 n +0000023858 00000 n +0000023921 00000 n +0000023593 00000 n +0000053264 00000 n +0000053373 00000 n +0000053603 00000 n +0000053740 00000 n +0000053848 00000 n +0000025506 00000 n +0000025132 00000 n +0000024304 00000 n +0000025271 00000 n +0000025334 00000 n +0000053993 00000 n +0000054101 00000 n +0000054210 00000 n +0000054444 00000 n +0000054581 00000 n +0000054689 00000 n +0000054845 00000 n +0000027921 00000 n +0000054982 00000 n +0000055081 00000 n +0000055193 00000 n +0000055319 00000 n +0000027737 00000 n +0000025597 00000 n +0000028632 00000 n +0000025654 00000 n +0000028158 00000 n +0000028221 00000 n +0000027892 00000 n +0000055464 00000 n +0000055573 00000 n +0000055799 00000 n +0000055936 00000 n +0000056044 00000 n +0000056328 00000 n +0000029921 00000 n +0000029547 00000 n +0000028723 00000 n +0000029686 00000 n +0000029749 00000 n 0000030125 00000 n -0000125289 00000 n -0000030189 00000 n -0000030286 00000 n -0000125210 00000 n -0000030350 00000 n -0000030414 00000 n -0000125117 00000 n -0000030473 00000 n -0000030570 00000 n -0000125038 00000 n -0000030629 00000 n -0000030716 00000 n -0000124920 00000 n -0000030772 00000 n -0000030826 00000 n -0000124841 00000 n -0000030885 00000 n -0000030977 00000 n -0000124762 00000 n -0000031036 00000 n -0000032112 00000 n -0000033024 00000 n -0000033978 00000 n -0000034598 00000 n -0000035312 00000 n -0000067464 00000 n -0000067847 00000 n -0000068471 00000 n -0000067880 00000 n -0000068694 00000 n -0000069578 00000 n -0000069781 00000 n -0000070041 00000 n -0000085633 00000 n -0000070341 00000 n -0000100214 00000 n -0000085842 00000 n -0000118506 00000 n -0000100423 00000 n -0000118713 00000 n -0000120666 00000 n -0000122619 00000 n -0000124685 00000 n -0000125697 00000 n -0000126257 00000 n -0000126295 00000 n -0000126558 00000 n +0000030162 00000 n +0000126673 00000 n +0000030221 00000 n +0000030310 00000 n +0000126541 00000 n +0000030366 00000 n +0000030420 00000 n +0000126423 00000 n +0000030479 00000 n +0000030566 00000 n +0000126344 00000 n +0000030630 00000 n +0000030727 00000 n +0000126265 00000 n +0000030791 00000 n +0000030855 00000 n +0000126172 00000 n +0000030914 00000 n +0000031011 00000 n +0000126093 00000 n +0000031070 00000 n +0000031157 00000 n +0000125975 00000 n +0000031213 00000 n +0000031267 00000 n +0000125896 00000 n +0000031326 00000 n +0000031418 00000 n +0000125817 00000 n +0000031477 00000 n +0000032617 00000 n +0000033529 00000 n +0000034483 00000 n +0000035103 00000 n +0000035924 00000 n +0000068519 00000 n +0000068902 00000 n +0000069526 00000 n +0000068935 00000 n +0000069749 00000 n +0000070633 00000 n +0000070836 00000 n +0000071096 00000 n +0000086688 00000 n +0000071396 00000 n +0000101269 00000 n +0000086897 00000 n +0000119561 00000 n +0000101478 00000 n +0000119768 00000 n +0000121721 00000 n +0000123674 00000 n +0000125740 00000 n +0000126752 00000 n +0000127312 00000 n +0000127350 00000 n +0000127613 00000 n trailer << /Size 351 /Root 349 0 R /Info 350 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -126768 +127823 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.tpf index b037e214d..b21facccd 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-hyperref-3.tpf @@ -764,19 +764,24 @@ endobj endobj 202 0 obj << -/Length 281 +/Length 359 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(In)31(tro)-31(duction)]TJ ET EMC @@ -811,7 +816,7 @@ endobj >> endobj 134 0 obj -[198 0 R /XYZ 133.768 675.168 null] +[197 0 R /XYZ 133.768 675.168 null] endobj 135 0 obj << @@ -824,7 +829,7 @@ endobj 201 0 obj << /ExtGState 1 0 R -/Font << /F47 127 0 R /F45 131 0 R >> +/Font << /F47 127 0 R /F53 130 0 R /F45 131 0 R >> >> endobj 213 0 obj @@ -832,7 +837,7 @@ endobj endobj 229 0 obj << -/Length 1778 +/Length 2021 >> stream /opacity1 gs @@ -848,54 +853,69 @@ BT /F45 9.9626 Tf 280.71 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 42.247 0 Td [(b)-31(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 235.86 596.731 Td [(1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 568.846 Td [(2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 568.846 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 568.846 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 41.321 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 550.458 Td [(Switzerland)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 522.573 Td [(2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 522.573 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 522.573 Td [(Hobbies)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 504.185 Td [(Albhorn)]TJ ET @@ -949,7 +969,7 @@ endobj >> endobj 138 0 obj -[207 0 R /XYZ 133.768 636.482 null] +[206 0 R /XYZ 133.768 636.482 null] endobj 139 0 obj << @@ -957,7 +977,7 @@ endobj >> endobj 140 0 obj -[220 0 R /XYZ 133.768 582.793 null] +[219 0 R /XYZ 133.768 582.793 null] endobj 141 0 obj << @@ -965,7 +985,7 @@ endobj >> endobj 142 0 obj -[225 0 R /XYZ 133.768 536.52 null] +[224 0 R /XYZ 133.768 536.52 null] endobj 228 0 obj << @@ -978,7 +998,7 @@ endobj endobj 246 0 obj << -/Length 1154 +/Length 1232 >> stream /opacity1 gs @@ -994,27 +1014,32 @@ BT /F45 9.9626 Tf 277.749 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 30.987 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(3)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 50.511 0 Td [(b)-30(e)-1(a)1(r)-1(s)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.205 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 234.588 596.731 Td [(2)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -1065,7 +1090,7 @@ endobj >> endobj 144 0 obj -[234 0 R /XYZ 133.768 636.482 null] +[233 0 R /XYZ 133.768 636.482 null] endobj 245 0 obj << @@ -1075,23 +1100,28 @@ endobj endobj 256 0 obj << -/Length 488 +/Length 566 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Mask)31(ed)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 58.162 0 Td [(b)-30(e)-1(a)1(r)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -1127,7 +1157,7 @@ endobj >> endobj 146 0 obj -[251 0 R /XYZ 133.768 675.168 null] +[250 0 R /XYZ 133.768 675.168 null] endobj 255 0 obj << @@ -1140,7 +1170,7 @@ endobj endobj 274 0 obj << -/Length 1201 +/Length 1279 >> stream /opacity1 gs @@ -1156,27 +1186,32 @@ BT /F45 9.9626 Tf 292.565 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(duc)28(k)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(5)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 63.171 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 286.99 596.731 Td [(3)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC /Artifact BMC BT @@ -1235,7 +1270,7 @@ endobj >> endobj 150 0 obj -[262 0 R /XYZ 133.768 636.482 null] +[261 0 R /XYZ 133.768 636.482 null] endobj 273 0 obj << @@ -1488,23 +1523,28 @@ endstream endobj 286 0 obj << -/Length 479 +/Length 557 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Witc)31(h)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 47.409 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1540,7 +1580,7 @@ endobj >> endobj 152 0 obj -[280 0 R /XYZ 133.768 675.168 null] +[279 0 R /XYZ 133.768 675.168 null] endobj 285 0 obj << @@ -1626,12 +1666,12 @@ endobj 6 0 obj << /Nums [0 [ 26 0 R 29 0 R 30 0 R 32 0 R 30 0 R 29 0 R 29 0 R 34 0 R 29 0 R 38 0 R 39 0 R 38 0 R 38 0 R 42 0 R 38 0 R 47 0 R 48 0 R 50 0 R 48 0 R 47 0 R 47 0 R 52 0 R 47 0 R 57 0 R 58 0 R 60 0 R 58 0 R 57 0 R 57 0 R 62 0 R 57 0 R 66 0 R 67 0 R 69 0 R 67 0 R 66 0 R 66 0 R 71 0 R 66 0 R 75 0 R 76 0 R 78 0 R 76 0 R 75 0 R 75 0 R 80 0 R 75 0 R 84 0 R 85 0 R 87 0 R 85 0 R 84 0 R 84 0 R 89 0 R 84 0 R 93 0 R 94 0 R 93 0 R 93 0 R 97 0 R 93 0 R 102 0 R 103 0 R 105 0 R 103 0 R 102 0 R 102 0 R 107 0 R 102 0 R 111 0 R 112 0 R 114 0 R 112 0 R 111 0 R 111 0 R 116 0 R 111 0 R ] 1 [ 154 0 R 158 0 R 159 0 R 161 0 R 159 0 R 158 0 R 158 0 R 163 0 R 158 0 R 167 0 R 168 0 R 170 0 R 168 0 R 167 0 R 167 0 R 172 0 R 167 0 R 176 0 R 177 0 R 179 0 R 177 0 R 176 0 R 176 0 R 181 0 R 176 0 R ] -2 [ 198 0 R 197 0 R ] -3 [ 216 0 R 217 0 R 207 0 R 206 0 R 210 0 R 211 0 R 210 0 R 220 0 R 219 0 R 222 0 R 225 0 R 224 0 R 227 0 R ] -4 [ 243 0 R 244 0 R 234 0 R 233 0 R 237 0 R 238 0 R 237 0 R ] -5 [ 251 0 R 250 0 R 254 0 R ] -6 [ 271 0 R 272 0 R 262 0 R 261 0 R 265 0 R 266 0 R 265 0 R ] -7 [ 280 0 R 279 0 R 283 0 R ] +2 [ 198 0 R 197 0 R 197 0 R ] +3 [ 216 0 R 217 0 R 207 0 R 206 0 R 206 0 R 210 0 R 211 0 R 210 0 R 220 0 R 219 0 R 219 0 R 222 0 R 225 0 R 224 0 R 224 0 R 227 0 R ] +4 [ 243 0 R 244 0 R 234 0 R 233 0 R 233 0 R 237 0 R 238 0 R 237 0 R ] +5 [ 251 0 R 250 0 R 250 0 R 254 0 R ] +6 [ 271 0 R 272 0 R 262 0 R 261 0 R 261 0 R 265 0 R 266 0 R 265 0 R ] +7 [ 280 0 R 279 0 R 279 0 R 283 0 R ] 8 30 0 R 9 34 0 R 10 39 0 R @@ -1676,7 +1716,7 @@ endobj << /Kids [320 0 R 321 0 R 322 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 324 0 obj << /justify <> @@ -1695,7 +1735,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1731,7 +1771,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 37 0 R 45 0 R 92 0 R 100 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 198 0 R ] /K 29 0 R /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 197 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <> 34 0 R <>] /ID (ID.0009) >> @@ -1761,7 +1801,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [46 0 R 55 0 R 74 0 R 83 0 R] /ID (ID.0017) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 207 0 R ] /K 47 0 R /ID (ID.0018) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 206 0 R ] /K 47 0 R /ID (ID.0018) >> endobj 47 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [<> 48 0 R <> <> 52 0 R <>] /ID (ID.0019) >> @@ -1779,7 +1819,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 45 0 R /K [56 0 R 65 0 R] /ID (ID.0023) >> endobj 56 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 220 0 R ] /K 57 0 R /ID (ID.0024) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 219 0 R ] /K 57 0 R /ID (ID.0024) >> endobj 57 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 56 0 R /K [<> 58 0 R <> <> 62 0 R <>] /ID (ID.0025) >> @@ -1794,7 +1834,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 57 0 R /K [<> 64 0 R] /ID (ID.0028) >> endobj 65 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 225 0 R ] /K 66 0 R /ID (ID.0029) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 224 0 R ] /K 66 0 R /ID (ID.0029) >> endobj 66 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 65 0 R /K [<> 67 0 R <> <> 71 0 R <>] /ID (ID.0030) >> @@ -1809,7 +1849,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 66 0 R /K [<> 73 0 R] /ID (ID.0033) >> endobj 74 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 234 0 R ] /K 75 0 R /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 233 0 R ] /K 75 0 R /ID (ID.0034) >> endobj 75 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 74 0 R /K [<> 76 0 R <> <> 80 0 R <>] /ID (ID.0035) >> @@ -1824,7 +1864,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 75 0 R /K [<> 82 0 R] /ID (ID.0038) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 251 0 R ] /K 84 0 R /ID (ID.0039) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 250 0 R ] /K 84 0 R /ID (ID.0039) >> endobj 84 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 83 0 R /K [<> 85 0 R <> <> 89 0 R <>] /ID (ID.0040) >> @@ -1854,7 +1894,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [101 0 R 110 0 R] /ID (ID.0048) >> endobj 101 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 100 0 R /Ref [ 262 0 R ] /K 102 0 R /ID (ID.0049) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 100 0 R /Ref [ 261 0 R ] /K 102 0 R /ID (ID.0049) >> endobj 102 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 101 0 R /K [<> 103 0 R <> <> 107 0 R <>] /ID (ID.0050) >> @@ -1869,7 +1909,7 @@ endobj << /Type /StructElem /S /Link /NS 11 0 R /P 102 0 R /K [<> 109 0 R] /ID (ID.0053) >> endobj 110 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 100 0 R /Ref [ 280 0 R ] /K 111 0 R /ID (ID.0054) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 100 0 R /Ref [ 279 0 R ] /K 111 0 R /ID (ID.0054) >> endobj 111 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 110 0 R /K [<> 112 0 R <> <> 116 0 R <>] /ID (ID.0055) >> @@ -1941,10 +1981,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K 197 0 R /ID (ID.0077) >> endobj 197 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <>] /ID (ID.0078) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 196 0 R /K [198 0 R <> <>] /ID (ID.0078) >> endobj 198 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0079) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 197 0 R /K <> /ID (ID.0079) >> endobj 200 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [205 0 R 232 0 R 249 0 R] /ID (ID.0080) >> @@ -1953,19 +1993,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 200 0 R /K [206 0 R 209 0 R 218 0 R 223 0 R] /ID (ID.0081) >> endobj 206 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 205 0 R /K [207 0 R <>] /ID (ID.0082) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 205 0 R /K [207 0 R <> <>] /ID (ID.0082) >> endobj 207 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 206 0 R /K <> /ID (ID.0083) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 206 0 R /K <> /ID (ID.0083) >> endobj 209 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 205 0 R /K 210 0 R /ID (ID.0084) >> endobj 210 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 209 0 R /K [<> 211 0 R <>] /ID (ID.0085) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 209 0 R /K [<> 211 0 R <>] /ID (ID.0085) >> endobj 211 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 210 0 R /K [<> 213 0 R] /ID (ID.0086) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 210 0 R /K [<> 213 0 R] /ID (ID.0086) >> endobj 214 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 215 0 R /ID (ID.0087) >> @@ -1983,49 +2023,49 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 205 0 R /K [219 0 R 221 0 R] /ID (ID.0091) >> endobj 219 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 218 0 R /K [220 0 R <>] /ID (ID.0092) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 218 0 R /K [220 0 R <> <>] /ID (ID.0092) >> endobj 220 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 219 0 R /K <> /ID (ID.0093) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 219 0 R /K <> /ID (ID.0093) >> endobj 221 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 218 0 R /K 222 0 R /ID (ID.0094) >> endobj 222 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 221 0 R /K <> /ID (ID.0095) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 221 0 R /K <> /ID (ID.0095) >> endobj 223 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 205 0 R /K [224 0 R 226 0 R] /ID (ID.0096) >> endobj 224 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 223 0 R /K [225 0 R <>] /ID (ID.0097) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 223 0 R /K [225 0 R <> <>] /ID (ID.0097) >> endobj 225 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 224 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 224 0 R /K <> /ID (ID.0098) >> endobj 226 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 223 0 R /K 227 0 R /ID (ID.0099) >> endobj 227 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 226 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 226 0 R /K <> /ID (ID.0100) >> endobj 232 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 200 0 R /K [233 0 R 236 0 R] /ID (ID.0101) >> endobj 233 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 232 0 R /K [234 0 R <>] /ID (ID.0102) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 232 0 R /K [234 0 R <> <>] /ID (ID.0102) >> endobj 234 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 233 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 233 0 R /K <> /ID (ID.0103) >> endobj 236 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 232 0 R /K 237 0 R /ID (ID.0104) >> endobj 237 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 236 0 R /K [<> 238 0 R <>] /ID (ID.0105) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 236 0 R /K [<> 238 0 R <>] /ID (ID.0105) >> endobj 238 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 237 0 R /K [<> 240 0 R] /ID (ID.0106) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 237 0 R /K [<> 240 0 R] /ID (ID.0106) >> endobj 241 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 242 0 R /ID (ID.0107) >> @@ -2043,16 +2083,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 200 0 R /K [250 0 R 253 0 R] /ID (ID.0111) >> endobj 250 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 249 0 R /K [251 0 R <>] /ID (ID.0112) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 249 0 R /K [251 0 R <> <>] /ID (ID.0112) >> endobj 251 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 250 0 R /K <> /ID (ID.0113) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 250 0 R /K <> /ID (ID.0113) >> endobj 253 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 249 0 R /K 254 0 R /ID (ID.0114) >> endobj 254 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 253 0 R /K <> /ID (ID.0115) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 253 0 R /K <> /ID (ID.0115) >> endobj 259 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [260 0 R 278 0 R] /ID (ID.0116) >> @@ -2061,19 +2101,19 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 259 0 R /K [261 0 R 264 0 R] /ID (ID.0117) >> endobj 261 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 260 0 R /K [262 0 R <>] /ID (ID.0118) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 260 0 R /K [262 0 R <> <>] /ID (ID.0118) >> endobj 262 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 261 0 R /K <> /ID (ID.0119) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 261 0 R /K <> /ID (ID.0119) >> endobj 264 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 260 0 R /K 265 0 R /ID (ID.0120) >> endobj 265 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 264 0 R /K [<> 266 0 R <>] /ID (ID.0121) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 264 0 R /K [<> 266 0 R <>] /ID (ID.0121) >> endobj 266 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 265 0 R /K [<> 268 0 R] /ID (ID.0122) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 265 0 R /K [<> 268 0 R] /ID (ID.0122) >> endobj 269 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 270 0 R /ID (ID.0123) >> @@ -2091,16 +2131,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 259 0 R /K [279 0 R 282 0 R] /ID (ID.0127) >> endobj 279 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 278 0 R /K [280 0 R <>] /ID (ID.0128) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 278 0 R /K [280 0 R <> <>] /ID (ID.0128) >> endobj 280 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 279 0 R /K <> /ID (ID.0129) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 279 0 R /K <> /ID (ID.0129) >> endobj 282 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 278 0 R /K 283 0 R /ID (ID.0130) >> endobj 283 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 282 0 R /K <> /ID (ID.0131) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 282 0 R /K <> /ID (ID.0131) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 323 0 R /ClassMap 324 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> @@ -3104,122 +3144,122 @@ endobj xref 0 356 0000000010 65535 f -0000044090 00000 n -0000044137 00000 n -0000044159 00000 n -0000044181 00000 n -0000071647 00000 n -0000045627 00000 n -0000049576 00000 n -0000051878 00000 n -0000050398 00000 n +0000044736 00000 n +0000044783 00000 n +0000044805 00000 n +0000044827 00000 n +0000072891 00000 n +0000046273 00000 n +0000050286 00000 n +0000052847 00000 n +0000051215 00000 n 0000000012 00000 f -0000050466 00000 n +0000051283 00000 n 0000000014 00000 f -0000050536 00000 n +0000051353 00000 n 0000000020 00000 f -0000051416 00000 n -0000050617 00000 n -0000051689 00000 n -0000051518 00000 n -0000051791 00000 n +0000052385 00000 n +0000051434 00000 n +0000052658 00000 n +0000052487 00000 n +0000052760 00000 n 0000000000 00000 f 0000008652 00000 n -0000051939 00000 n -0000052079 00000 n -0000052197 00000 n -0000052287 00000 n -0000052392 00000 n -0000052559 00000 n -0000052706 00000 n -0000052876 00000 n -0000053117 00000 n +0000052908 00000 n +0000053048 00000 n +0000053166 00000 n +0000053256 00000 n +0000053361 00000 n +0000053528 00000 n +0000053675 00000 n +0000053845 00000 n +0000054086 00000 n 0000008946 00000 n -0000053288 00000 n +0000054257 00000 n 0000000015 00000 n -0000053409 00000 n +0000054378 00000 n 0000009147 00000 n 0000000069 00000 n -0000053540 00000 n -0000053682 00000 n -0000053926 00000 n +0000054509 00000 n +0000054651 00000 n +0000054895 00000 n 0000009348 00000 n 0000000123 00000 n -0000054058 00000 n +0000055027 00000 n 0000009547 00000 n 0000000177 00000 n -0000054190 00000 n -0000054307 00000 n -0000054473 00000 n -0000054718 00000 n +0000055159 00000 n +0000055276 00000 n +0000055442 00000 n +0000055687 00000 n 0000009745 00000 n -0000054891 00000 n +0000055860 00000 n 0000000231 00000 n -0000055013 00000 n +0000055982 00000 n 0000009947 00000 n 0000000285 00000 n -0000055145 00000 n -0000055248 00000 n -0000055422 00000 n -0000055667 00000 n +0000056114 00000 n +0000056217 00000 n +0000056391 00000 n +0000056636 00000 n 0000010149 00000 n -0000055840 00000 n +0000056809 00000 n 0000000339 00000 n -0000055962 00000 n +0000056931 00000 n 0000010356 00000 n 0000000393 00000 n -0000056094 00000 n -0000056244 00000 n -0000056489 00000 n +0000057063 00000 n +0000057213 00000 n +0000057458 00000 n 0000010563 00000 n -0000056662 00000 n +0000057631 00000 n 0000000447 00000 n -0000056784 00000 n +0000057753 00000 n 0000010770 00000 n 0000000501 00000 n -0000056916 00000 n -0000057090 00000 n -0000057335 00000 n +0000057885 00000 n +0000058059 00000 n +0000058304 00000 n 0000010977 00000 n -0000057508 00000 n +0000058477 00000 n 0000000555 00000 n -0000057630 00000 n +0000058599 00000 n 0000011179 00000 n 0000000609 00000 n -0000057762 00000 n -0000057928 00000 n -0000058173 00000 n +0000058731 00000 n +0000058897 00000 n +0000059142 00000 n 0000011380 00000 n -0000058346 00000 n +0000059315 00000 n 0000000663 00000 n -0000058468 00000 n +0000059437 00000 n 0000011581 00000 n 0000000717 00000 n -0000058600 00000 n -0000058742 00000 n -0000058987 00000 n +0000059569 00000 n +0000059711 00000 n +0000059956 00000 n 0000011783 00000 n 0000000771 00000 n -0000059119 00000 n +0000060088 00000 n 0000011982 00000 n 0000000825 00000 n -0000059251 00000 n -0000059357 00000 n -0000059530 00000 n -0000059779 00000 n +0000060220 00000 n +0000060326 00000 n +0000060499 00000 n +0000060748 00000 n 0000012180 00000 n -0000059956 00000 n +0000060925 00000 n 0000000879 00000 n -0000060080 00000 n +0000061049 00000 n 0000012383 00000 n 0000000935 00000 n -0000060215 00000 n -0000060380 00000 n -0000060629 00000 n +0000061184 00000 n +0000061349 00000 n +0000061598 00000 n 0000012586 00000 n -0000060806 00000 n +0000061775 00000 n 0000000991 00000 n -0000060930 00000 n +0000061899 00000 n 0000012789 00000 n 0000001047 00000 n 0000013329 00000 n @@ -3230,61 +3270,61 @@ xref 0000013164 00000 n 0000013216 00000 n 0000013277 00000 n -0000148619 00000 n -0000144073 00000 n -0000146346 00000 n -0000151789 00000 n -0000150892 00000 n -0000151957 00000 n -0000022336 00000 n -0000022398 00000 n -0000022451 00000 n -0000022513 00000 n -0000025137 00000 n -0000025199 00000 n -0000025252 00000 n -0000025314 00000 n -0000025367 00000 n -0000025428 00000 n -0000027454 00000 n -0000027516 00000 n -0000028460 00000 n -0000028522 00000 n -0000030583 00000 n -0000030645 00000 n -0000030698 00000 n -0000030760 00000 n -0000043883 00000 n -0000043945 00000 n -0000061065 00000 n -0000061173 00000 n +0000149863 00000 n +0000145317 00000 n +0000147590 00000 n +0000153033 00000 n +0000152136 00000 n +0000153201 00000 n +0000022414 00000 n +0000022476 00000 n +0000022529 00000 n +0000022591 00000 n +0000025471 00000 n +0000025533 00000 n +0000025586 00000 n +0000025648 00000 n +0000025701 00000 n +0000025762 00000 n +0000027866 00000 n +0000027928 00000 n +0000028950 00000 n +0000029012 00000 n +0000031151 00000 n +0000031213 00000 n +0000031266 00000 n +0000031328 00000 n +0000044529 00000 n +0000044591 00000 n +0000062034 00000 n +0000062142 00000 n 0000019961 00000 n -0000061371 00000 n -0000061508 00000 n -0000061717 00000 n -0000061966 00000 n +0000062340 00000 n +0000062477 00000 n +0000062686 00000 n +0000062935 00000 n 0000020160 00000 n -0000062143 00000 n +0000063112 00000 n 0000013447 00000 n -0000062267 00000 n +0000063236 00000 n 0000020370 00000 n 0000013504 00000 n -0000062402 00000 n -0000062619 00000 n -0000062871 00000 n +0000063371 00000 n +0000063588 00000 n +0000063840 00000 n 0000020580 00000 n -0000063050 00000 n +0000064019 00000 n 0000013561 00000 n -0000063175 00000 n +0000064144 00000 n 0000020791 00000 n 0000013618 00000 n -0000063311 00000 n -0000063496 00000 n -0000063749 00000 n +0000064280 00000 n +0000064465 00000 n +0000064718 00000 n 0000021002 00000 n -0000063928 00000 n +0000064897 00000 n 0000013675 00000 n -0000064053 00000 n +0000065022 00000 n 0000021213 00000 n 0000013732 00000 n 0000021651 00000 n @@ -3293,177 +3333,177 @@ xref 0000021484 00000 n 0000021536 00000 n 0000021598 00000 n -0000025022 00000 n -0000025084 00000 n -0000027339 00000 n -0000027401 00000 n -0000030468 00000 n -0000030530 00000 n -0000064189 00000 n -0000064287 00000 n -0000064483 00000 n -0000022084 00000 n -0000064618 00000 n -0000022566 00000 n +0000025356 00000 n +0000025418 00000 n +0000027751 00000 n +0000027813 00000 n +0000031036 00000 n +0000031098 00000 n +0000065158 00000 n +0000065256 00000 n +0000065486 00000 n +0000022162 00000 n +0000065621 00000 n +0000022644 00000 n 0000021743 00000 n -0000022223 00000 n -0000022284 00000 n -0000064734 00000 n -0000064859 00000 n -0000065051 00000 n -0000024540 00000 n -0000065186 00000 n -0000065294 00000 n -0000065481 00000 n -0000024699 00000 n -0000022645 00000 n -0000065616 00000 n -0000065715 00000 n -0000065827 00000 n -0000065951 00000 n -0000066094 00000 n -0000066203 00000 n -0000066406 00000 n -0000066541 00000 n -0000066649 00000 n -0000066792 00000 n -0000066901 00000 n -0000067081 00000 n -0000067217 00000 n -0000067325 00000 n -0000025480 00000 n -0000022702 00000 n -0000024909 00000 n -0000024970 00000 n -0000067469 00000 n -0000067578 00000 n -0000067778 00000 n -0000026856 00000 n -0000067913 00000 n -0000068021 00000 n -0000068208 00000 n -0000027015 00000 n -0000025585 00000 n -0000068343 00000 n -0000068442 00000 n -0000068554 00000 n -0000068678 00000 n -0000027569 00000 n -0000025642 00000 n -0000027226 00000 n -0000027287 00000 n -0000068821 00000 n -0000068930 00000 n -0000069122 00000 n -0000028209 00000 n -0000069257 00000 n -0000069365 00000 n -0000028575 00000 n -0000027661 00000 n -0000028348 00000 n -0000028409 00000 n -0000069508 00000 n -0000069616 00000 n -0000069725 00000 n -0000069921 00000 n -0000029985 00000 n -0000070056 00000 n -0000070164 00000 n -0000070351 00000 n -0000030144 00000 n -0000028667 00000 n -0000070486 00000 n -0000070585 00000 n -0000070697 00000 n -0000070821 00000 n -0000030813 00000 n -0000028724 00000 n -0000030355 00000 n -0000030416 00000 n -0000152073 00000 n -0000070964 00000 n -0000071073 00000 n -0000071261 00000 n -0000043632 00000 n -0000071396 00000 n -0000071504 00000 n -0000030905 00000 n -0000043998 00000 n -0000043093 00000 n -0000043771 00000 n -0000043832 00000 n -0000044203 00000 n -0000044240 00000 n -0000153160 00000 n -0000044299 00000 n -0000044387 00000 n -0000153028 00000 n -0000044443 00000 n -0000044496 00000 n -0000152910 00000 n -0000044555 00000 n -0000044641 00000 n -0000152831 00000 n -0000044705 00000 n -0000044801 00000 n -0000152752 00000 n -0000044865 00000 n -0000044928 00000 n -0000152659 00000 n -0000044987 00000 n -0000045083 00000 n -0000152580 00000 n +0000022301 00000 n +0000022362 00000 n +0000065737 00000 n +0000065862 00000 n +0000066088 00000 n +0000024874 00000 n +0000066223 00000 n +0000066331 00000 n +0000066518 00000 n +0000025033 00000 n +0000022736 00000 n +0000066653 00000 n +0000066752 00000 n +0000066864 00000 n +0000066988 00000 n +0000067131 00000 n +0000067240 00000 n +0000067478 00000 n +0000067613 00000 n +0000067721 00000 n +0000067865 00000 n +0000067974 00000 n +0000068189 00000 n +0000068325 00000 n +0000068433 00000 n +0000025814 00000 n +0000022793 00000 n +0000025243 00000 n +0000025304 00000 n +0000068577 00000 n +0000068686 00000 n +0000068920 00000 n +0000027268 00000 n +0000069055 00000 n +0000069163 00000 n +0000069350 00000 n +0000027427 00000 n +0000025919 00000 n +0000069485 00000 n +0000069584 00000 n +0000069696 00000 n +0000069820 00000 n +0000027981 00000 n +0000025976 00000 n +0000027638 00000 n +0000027699 00000 n +0000069963 00000 n +0000070072 00000 n +0000070298 00000 n +0000028699 00000 n +0000070433 00000 n +0000070541 00000 n +0000029065 00000 n +0000028073 00000 n +0000028838 00000 n +0000028899 00000 n +0000070684 00000 n +0000070792 00000 n +0000070901 00000 n +0000071131 00000 n +0000030553 00000 n +0000071266 00000 n +0000071374 00000 n +0000071561 00000 n +0000030712 00000 n +0000029157 00000 n +0000071696 00000 n +0000071795 00000 n +0000071907 00000 n +0000072031 00000 n +0000031381 00000 n +0000029214 00000 n +0000030923 00000 n +0000030984 00000 n +0000153317 00000 n +0000072174 00000 n +0000072283 00000 n +0000072505 00000 n +0000044278 00000 n +0000072640 00000 n +0000072748 00000 n +0000031473 00000 n +0000044644 00000 n +0000043661 00000 n +0000044417 00000 n +0000044478 00000 n +0000044849 00000 n +0000044886 00000 n +0000154404 00000 n +0000044945 00000 n +0000045033 00000 n +0000154272 00000 n +0000045089 00000 n 0000045142 00000 n -0000045228 00000 n -0000152462 00000 n -0000045284 00000 n -0000045337 00000 n -0000152383 00000 n -0000045396 00000 n -0000045487 00000 n -0000152304 00000 n -0000045546 00000 n -0000047041 00000 n -0000047957 00000 n -0000048919 00000 n -0000049521 00000 n -0000050235 00000 n -0000141755 00000 n -0000071786 00000 n -0000072364 00000 n -0000072387 00000 n -0000072842 00000 n -0000073283 00000 n -0000073704 00000 n -0000076369 00000 n -0000076589 00000 n -0000094115 00000 n -0000094420 00000 n -0000108724 00000 n -0000109008 00000 n -0000124015 00000 n -0000124316 00000 n -0000141412 00000 n -0000141983 00000 n -0000144256 00000 n -0000146529 00000 n -0000148802 00000 n -0000151075 00000 n -0000152158 00000 n -0000152227 00000 n -0000153239 00000 n -0000153439 00000 n -0000153601 00000 n -0000153780 00000 n -0000153981 00000 n -0000154083 00000 n -0000154121 00000 n -0000154384 00000 n +0000154154 00000 n +0000045201 00000 n +0000045287 00000 n +0000154075 00000 n +0000045351 00000 n +0000045447 00000 n +0000153996 00000 n +0000045511 00000 n +0000045574 00000 n +0000153903 00000 n +0000045633 00000 n +0000045729 00000 n +0000153824 00000 n +0000045788 00000 n +0000045874 00000 n +0000153706 00000 n +0000045930 00000 n +0000045983 00000 n +0000153627 00000 n +0000046042 00000 n +0000046133 00000 n +0000153548 00000 n +0000046192 00000 n +0000047751 00000 n +0000048667 00000 n +0000049629 00000 n +0000050231 00000 n +0000051052 00000 n +0000142999 00000 n +0000073030 00000 n +0000073608 00000 n +0000073631 00000 n +0000074086 00000 n +0000074527 00000 n +0000074948 00000 n +0000077613 00000 n +0000077833 00000 n +0000095359 00000 n +0000095664 00000 n +0000109968 00000 n +0000110252 00000 n +0000125259 00000 n +0000125560 00000 n +0000142656 00000 n +0000143227 00000 n +0000145500 00000 n +0000147773 00000 n +0000150046 00000 n +0000152319 00000 n +0000153402 00000 n +0000153471 00000 n +0000154483 00000 n +0000154683 00000 n +0000154845 00000 n +0000155024 00000 n +0000155225 00000 n +0000155327 00000 n +0000155365 00000 n +0000155628 00000 n trailer << /Size 356 /Root 354 0 R /Info 355 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -154594 +155838 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.luatex.tpf index d4d7ede63..78b570c32 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.luatex.tpf @@ -389,21 +389,25 @@ endobj << /ExtGState 1 0 R /Font << /F18 62 0 R /F15 64 0 R /F16 65 0 R >> >> endobj 88 0 obj -<< /Length 392 >> +<< /Length 437 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(1)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(In)31(tro)-30(duction)]TJ ET @@ -427,7 +431,7 @@ endobj << /ExtGState 1 0 R /Font << /F18 62 0 R /F15 64 0 R /F16 65 0 R >> >> endobj 110 0 obj -<< /Length 2738 >> +<< /Length 2882 >> stream /opacity1 gs /Artifact BMC @@ -466,16 +470,20 @@ BT 1 0 0 1 355.036 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(2)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Swiss)]TJ /F15 9.96264 Tf @@ -486,7 +494,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(A)]TJ @@ -512,15 +520,19 @@ BT 1 0 0 1 235.886 596.671 Tm [(1)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 568.782 Tm [(2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 568.782 Tm [<0067>]TJ +1 0 0 1 150.954 568.782 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 568.782 Tm [(Living)]TJ @@ -532,21 +544,25 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 550.393 Tm [(Switzerland)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 11.95517 Tf 1 0 0 1 133.768 522.505 Tm [(2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 150.954 522.505 Tm [<0067>]TJ +1 0 0 1 150.954 522.505 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F18 11.95517 Tf 1 0 0 1 164.403 522.505 Tm [(Hobbies)]TJ @@ -554,7 +570,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 504.115 Tm [(Albhorn)]TJ @@ -579,7 +595,7 @@ endobj << /ExtGState 1 0 R /Font << /F16 65 0 R /F15 64 0 R /F18 62 0 R >> >> endobj 122 0 obj -<< /Length 1812 >> +<< /Length 1857 >> stream /opacity1 gs /Artifact BMC @@ -618,16 +634,20 @@ BT 1 0 0 1 357.997 650.317 Tm [(b)-27(ear)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(3)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Italian)]TJ /F15 9.96264 Tf @@ -638,7 +658,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Italian)]TJ @@ -679,21 +699,25 @@ endobj << /ExtGState 1 0 R /Font << /F16 65 0 R /F15 64 0 R /F18 62 0 R >> >> endobj 130 0 obj -<< /Length 722 >> +<< /Length 767 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(4)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Mask)31(ed)]TJ /F15 9.96264 Tf @@ -704,7 +728,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Mask)27(ed)]TJ @@ -733,7 +757,7 @@ endobj << /ExtGState 1 0 R /Font << /F18 62 0 R /F15 64 0 R /F16 65 0 R >> >> endobj 143 0 obj -<< /Length 1946 >> +<< /Length 1991 >> stream /opacity1 gs /Artifact BMC @@ -770,16 +794,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 618.492 Tm [(5)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 618.492 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 618.492 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 618.492 Tm [(Hugging)]TJ /F15 9.96264 Tf @@ -790,7 +818,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 596.671 Tm [(Duc)27(k)]TJ @@ -839,21 +867,25 @@ endobj << /ExtGState 1 0 R /Font << /F16 65 0 R /F15 64 0 R /F18 62 0 R >> >> endobj 152 0 obj -<< /Length 718 >> +<< /Length 763 >> stream /opacity1 gs /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F18 14.3462 Tf 1 0 0 1 133.768 657.235 Tm [(6)]TJ -/F15 9.96264 Tf -1 0 0 1 141.838 657.235 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 141.838 657.235 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F18 14.3462 Tf 1 0 0 1 157.978 657.235 Tm [(Witc)31(h)]TJ /F15 9.96264 Tf @@ -864,7 +896,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 133.768 635.414 Tm [(Witc)27(h)]TJ @@ -910,12 +942,12 @@ endobj 6 0 obj << /Nums [0 [ 26 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 36 0 R 35 0 R 35 0 R 40 0 R 39 0 R 39 0 R 43 0 R 42 0 R 42 0 R 46 0 R 45 0 R 45 0 R 49 0 R 48 0 R 48 0 R 51 0 R 51 0 R 55 0 R 54 0 R 54 0 R 58 0 R 57 0 R 57 0 R] 1 [ 68 0 R 72 0 R 71 0 R 71 0 R 75 0 R 74 0 R 74 0 R 78 0 R 77 0 R 77 0 R] -2 [ 84 0 R 83 0 R] -3 [ 96 0 R 97 0 R 91 0 R 90 0 R 93 0 R 100 0 R 99 0 R 102 0 R 105 0 R 104 0 R 107 0 R] -4 [ 118 0 R 119 0 R 113 0 R 112 0 R 115 0 R] -5 [ 125 0 R 124 0 R 127 0 R] -6 [ 139 0 R 140 0 R 134 0 R 133 0 R 136 0 R] -7 [ 146 0 R 145 0 R 148 0 R] +2 [ 84 0 R 83 0 R 83 0 R] +3 [ 96 0 R 97 0 R 91 0 R 90 0 R 90 0 R 93 0 R 100 0 R 99 0 R 99 0 R 102 0 R 105 0 R 104 0 R 104 0 R 107 0 R] +4 [ 118 0 R 119 0 R 113 0 R 112 0 R 112 0 R 115 0 R] +5 [ 125 0 R 124 0 R 124 0 R 127 0 R] +6 [ 139 0 R 140 0 R 134 0 R 133 0 R 133 0 R 136 0 R] +7 [ 146 0 R 145 0 R 145 0 R 148 0 R] ] >> endobj 154 0 obj @@ -931,7 +963,7 @@ endobj << /Kids [154 0 R 155 0 R 156 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 158 0 obj << /justify <> @@ -950,7 +982,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -989,7 +1021,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 31 0 R 33 0 R 50 0 R 52 0 R] /ID (ID.0008) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 84 0 R ] /K 29 0 R /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 83 0 R ] /K 29 0 R /ID (ID.0009) >> endobj 29 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [ 30 0 R <> <> ] /ID (ID.0010) >> @@ -1007,7 +1039,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 44 0 R 47 0 R] /ID (ID.0014) >> endobj 34 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 91 0 R ] /K 35 0 R /ID (ID.0015) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 90 0 R ] /K 35 0 R /ID (ID.0015) >> endobj 35 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [ 36 0 R <> <> ] /ID (ID.0016) >> @@ -1019,7 +1051,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R] /ID (ID.0018) >> endobj 38 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 100 0 R ] /K 39 0 R /ID (ID.0019) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 99 0 R ] /K 39 0 R /ID (ID.0019) >> endobj 39 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [ 40 0 R <> <> ] /ID (ID.0020) >> @@ -1028,7 +1060,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0021) >> endobj 41 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 105 0 R ] /K 42 0 R /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 104 0 R ] /K 42 0 R /ID (ID.0022) >> endobj 42 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [ 43 0 R <> <> ] /ID (ID.0023) >> @@ -1037,7 +1069,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0024) >> endobj 44 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 113 0 R ] /K 45 0 R /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 112 0 R ] /K 45 0 R /ID (ID.0025) >> endobj 45 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 44 0 R /K [ 46 0 R <> <> ] /ID (ID.0026) >> @@ -1046,7 +1078,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 45 0 R /K <> /ID (ID.0027) >> endobj 47 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 125 0 R ] /K 48 0 R /ID (ID.0028) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 124 0 R ] /K 48 0 R /ID (ID.0028) >> endobj 48 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 47 0 R /K [ 49 0 R <> <> ] /ID (ID.0029) >> @@ -1064,7 +1096,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [53 0 R 56 0 R] /ID (ID.0033) >> endobj 53 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 134 0 R ] /K 54 0 R /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 133 0 R ] /K 54 0 R /ID (ID.0034) >> endobj 54 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 53 0 R /K [ 55 0 R <> <> ] /ID (ID.0035) >> @@ -1073,7 +1105,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 54 0 R /K <> /ID (ID.0036) >> endobj 56 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 146 0 R ] /K 57 0 R /ID (ID.0037) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 145 0 R ] /K 57 0 R /ID (ID.0037) >> endobj 57 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 56 0 R /K [ 58 0 R <> <> ] /ID (ID.0038) >> @@ -1121,10 +1153,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 83 0 R /ID (ID.0052) >> endobj 83 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 82 0 R /K [84 0 R <> ] /ID (ID.0053) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 82 0 R /K [84 0 R <> <> ] /ID (ID.0053) >> endobj 84 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 83 0 R /K <> /ID (ID.0054) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 83 0 R /K <> /ID (ID.0054) >> endobj 85 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [89 0 R 111 0 R 123 0 R] /ID (ID.0055) >> @@ -1133,16 +1165,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 85 0 R /K [90 0 R 92 0 R 98 0 R 103 0 R] /ID (ID.0056) >> endobj 90 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 89 0 R /K [91 0 R <> ] /ID (ID.0057) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 89 0 R /K [91 0 R <> <> ] /ID (ID.0057) >> endobj 91 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 90 0 R /K <> /ID (ID.0058) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 90 0 R /K <> /ID (ID.0058) >> endobj 92 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 89 0 R /K 93 0 R /ID (ID.0059) >> endobj 93 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 92 0 R /K <> /ID (ID.0060) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 92 0 R /K <> /ID (ID.0060) >> endobj 94 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 95 0 R /ID (ID.0061) >> @@ -1160,46 +1192,46 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 89 0 R /K [99 0 R 101 0 R] /ID (ID.0065) >> endobj 99 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 98 0 R /K [100 0 R <> ] /ID (ID.0066) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 98 0 R /K [100 0 R <> <> ] /ID (ID.0066) >> endobj 100 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 99 0 R /K <> /ID (ID.0067) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 99 0 R /K <> /ID (ID.0067) >> endobj 101 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 98 0 R /K 102 0 R /ID (ID.0068) >> endobj 102 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 101 0 R /K <> /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 101 0 R /K <> /ID (ID.0069) >> endobj 103 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 89 0 R /K [104 0 R 106 0 R] /ID (ID.0070) >> endobj 104 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 103 0 R /K [105 0 R <> ] /ID (ID.0071) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 103 0 R /K [105 0 R <> <> ] /ID (ID.0071) >> endobj 105 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 104 0 R /K <> /ID (ID.0072) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 104 0 R /K <> /ID (ID.0072) >> endobj 106 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 103 0 R /K 107 0 R /ID (ID.0073) >> endobj 107 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 106 0 R /K <> /ID (ID.0074) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 106 0 R /K <> /ID (ID.0074) >> endobj 111 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 85 0 R /K [112 0 R 114 0 R] /ID (ID.0075) >> endobj 112 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 111 0 R /K [113 0 R <> ] /ID (ID.0076) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 111 0 R /K [113 0 R <> <> ] /ID (ID.0076) >> endobj 113 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 112 0 R /K <> /ID (ID.0077) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 112 0 R /K <> /ID (ID.0077) >> endobj 114 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 111 0 R /K 115 0 R /ID (ID.0078) >> endobj 115 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 114 0 R /K <> /ID (ID.0079) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 114 0 R /K <> /ID (ID.0079) >> endobj 116 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 117 0 R /ID (ID.0080) >> @@ -1217,16 +1249,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 85 0 R /K [124 0 R 126 0 R] /ID (ID.0084) >> endobj 124 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 123 0 R /K [125 0 R <> ] /ID (ID.0085) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 123 0 R /K [125 0 R <> <> ] /ID (ID.0085) >> endobj 125 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 124 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 124 0 R /K <> /ID (ID.0086) >> endobj 126 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 123 0 R /K 127 0 R /ID (ID.0087) >> endobj 127 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 126 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 126 0 R /K <> /ID (ID.0088) >> endobj 131 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [132 0 R 144 0 R] /ID (ID.0089) >> @@ -1235,16 +1267,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [133 0 R 135 0 R] /ID (ID.0090) >> endobj 133 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 132 0 R /K [134 0 R <> ] /ID (ID.0091) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 132 0 R /K [134 0 R <> <> ] /ID (ID.0091) >> endobj 134 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0092) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0092) >> endobj 135 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 132 0 R /K 136 0 R /ID (ID.0093) >> endobj 136 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 135 0 R /K <> /ID (ID.0094) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 135 0 R /K <> /ID (ID.0094) >> endobj 137 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 138 0 R /ID (ID.0095) >> @@ -1262,16 +1294,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [145 0 R 147 0 R] /ID (ID.0099) >> endobj 145 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 144 0 R /K [146 0 R <> ] /ID (ID.0100) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 144 0 R /K [146 0 R <> <> ] /ID (ID.0100) >> endobj 146 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 145 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 145 0 R /K <> /ID (ID.0101) >> endobj 147 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 144 0 R /K 148 0 R /ID (ID.0102) >> endobj 148 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 147 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 147 0 R /K <> /ID (ID.0103) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 157 0 R /ClassMap 158 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> @@ -1977,185 +2009,185 @@ endobj xref 0 178 0000000010 65535 f -0000017754 00000 n -0000017801 00000 n -0000017823 00000 n -0000017845 00000 n -0000037215 00000 n -0000017904 00000 n -0000020491 00000 n -0000022793 00000 n -0000021313 00000 n +0000018123 00000 n +0000018170 00000 n +0000018192 00000 n +0000018214 00000 n +0000038193 00000 n +0000018273 00000 n +0000020921 00000 n +0000023482 00000 n +0000021850 00000 n 0000000012 00000 f -0000021381 00000 n +0000021918 00000 n 0000000014 00000 f -0000021451 00000 n +0000021988 00000 n 0000000020 00000 f -0000022331 00000 n -0000021532 00000 n -0000022604 00000 n -0000022433 00000 n -0000022706 00000 n +0000023020 00000 n +0000022069 00000 n +0000023293 00000 n +0000023122 00000 n +0000023395 00000 n 0000000000 00000 f -0000022854 00000 n -0000022991 00000 n -0000023081 00000 n -0000023198 00000 n -0000023288 00000 n -0000023393 00000 n -0000023562 00000 n -0000023708 00000 n -0000023877 00000 n -0000024050 00000 n -0000024173 00000 n -0000024314 00000 n -0000024479 00000 n -0000024596 00000 n -0000024761 00000 n -0000024934 00000 n -0000025057 00000 n -0000025160 00000 n -0000025334 00000 n -0000025509 00000 n -0000025632 00000 n -0000025782 00000 n -0000025957 00000 n -0000026081 00000 n -0000026255 00000 n -0000026430 00000 n -0000026554 00000 n -0000026720 00000 n -0000026895 00000 n -0000027019 00000 n -0000027161 00000 n -0000027328 00000 n -0000027431 00000 n -0000027601 00000 n -0000027776 00000 n -0000027900 00000 n -0000028062 00000 n -0000028237 00000 n +0000023543 00000 n +0000023680 00000 n +0000023770 00000 n +0000023887 00000 n +0000023977 00000 n +0000024082 00000 n +0000024251 00000 n +0000024397 00000 n +0000024566 00000 n +0000024739 00000 n +0000024862 00000 n +0000025003 00000 n +0000025168 00000 n +0000025285 00000 n +0000025450 00000 n +0000025623 00000 n +0000025746 00000 n +0000025849 00000 n +0000026022 00000 n +0000026197 00000 n +0000026320 00000 n +0000026470 00000 n +0000026645 00000 n +0000026769 00000 n +0000026943 00000 n +0000027118 00000 n +0000027242 00000 n +0000027408 00000 n +0000027583 00000 n +0000027707 00000 n +0000027849 00000 n +0000028016 00000 n +0000028119 00000 n +0000028289 00000 n +0000028464 00000 n +0000028588 00000 n +0000028750 00000 n +0000028925 00000 n 0000004172 00000 n 0000004037 00000 n 0000000020 00000 n -0000104522 00000 n -0000102570 00000 n -0000051489 00000 n -0000106469 00000 n -0000106630 00000 n -0000028361 00000 n -0000028466 00000 n -0000028663 00000 n -0000028795 00000 n -0000029000 00000 n -0000029173 00000 n -0000029296 00000 n -0000029510 00000 n -0000029683 00000 n -0000029806 00000 n -0000029988 00000 n -0000030161 00000 n +0000105500 00000 n +0000103548 00000 n +0000052467 00000 n +0000107447 00000 n +0000107608 00000 n +0000029049 00000 n +0000029154 00000 n +0000029351 00000 n +0000029483 00000 n +0000029688 00000 n +0000029861 00000 n +0000029984 00000 n +0000030198 00000 n +0000030371 00000 n +0000030494 00000 n +0000030676 00000 n +0000030849 00000 n 0000007622 00000 n 0000007487 00000 n 0000004271 00000 n -0000030284 00000 n -0000030380 00000 n -0000030574 00000 n -0000030708 00000 n -0000008296 00000 n -0000008161 00000 n +0000030972 00000 n +0000031068 00000 n +0000031297 00000 n +0000031431 00000 n +0000008341 00000 n +0000008206 00000 n 0000007709 00000 n -0000030822 00000 n -0000030942 00000 n -0000031133 00000 n -0000031268 00000 n -0000031373 00000 n -0000031516 00000 n -0000031613 00000 n -0000031721 00000 n -0000031845 00000 n -0000031988 00000 n -0000032094 00000 n -0000032297 00000 n -0000032433 00000 n -0000032540 00000 n -0000032685 00000 n -0000032793 00000 n -0000032974 00000 n -0000033111 00000 n -0000033219 00000 n -0000011320 00000 n -0000011182 00000 n -0000008383 00000 n -0000033365 00000 n -0000033473 00000 n -0000033675 00000 n -0000033812 00000 n -0000033920 00000 n -0000034065 00000 n -0000034164 00000 n -0000034276 00000 n -0000034402 00000 n -0000013419 00000 n -0000013281 00000 n -0000011408 00000 n -0000034547 00000 n -0000034655 00000 n -0000034849 00000 n -0000034986 00000 n -0000035094 00000 n -0000014428 00000 n -0000014290 00000 n -0000013507 00000 n -0000035239 00000 n -0000035347 00000 n -0000035456 00000 n -0000035654 00000 n -0000035791 00000 n -0000035899 00000 n -0000036044 00000 n -0000036143 00000 n -0000036255 00000 n -0000036381 00000 n -0000016661 00000 n -0000016523 00000 n -0000014516 00000 n -0000036526 00000 n -0000036635 00000 n -0000036825 00000 n -0000036962 00000 n -0000037070 00000 n -0000037354 00000 n -0000017666 00000 n -0000017528 00000 n -0000016749 00000 n -0000017867 00000 n -0000018479 00000 n -0000019391 00000 n -0000020338 00000 n -0000020436 00000 n -0000021150 00000 n -0000049532 00000 n -0000049915 00000 n -0000050539 00000 n -0000049948 00000 n -0000050762 00000 n -0000051645 00000 n -0000051848 00000 n -0000052108 00000 n -0000067700 00000 n -0000052408 00000 n -0000082281 00000 n -0000067909 00000 n -0000100573 00000 n -0000082490 00000 n -0000100780 00000 n -0000102732 00000 n -0000104684 00000 n -0000106746 00000 n -0000106864 00000 n +0000031545 00000 n +0000031665 00000 n +0000031892 00000 n +0000032027 00000 n +0000032132 00000 n +0000032275 00000 n +0000032372 00000 n +0000032480 00000 n +0000032604 00000 n +0000032747 00000 n +0000032853 00000 n +0000033092 00000 n +0000033228 00000 n +0000033335 00000 n +0000033480 00000 n +0000033588 00000 n +0000033807 00000 n +0000033945 00000 n +0000034053 00000 n +0000011509 00000 n +0000011371 00000 n +0000008428 00000 n +0000034199 00000 n +0000034307 00000 n +0000034545 00000 n +0000034682 00000 n +0000034790 00000 n +0000034935 00000 n +0000035034 00000 n +0000035146 00000 n +0000035272 00000 n +0000013653 00000 n +0000013515 00000 n +0000011597 00000 n +0000035417 00000 n +0000035525 00000 n +0000035755 00000 n +0000035892 00000 n +0000036000 00000 n +0000014707 00000 n +0000014569 00000 n +0000013741 00000 n +0000036145 00000 n +0000036253 00000 n +0000036362 00000 n +0000036596 00000 n +0000036733 00000 n +0000036841 00000 n +0000036986 00000 n +0000037085 00000 n +0000037197 00000 n +0000037323 00000 n +0000016985 00000 n +0000016847 00000 n +0000014795 00000 n +0000037468 00000 n +0000037577 00000 n +0000037803 00000 n +0000037940 00000 n +0000038048 00000 n +0000038332 00000 n +0000018035 00000 n +0000017897 00000 n +0000017073 00000 n +0000018236 00000 n +0000018909 00000 n +0000019821 00000 n +0000020768 00000 n +0000020866 00000 n +0000021687 00000 n +0000050510 00000 n +0000050893 00000 n +0000051517 00000 n +0000050926 00000 n +0000051740 00000 n +0000052623 00000 n +0000052826 00000 n +0000053086 00000 n +0000068678 00000 n +0000053386 00000 n +0000083259 00000 n +0000068887 00000 n +0000101551 00000 n +0000083468 00000 n +0000101758 00000 n +0000103710 00000 n +0000105662 00000 n +0000107724 00000 n +0000107842 00000 n trailer << /Size 178 /Root 176 0 R /Info 177 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -106997 +107975 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.tpf index a4ae03d8a..7070ad95d 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-no-hyperref.tpf @@ -306,19 +306,24 @@ endobj endobj 88 0 obj << -/Length 281 +/Length 359 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(In)31(tro)-31(duction)]TJ ET EMC @@ -342,12 +347,12 @@ endobj 87 0 obj << /ExtGState 1 0 R -/Font << /F47 61 0 R /F45 65 0 R >> +/Font << /F47 61 0 R /F53 64 0 R /F45 65 0 R >> >> endobj 110 0 obj << -/Length 1722 +/Length 1965 >> stream /opacity1 gs @@ -363,47 +368,62 @@ BT /F45 9.9626 Tf 280.71 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 42.247 0 Td [(b)-31(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.694 0 Td [(1)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 568.846 Td [(2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 568.846 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 568.846 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 41.321 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 550.458 Td [(Switzerland)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 133.768 522.573 Td [(2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 164.396 522.573 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 164.396 522.573 Td [(Hobbies)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 504.185 Td [(Albhorn)]TJ ET @@ -433,7 +453,7 @@ endobj endobj 122 0 obj << -/Length 1099 +/Length 1177 >> stream /opacity1 gs @@ -449,17 +469,22 @@ BT /F45 9.9626 Tf 277.749 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 30.987 0 Td [(b)-28(ear)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(3)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 50.511 0 Td [(b)-30(e)-1(a)1(r)-1(s)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.205 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(2)]TJ ET @@ -489,23 +514,28 @@ endobj endobj 130 0 obj << -/Length 488 +/Length 566 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Mask)31(ed)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 58.162 0 Td [(b)-30(e)-1(a)1(r)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -535,7 +565,7 @@ endobj endobj 143 0 obj << -/Length 1147 +/Length 1225 >> stream /opacity1 gs @@ -551,17 +581,22 @@ BT /F45 9.9626 Tf 292.565 650.374 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(duc)28(k)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 618.549 Td [(5)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 618.549 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 618.549 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 63.171 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 596.731 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(3)]TJ ET @@ -834,23 +869,28 @@ endstream endobj 153 0 obj << -/Length 479 +/Length 557 >> stream /opacity1 gs /Artifact BMC EMC -/section-number <> BDC +/heading-number <> BDC BT /F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 157.434 657.235 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F47 14.3462 Tf 157.434 657.235 Td [(Witc)31(h)]TJ/F53 9.9626 Tf( )Tj/F47 14.3462 Tf 47.409 0 Td [(duc)31(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 133.768 635.417 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -896,12 +936,12 @@ endobj 6 0 obj << /Nums [0 [ 25 0 R 29 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 35 0 R 36 0 R 35 0 R 35 0 R 39 0 R 40 0 R 39 0 R 39 0 R 42 0 R 43 0 R 42 0 R 42 0 R 45 0 R 46 0 R 45 0 R 45 0 R 48 0 R 49 0 R 48 0 R 48 0 R 51 0 R 51 0 R 54 0 R 55 0 R 54 0 R 54 0 R 57 0 R 58 0 R 57 0 R 57 0 R ] 1 [ 68 0 R 72 0 R 73 0 R 72 0 R 72 0 R 75 0 R 76 0 R 75 0 R 75 0 R 78 0 R 79 0 R 78 0 R 78 0 R ] -2 [ 84 0 R 83 0 R ] -3 [ 97 0 R 98 0 R 91 0 R 90 0 R 94 0 R 101 0 R 100 0 R 103 0 R 106 0 R 105 0 R 108 0 R ] -4 [ 119 0 R 120 0 R 113 0 R 112 0 R 116 0 R ] -5 [ 125 0 R 124 0 R 128 0 R ] -6 [ 140 0 R 141 0 R 134 0 R 133 0 R 137 0 R ] -7 [ 147 0 R 146 0 R 150 0 R ] +2 [ 84 0 R 83 0 R 83 0 R ] +3 [ 97 0 R 98 0 R 91 0 R 90 0 R 90 0 R 94 0 R 101 0 R 100 0 R 100 0 R 103 0 R 106 0 R 105 0 R 105 0 R 108 0 R ] +4 [ 119 0 R 120 0 R 113 0 R 112 0 R 112 0 R 116 0 R ] +5 [ 125 0 R 124 0 R 124 0 R 128 0 R ] +6 [ 140 0 R 141 0 R 134 0 R 133 0 R 133 0 R 137 0 R ] +7 [ 147 0 R 146 0 R 146 0 R 150 0 R ] ] >> endobj 155 0 obj @@ -917,7 +957,7 @@ endobj << /Kids [155 0 R 156 0 R 157 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 159 0 obj << /justify <> @@ -936,7 +976,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -972,7 +1012,7 @@ endobj << /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [28 0 R 31 0 R 33 0 R 50 0 R 52 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 84 0 R ] /K 29 0 R /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 83 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.0009) >> @@ -990,7 +1030,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 44 0 R 47 0 R] /ID (ID.0013) >> endobj 34 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 91 0 R ] /K 35 0 R /ID (ID.0014) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 90 0 R ] /K 35 0 R /ID (ID.0014) >> endobj 35 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [<> 36 0 R <> <>] /ID (ID.0015) >> @@ -1002,7 +1042,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R] /ID (ID.0017) >> endobj 38 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 101 0 R ] /K 39 0 R /ID (ID.0018) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 100 0 R ] /K 39 0 R /ID (ID.0018) >> endobj 39 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [<> 40 0 R <> <>] /ID (ID.0019) >> @@ -1011,7 +1051,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0020) >> endobj 41 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 106 0 R ] /K 42 0 R /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 105 0 R ] /K 42 0 R /ID (ID.0021) >> endobj 42 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [<> 43 0 R <> <>] /ID (ID.0022) >> @@ -1020,7 +1060,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0023) >> endobj 44 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 113 0 R ] /K 45 0 R /ID (ID.0024) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 112 0 R ] /K 45 0 R /ID (ID.0024) >> endobj 45 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 44 0 R /K [<> 46 0 R <> <>] /ID (ID.0025) >> @@ -1029,7 +1069,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 45 0 R /K <> /ID (ID.0026) >> endobj 47 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 125 0 R ] /K 48 0 R /ID (ID.0027) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 124 0 R ] /K 48 0 R /ID (ID.0027) >> endobj 48 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 47 0 R /K [<> 49 0 R <> <>] /ID (ID.0028) >> @@ -1047,7 +1087,7 @@ endobj << /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [53 0 R 56 0 R] /ID (ID.0032) >> endobj 53 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 134 0 R ] /K 54 0 R /ID (ID.0033) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 133 0 R ] /K 54 0 R /ID (ID.0033) >> endobj 54 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 53 0 R /K [<> 55 0 R <> <>] /ID (ID.0034) >> @@ -1056,7 +1096,7 @@ endobj << /Type /StructElem /S /Lbl /NS 11 0 R /P 54 0 R /K <> /ID (ID.0035) >> endobj 56 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 147 0 R ] /K 57 0 R /ID (ID.0036) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 52 0 R /Ref [ 146 0 R ] /K 57 0 R /ID (ID.0036) >> endobj 57 0 obj << /Type /StructElem /S /Reference /NS 9 0 R /P 56 0 R /K [<> 58 0 R <> <>] /ID (ID.0037) >> @@ -1104,10 +1144,10 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K 83 0 R /ID (ID.0051) >> endobj 83 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 82 0 R /K [84 0 R <>] /ID (ID.0052) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 82 0 R /K [84 0 R <> <>] /ID (ID.0052) >> endobj 84 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 83 0 R /K <> /ID (ID.0053) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 83 0 R /K <> /ID (ID.0053) >> endobj 86 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [89 0 R 111 0 R 123 0 R] /ID (ID.0054) >> @@ -1116,16 +1156,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 86 0 R /K [90 0 R 93 0 R 99 0 R 104 0 R] /ID (ID.0055) >> endobj 90 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 89 0 R /K [91 0 R <>] /ID (ID.0056) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 89 0 R /K [91 0 R <> <>] /ID (ID.0056) >> endobj 91 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 90 0 R /K <> /ID (ID.0057) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 90 0 R /K <> /ID (ID.0057) >> endobj 93 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 89 0 R /K 94 0 R /ID (ID.0058) >> endobj 94 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 93 0 R /K <> /ID (ID.0059) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 93 0 R /K <> /ID (ID.0059) >> endobj 95 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 96 0 R /ID (ID.0060) >> @@ -1143,46 +1183,46 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 89 0 R /K [100 0 R 102 0 R] /ID (ID.0064) >> endobj 100 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 99 0 R /K [101 0 R <>] /ID (ID.0065) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 99 0 R /K [101 0 R <> <>] /ID (ID.0065) >> endobj 101 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 100 0 R /K <> /ID (ID.0066) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 100 0 R /K <> /ID (ID.0066) >> endobj 102 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 99 0 R /K 103 0 R /ID (ID.0067) >> endobj 103 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 102 0 R /K <> /ID (ID.0068) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 102 0 R /K <> /ID (ID.0068) >> endobj 104 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 89 0 R /K [105 0 R 107 0 R] /ID (ID.0069) >> endobj 105 0 obj -<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 104 0 R /K [106 0 R <>] /ID (ID.0070) >> +<< /Type /StructElem /T /S /subsection /NS 15 0 R /P 104 0 R /K [106 0 R <> <>] /ID (ID.0070) >> endobj 106 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 105 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 105 0 R /K <> /ID (ID.0071) >> endobj 107 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 104 0 R /K 108 0 R /ID (ID.0072) >> endobj 108 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 107 0 R /K <> /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 107 0 R /K <> /ID (ID.0073) >> endobj 111 0 obj << /Type /StructElem /S /Sect /NS 11 0 R /P 86 0 R /K [112 0 R 115 0 R] /ID (ID.0074) >> endobj 112 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 111 0 R /K [113 0 R <>] /ID (ID.0075) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 111 0 R /K [113 0 R <> <>] /ID (ID.0075) >> endobj 113 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 112 0 R /K <> /ID (ID.0076) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 112 0 R /K <> /ID (ID.0076) >> endobj 115 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 111 0 R /K 116 0 R /ID (ID.0077) >> endobj 116 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 115 0 R /K <> /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 115 0 R /K <> /ID (ID.0078) >> endobj 117 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 118 0 R /ID (ID.0079) >> @@ -1200,16 +1240,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 86 0 R /K [124 0 R 127 0 R] /ID (ID.0083) >> endobj 124 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 123 0 R /K [125 0 R <>] /ID (ID.0084) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 123 0 R /K [125 0 R <> <>] /ID (ID.0084) >> endobj 125 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 124 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 124 0 R /K <> /ID (ID.0085) >> endobj 127 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 123 0 R /K 128 0 R /ID (ID.0086) >> endobj 128 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 127 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 127 0 R /K <> /ID (ID.0087) >> endobj 131 0 obj << /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [132 0 R 145 0 R] /ID (ID.0088) >> @@ -1218,16 +1258,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [133 0 R 136 0 R] /ID (ID.0089) >> endobj 133 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 132 0 R /K [134 0 R <>] /ID (ID.0090) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 132 0 R /K [134 0 R <> <>] /ID (ID.0090) >> endobj 134 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0091) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0091) >> endobj 136 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 132 0 R /K 137 0 R /ID (ID.0092) >> endobj 137 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 136 0 R /K <> /ID (ID.0093) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 136 0 R /K <> /ID (ID.0093) >> endobj 138 0 obj << /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 139 0 R /ID (ID.0094) >> @@ -1245,16 +1285,16 @@ endobj << /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [146 0 R 149 0 R] /ID (ID.0098) >> endobj 146 0 obj -<< /Type /StructElem /T /S /section /NS 15 0 R /P 145 0 R /K [147 0 R <>] /ID (ID.0099) >> +<< /Type /StructElem /T /S /section /NS 15 0 R /P 145 0 R /K [147 0 R <> <>] /ID (ID.0099) >> endobj 147 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 146 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 146 0 R /K <> /ID (ID.0100) >> endobj 149 0 obj << /Type /StructElem /S /semantic-para /NS 15 0 R /P 145 0 R /K 150 0 R /ID (ID.0101) >> endobj 150 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 149 0 R /K <> /ID (ID.0102) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 149 0 R /K <> /ID (ID.0102) >> endobj 5 0 obj << /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 158 0 R /ClassMap 159 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> @@ -2122,194 +2162,194 @@ endobj xref 0 184 0000000010 65535 f -0000031782 00000 n -0000031829 00000 n -0000031851 00000 n -0000031873 00000 n -0000051434 00000 n -0000031932 00000 n -0000034581 00000 n -0000036883 00000 n -0000035403 00000 n +0000032427 00000 n +0000032474 00000 n +0000032496 00000 n +0000032518 00000 n +0000052671 00000 n +0000032577 00000 n +0000035288 00000 n +0000037849 00000 n +0000036217 00000 n 0000000012 00000 f -0000035471 00000 n +0000036285 00000 n 0000000014 00000 f -0000035541 00000 n +0000036355 00000 n 0000000020 00000 f -0000036421 00000 n -0000035622 00000 n -0000036694 00000 n -0000036523 00000 n -0000036796 00000 n +0000037387 00000 n +0000036436 00000 n +0000037660 00000 n +0000037489 00000 n +0000037762 00000 n 0000000000 00000 f -0000036944 00000 n -0000037081 00000 n -0000037198 00000 n -0000037288 00000 n -0000037393 00000 n +0000037910 00000 n +0000038047 00000 n +0000038164 00000 n +0000038254 00000 n +0000038359 00000 n 0000006383 00000 n -0000037560 00000 n -0000037706 00000 n -0000037875 00000 n -0000038076 00000 n -0000038197 00000 n -0000038338 00000 n -0000038499 00000 n -0000038616 00000 n -0000038781 00000 n -0000038983 00000 n -0000039104 00000 n -0000039207 00000 n -0000039381 00000 n -0000039585 00000 n -0000039707 00000 n -0000039857 00000 n -0000040061 00000 n -0000040183 00000 n -0000040357 00000 n -0000040561 00000 n -0000040683 00000 n -0000040849 00000 n -0000041053 00000 n -0000041175 00000 n -0000041317 00000 n -0000041480 00000 n -0000041583 00000 n -0000041753 00000 n -0000041957 00000 n -0000042079 00000 n -0000042241 00000 n -0000042445 00000 n +0000038526 00000 n +0000038672 00000 n +0000038841 00000 n +0000039042 00000 n +0000039163 00000 n +0000039304 00000 n +0000039465 00000 n +0000039582 00000 n +0000039747 00000 n +0000039949 00000 n +0000040070 00000 n +0000040173 00000 n +0000040347 00000 n +0000040551 00000 n +0000040673 00000 n +0000040823 00000 n +0000041027 00000 n +0000041149 00000 n +0000041323 00000 n +0000041527 00000 n +0000041649 00000 n +0000041815 00000 n +0000042019 00000 n +0000042141 00000 n +0000042283 00000 n +0000042446 00000 n +0000042549 00000 n +0000042719 00000 n +0000042923 00000 n +0000043045 00000 n +0000043207 00000 n +0000043411 00000 n 0000006518 00000 n 0000000015 00000 n -0000128404 00000 n -0000123860 00000 n -0000126132 00000 n -0000131572 00000 n -0000130676 00000 n -0000131739 00000 n -0000042567 00000 n -0000042672 00000 n +0000129641 00000 n +0000125097 00000 n +0000127369 00000 n +0000132809 00000 n +0000131913 00000 n +0000132976 00000 n +0000043533 00000 n +0000043638 00000 n 0000012450 00000 n -0000042867 00000 n -0000042999 00000 n -0000043204 00000 n -0000043405 00000 n -0000043526 00000 n -0000043740 00000 n -0000043941 00000 n -0000044062 00000 n -0000044244 00000 n -0000044447 00000 n +0000043833 00000 n +0000043965 00000 n +0000044170 00000 n +0000044371 00000 n +0000044492 00000 n +0000044706 00000 n +0000044907 00000 n +0000045028 00000 n +0000045210 00000 n +0000045413 00000 n 0000012585 00000 n 0000006630 00000 n -0000044569 00000 n -0000044665 00000 n -0000044857 00000 n -0000013013 00000 n -0000044989 00000 n -0000013148 00000 n +0000045535 00000 n +0000045631 00000 n +0000045856 00000 n +0000013091 00000 n +0000045988 00000 n +0000013226 00000 n 0000012673 00000 n -0000045103 00000 n -0000045223 00000 n -0000045411 00000 n -0000015006 00000 n -0000045543 00000 n -0000045648 00000 n -0000045788 00000 n -0000045885 00000 n -0000045993 00000 n -0000046114 00000 n -0000046254 00000 n -0000046361 00000 n -0000046562 00000 n -0000046696 00000 n -0000046803 00000 n -0000046945 00000 n -0000047053 00000 n -0000047231 00000 n -0000047365 00000 n -0000047473 00000 n -0000015143 00000 n -0000013224 00000 n -0000047616 00000 n -0000047724 00000 n -0000047924 00000 n -0000016403 00000 n -0000048059 00000 n -0000048167 00000 n -0000048310 00000 n -0000048409 00000 n -0000048521 00000 n -0000048645 00000 n -0000016541 00000 n -0000015244 00000 n -0000048788 00000 n -0000048896 00000 n -0000049088 00000 n -0000017178 00000 n -0000049223 00000 n -0000049331 00000 n -0000017316 00000 n -0000016630 00000 n -0000049474 00000 n -0000049582 00000 n -0000049691 00000 n -0000049887 00000 n -0000018612 00000 n -0000050022 00000 n -0000050130 00000 n -0000050273 00000 n -0000050372 00000 n -0000050484 00000 n -0000050608 00000 n -0000018751 00000 n -0000017405 00000 n -0000131851 00000 n +0000046102 00000 n +0000046222 00000 n +0000046443 00000 n +0000015339 00000 n +0000046575 00000 n +0000046680 00000 n +0000046820 00000 n +0000046917 00000 n +0000047025 00000 n +0000047146 00000 n +0000047286 00000 n +0000047393 00000 n +0000047627 00000 n +0000047761 00000 n +0000047868 00000 n +0000048010 00000 n +0000048118 00000 n +0000048331 00000 n +0000048466 00000 n +0000048574 00000 n +0000015476 00000 n +0000013314 00000 n +0000048717 00000 n +0000048825 00000 n +0000049059 00000 n +0000016814 00000 n +0000049194 00000 n +0000049302 00000 n +0000049445 00000 n +0000049544 00000 n +0000049656 00000 n +0000049780 00000 n +0000016952 00000 n +0000015577 00000 n +0000049923 00000 n +0000050031 00000 n +0000050257 00000 n +0000017667 00000 n +0000050392 00000 n +0000050500 00000 n +0000017805 00000 n +0000017041 00000 n +0000050643 00000 n 0000050751 00000 n 0000050860 00000 n -0000051048 00000 n -0000031554 00000 n -0000051183 00000 n -0000051291 00000 n -0000018840 00000 n -0000031693 00000 n -0000031015 00000 n -0000031895 00000 n -0000032585 00000 n -0000033497 00000 n -0000034446 00000 n -0000034526 00000 n -0000035240 00000 n -0000121542 00000 n -0000051573 00000 n -0000052151 00000 n -0000052174 00000 n -0000052629 00000 n -0000053070 00000 n -0000053491 00000 n -0000056156 00000 n -0000056376 00000 n -0000073902 00000 n -0000074207 00000 n -0000088511 00000 n -0000088795 00000 n -0000103802 00000 n -0000104103 00000 n -0000121199 00000 n -0000121770 00000 n -0000124042 00000 n -0000126314 00000 n -0000128586 00000 n -0000130858 00000 n -0000131936 00000 n -0000132004 00000 n -0000132123 00000 n +0000051090 00000 n +0000019179 00000 n +0000051225 00000 n +0000051333 00000 n +0000051476 00000 n +0000051575 00000 n +0000051687 00000 n +0000051811 00000 n +0000019318 00000 n +0000017894 00000 n +0000133088 00000 n +0000051954 00000 n +0000052063 00000 n +0000052285 00000 n +0000032199 00000 n +0000052420 00000 n +0000052528 00000 n +0000019407 00000 n +0000032338 00000 n +0000031582 00000 n +0000032540 00000 n +0000033292 00000 n +0000034204 00000 n +0000035153 00000 n +0000035233 00000 n +0000036054 00000 n +0000122779 00000 n +0000052810 00000 n +0000053388 00000 n +0000053411 00000 n +0000053866 00000 n +0000054307 00000 n +0000054728 00000 n +0000057393 00000 n +0000057613 00000 n +0000075139 00000 n +0000075444 00000 n +0000089748 00000 n +0000090032 00000 n +0000105039 00000 n +0000105340 00000 n +0000122436 00000 n +0000123007 00000 n +0000125279 00000 n +0000127551 00000 n +0000129823 00000 n +0000132095 00000 n +0000133173 00000 n +0000133241 00000 n +0000133360 00000 n trailer << /Size 184 /Root 182 0 R /Info 183 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -132256 +133493 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging-hyperref.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging-hyperref.tpf index 28fae3658..1c2da1198 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging-hyperref.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging-hyperref.tpf @@ -200,12 +200,13 @@ endobj endobj 65 0 obj << -/Length 131 +/Length 181 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(1)-1100(In)31(tro)-31(duction)]TJ/F45 9.9626 Tf 169.366 -567.87 Td [(3)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(I)-1(n)31(tro)-30(duction)]TJ/F45 9.9626 Tf 169.366 -567.87 Td [(3)]TJ ET endstream endobj @@ -237,32 +238,35 @@ endobj 63 0 obj << /ExtGState 1 0 R -/Font << /F47 37 0 R /F45 40 0 R >> +/Font << /F47 37 0 R /F53 67 0 R /F45 40 0 R >> >> endobj -70 0 obj +71 0 obj << -/Length 520 +/Length 662 >> stream /opacity1 gs BT -/F45 9.9626 Tf 237.106 650.374 Td [(Figure)-333(1:)-445(Image)-333(of)-333(a)-333(swis)-1(s)-333(b)-28(ear)]TJ/F47 14.3462 Tf -103.338 -31.825 Td [(2)-1100(Swiss)-366(b)-31(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(A)-333(swiss)-334(b)-28(ear)-333(see)-333(\034gure)-333(1)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.1)-1125(Living)-375(ground)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Switzerland)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.2)-1125(Hobbies)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Albhorn)]TJ 169.366 -414.82 Td [(4)]TJ +/F45 9.9626 Tf 237.106 650.374 Td [(Figure)-333(1:)-445(Image)-333(of)-333(a)-333(swis)-1(s)-333(b)-28(ear)]TJ/F47 14.3462 Tf -103.338 -31.825 Td [(2)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Swiss)-367(b)-30(ear)-1(s)]TJ/F45 9.9626 Tf 0 -21.818 Td [(A)-333(swiss)-334(b)-28(ear)-333(see)-333(\034gure)-333(1)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.1)]TJ/F53 9.9626 Tf [-1350( )]TJ +/F50 11.9552 Tf [278(Living)-375(ground)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Switzerland)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.2)]TJ/F53 9.9626 Tf [-1350( )]TJ +/F50 11.9552 Tf [278(Hobbies)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Albhorn)]TJ 169.366 -414.82 Td [(4)]TJ ET endstream endobj -69 0 obj +70 0 obj << /Type /Page -/Contents 70 0 R -/Resources 68 0 R +/Contents 71 0 R +/Resources 69 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 41 0 R -/Annots [ 67 0 R ] +/Annots [ 68 0 R ] >> endobj -67 0 obj +68 0 obj << /Type /Annot /Subtype /Link @@ -271,60 +275,61 @@ endobj /A << /S /GoTo /D (figure.struct.1) >> >> endobj -71 0 obj +72 0 obj << -/D [69 0 R /XYZ 132.768 705.06 null] +/D [70 0 R /XYZ 132.768 705.06 null] >> endobj 60 0 obj << -/D [69 0 R /XYZ 133.768 667.198 null] +/D [70 0 R /XYZ 133.768 667.198 null] >> endobj 44 0 obj << -/D [69 0 R /XYZ 133.768 636.482 null] +/D [70 0 R /XYZ 133.768 636.482 null] >> endobj 45 0 obj << -/D [69 0 R /XYZ 133.768 582.793 null] +/D [70 0 R /XYZ 133.768 582.793 null] >> endobj 46 0 obj << -/D [69 0 R /XYZ 133.768 536.52 null] +/D [70 0 R /XYZ 133.768 536.52 null] >> endobj -68 0 obj +69 0 obj << /ExtGState 1 0 R -/Font << /F45 40 0 R /F47 37 0 R /F50 39 0 R >> +/Font << /F45 40 0 R /F47 37 0 R /F53 67 0 R /F50 39 0 R >> >> endobj -75 0 obj +76 0 obj << -/Length 316 +/Length 369 >> stream /opacity1 gs BT -/F45 9.9626 Tf 234.146 650.374 Td [(Figure)-333(2:)-445(Image)-333(of)-333(a)-333(italian)-334(b)-27(ear)]TJ/F47 14.3462 Tf -100.378 -31.825 Td [(3)-1100(Italian)-366(b)-31(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Italian)-333(b)-28(ear,)-333(see)-334(\034gure)-333(2)]TJ 169.366 -507.366 Td [(5)]TJ +/F45 9.9626 Tf 234.146 650.374 Td [(Figure)-333(2:)-445(Image)-333(of)-333(a)-333(italian)-334(b)-27(ear)]TJ/F47 14.3462 Tf -100.378 -31.825 Td [(3)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(I)-1(t)1(alian)-367(b)-30(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Italian)-333(b)-28(ear,)-333(see)-334(\034gure)-333(2)]TJ 169.366 -507.366 Td [(5)]TJ ET endstream endobj -74 0 obj +75 0 obj << /Type /Page -/Contents 75 0 R -/Resources 73 0 R +/Contents 76 0 R +/Resources 74 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 41 0 R -/Annots [ 72 0 R ] +/Annots [ 73 0 R ] >> endobj -72 0 obj +73 0 obj << /Type /Annot /Subtype /Link @@ -333,87 +338,89 @@ endobj /A << /S /GoTo /D (figure.struct.2) >> >> endobj -76 0 obj +77 0 obj << -/D [74 0 R /XYZ 132.768 705.06 null] +/D [75 0 R /XYZ 132.768 705.06 null] >> endobj 61 0 obj << -/D [74 0 R /XYZ 133.768 667.198 null] +/D [75 0 R /XYZ 133.768 667.198 null] >> endobj 47 0 obj << -/D [74 0 R /XYZ 133.768 636.482 null] +/D [75 0 R /XYZ 133.768 636.482 null] >> endobj -73 0 obj +74 0 obj << /ExtGState 1 0 R -/Font << /F45 40 0 R /F47 37 0 R >> +/Font << /F45 40 0 R /F47 37 0 R /F53 67 0 R >> >> endobj -79 0 obj +80 0 obj << -/Length 181 +/Length 234 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(4)-1100(Mask)31(ed)-367(b)-30(ear)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Mask)28(ed)-334(b)-27(ear)]TJ 169.366 -546.052 Td [(6)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(M)-1(a)1(sk)30(ed)-367(b)-30(ear)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Mask)28(ed)-334(b)-27(ear)]TJ 169.366 -546.052 Td [(6)]TJ ET endstream endobj -78 0 obj +79 0 obj << /Type /Page -/Contents 79 0 R -/Resources 77 0 R +/Contents 80 0 R +/Resources 78 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 41 0 R >> endobj -80 0 obj +81 0 obj << -/D [78 0 R /XYZ 132.768 705.06 null] +/D [79 0 R /XYZ 132.768 705.06 null] >> endobj 48 0 obj << -/D [78 0 R /XYZ 133.768 675.168 null] +/D [79 0 R /XYZ 133.768 675.168 null] >> endobj -77 0 obj +78 0 obj << /ExtGState 1 0 R -/Font << /F47 37 0 R /F45 40 0 R >> +/Font << /F47 37 0 R /F53 67 0 R /F45 40 0 R >> >> endobj -84 0 obj +85 0 obj << -/Length 328 +/Length 374 >> stream /opacity1 gs BT -/F45 9.9626 Tf 248.961 650.374 Td [(Figure)-333(3:)-445(Image)-333(of)-333(a)-333(duc)27(k)]TJ/F47 14.3462 Tf -115.193 -31.825 Td [(5)-1100(Hugging)-366(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Duc)28(k)-334(h)28(ugging)-333(the)-333(glob)-28(e,)-333(see)-334(\034gure)-333(3)]TJ 169.366 -507.366 Td [(7)]TJ +/F45 9.9626 Tf 248.961 650.374 Td [(Figure)-333(3:)-445(Image)-333(of)-333(a)-333(duc)27(k)]TJ/F47 14.3462 Tf -115.193 -31.825 Td [(5)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Hugging)-367(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Duc)28(k)-334(h)28(ugging)-333(the)-333(glob)-28(e,)-333(see)-334(\034gure)-333(3)]TJ 169.366 -507.366 Td [(7)]TJ ET endstream endobj -83 0 obj +84 0 obj << /Type /Page -/Contents 84 0 R -/Resources 82 0 R +/Contents 85 0 R +/Resources 83 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 86 0 R -/Annots [ 81 0 R ] +/Parent 87 0 R +/Annots [ 82 0 R ] >> endobj -81 0 obj +82 0 obj << /Type /Annot /Subtype /Link @@ -422,33 +429,33 @@ endobj /A << /S /GoTo /D (figure.struct.3) >> >> endobj -85 0 obj +86 0 obj << -/D [83 0 R /XYZ 132.768 705.06 null] +/D [84 0 R /XYZ 132.768 705.06 null] >> endobj 62 0 obj << -/D [83 0 R /XYZ 133.768 667.198 null] +/D [84 0 R /XYZ 133.768 667.198 null] >> endobj 49 0 obj << -/D [83 0 R /XYZ 133.768 628.512 null] +/D [84 0 R /XYZ 133.768 628.512 null] >> endobj 50 0 obj << -/D [83 0 R /XYZ 133.768 636.482 null] +/D [84 0 R /XYZ 133.768 636.482 null] >> endobj -82 0 obj +83 0 obj << /ExtGState 1 0 R -/Font << /F45 40 0 R /F47 37 0 R >> +/Font << /F45 40 0 R /F47 37 0 R /F53 67 0 R >> >> endobj -87 0 obj +88 0 obj << /Type /Metadata /Subtype /XML /Length 12107 @@ -691,41 +698,42 @@ stream endstream endobj -90 0 obj +91 0 obj << -/Length 177 +/Length 223 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(6)-1100(Witc)31(h)-367(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Witc)28(h)-334(duc)28(k)]TJ 169.366 -546.052 Td [(8)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Witc)30(h)-366(duc)30(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Witc)28(h)-334(duc)28(k)]TJ 169.366 -546.052 Td [(8)]TJ ET endstream endobj -89 0 obj +90 0 obj << /Type /Page -/Contents 90 0 R -/Resources 88 0 R +/Contents 91 0 R +/Resources 89 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 86 0 R +/Parent 87 0 R >> endobj -91 0 obj +92 0 obj << -/D [89 0 R /XYZ 132.768 705.06 null] +/D [90 0 R /XYZ 132.768 705.06 null] >> endobj 51 0 obj << -/D [89 0 R /XYZ 133.768 675.168 null] +/D [90 0 R /XYZ 133.768 675.168 null] >> endobj -88 0 obj +89 0 obj << /ExtGState 1 0 R -/Font << /F47 37 0 R /F45 40 0 R >> +/Font << /F47 37 0 R /F53 67 0 R /F45 40 0 R >> >> endobj 1 0 obj @@ -740,79 +748,107 @@ endobj 4 0 obj << >> endobj -92 0 obj +93 0 obj << /S /GoTo /D (section.1) >> endobj -94 0 obj +95 0 obj (\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n) endobj -95 0 obj +96 0 obj << /S /GoTo /D (part.1) >> endobj -97 0 obj +98 0 obj (\376\377\000B\000e\000a\000r\000s) endobj -98 0 obj +99 0 obj << /S /GoTo /D (section.2) >> endobj -100 0 obj +101 0 obj (\376\377\000S\000w\000i\000s\000s\000\040\000b\000e\000a\000r\000s) endobj -101 0 obj +102 0 obj << /S /GoTo /D (subsection.2.1) >> endobj -103 0 obj +104 0 obj (\376\377\000L\000i\000v\000i\000n\000g\000\040\000g\000r\000o\000u\000n\000d) endobj -104 0 obj +105 0 obj << /S /GoTo /D (subsection.2.2) >> endobj -106 0 obj +107 0 obj (\376\377\000H\000o\000b\000b\000i\000e\000s) endobj -107 0 obj +108 0 obj << /S /GoTo /D (section.3) >> endobj -109 0 obj +110 0 obj (\376\377\000I\000t\000a\000l\000i\000a\000n\000\040\000b\000e\000a\000r\000s) endobj -110 0 obj +111 0 obj << /S /GoTo /D (section.4) >> endobj -112 0 obj +113 0 obj (\376\377\000M\000a\000s\000k\000e\000d\000\040\000b\000e\000a\000r) endobj -113 0 obj +114 0 obj << /S /GoTo /D (part.2) >> endobj -115 0 obj +116 0 obj (\376\377\000D\000u\000c\000k\000s) endobj -116 0 obj +117 0 obj << /S /GoTo /D (section.5) >> endobj -118 0 obj +119 0 obj (\376\377\000H\000u\000g\000g\000i\000n\000g\000\040\000d\000u\000c\000k) endobj -119 0 obj +120 0 obj << /S /GoTo /D (section.6) >> endobj -121 0 obj +122 0 obj (\376\377\000W\000i\000t\000c\000h\000\040\000d\000u\000c\000k) endobj 123 0 obj +[333] +endobj +125 0 obj [555.4 555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3] endobj -124 0 obj +126 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8 593.6] endobj -125 0 obj +127 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4] endobj -126 0 obj +128 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4 794.3] endobj -127 0 obj +129 0 obj +<< +/Length1 1144 +/Length2 1422 +/Length3 0 +/Length 2566 +>> +[BINARY STREAM] +endobj +130 0 obj +<< +/Type /FontDescriptor +/FontName /MUQHVU+PdfTeX-Space +/Flags 4 +/FontBBox [0 -290 333 1127] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 0 +/XHeight 500 +/CharSet (/space) +/FontFile 129 0 R +>> +endobj +131 0 obj << /Length1 727 /Length2 16700 @@ -821,7 +857,7 @@ endobj >> [BINARY STREAM] endobj -128 0 obj +132 0 obj << /Type /FontDescriptor /FontName /QEGYBL+SFBX1000 @@ -834,10 +870,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/I/M/S/W/a/b/c/d/e/eight/five/four/g/h/i/k/l/n/o/one/r/s/seven/six/t/three/two/u/w) -/FontFile 127 0 R +/FontFile 131 0 R >> endobj -129 0 obj +133 0 obj << /Length1 727 /Length2 13478 @@ -846,7 +882,7 @@ endobj >> [BINARY STREAM] endobj -130 0 obj +134 0 obj << /Type /FontDescriptor /FontName /AASSVW+SFBX1200 @@ -859,10 +895,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/D/H/L/a/b/c/d/e/g/i/k/n/o/one/period/r/s/seven/three/two/u/v) -/FontFile 129 0 R +/FontFile 133 0 R >> endobj -131 0 obj +135 0 obj << /Length1 727 /Length2 14181 @@ -871,7 +907,7 @@ endobj >> [BINARY STREAM] endobj -132 0 obj +136 0 obj << /Type /FontDescriptor /FontName /NRFIYS+SFBX1440 @@ -884,10 +920,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/F/H/I/L/M/S/W/a/b/c/d/e/f/five/four/g/h/i/k/l/n/o/one/r/s/six/t/three/two/u/w) -/FontFile 131 0 R +/FontFile 135 0 R >> endobj -133 0 obj +137 0 obj << /Length1 721 /Length2 16276 @@ -896,7 +932,7 @@ endobj >> [BINARY STREAM] endobj -134 0 obj +138 0 obj << /Type /FontDescriptor /FontName /KZYHYE+SFRM1000 @@ -909,16 +945,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/D/F/H/I/L/M/S/W/a/b/c/colon/comma/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/o/one/period/r/s/seven/six/t/three/two/u/v/w/z) -/FontFile 133 0 R +/FontFile 137 0 R >> endobj -122 0 obj +124 0 obj << /Type /Encoding /Differences [28/fi 44/comma 46/period 49/one/two/three/four/five/six/seven/eight 58/colon 65/A/B/C/D 70/F 72/H/I 76/L/M 83/S 87/W 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o 114/r/s/t/u/v/w 122/z] >> endobj -135 0 obj +139 0 obj << /Length 2030 >> @@ -1067,15 +1103,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /QEGYBL+SFBX1000 -/FontDescriptor 128 0 R +/FontDescriptor 132 0 R /FirstChar 49 /LastChar 119 -/Widths 125 0 R -/Encoding 122 0 R -/ToUnicode 135 0 R +/Widths 127 0 R +/Encoding 124 0 R +/ToUnicode 139 0 R >> endobj -136 0 obj +140 0 obj << /Length 2030 >> @@ -1224,15 +1260,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /AASSVW+SFBX1200 -/FontDescriptor 130 0 R +/FontDescriptor 134 0 R /FirstChar 46 /LastChar 118 -/Widths 124 0 R -/Encoding 122 0 R -/ToUnicode 136 0 R +/Widths 126 0 R +/Encoding 124 0 R +/ToUnicode 140 0 R >> endobj -137 0 obj +141 0 obj << /Length 2030 >> @@ -1381,15 +1417,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /NRFIYS+SFBX1440 -/FontDescriptor 132 0 R +/FontDescriptor 136 0 R /FirstChar 49 /LastChar 119 -/Widths 126 0 R -/Encoding 122 0 R -/ToUnicode 137 0 R +/Widths 128 0 R +/Encoding 124 0 R +/ToUnicode 141 0 R >> endobj -138 0 obj +142 0 obj << /Length 2030 >> @@ -1538,193 +1574,243 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /KZYHYE+SFRM1000 -/FontDescriptor 134 0 R +/FontDescriptor 138 0 R /FirstChar 28 /LastChar 122 +/Widths 125 0 R +/Encoding 124 0 R +/ToUnicode 142 0 R +>> +endobj +143 0 obj +<< +/Length 654 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: ProcSet (CIDInit) +%%IncludeResource: ProcSet (CIDInit) +%%BeginResource: CMap (TeX-pdftexspace-builtin-0) +%%Title: (TeX-pdftexspace-builtin-0 TeX pdftexspace-builtin 0) +%%Version: 1.000 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo +<< /Registry (TeX) +/Ordering (pdftexspace-builtin) +/Supplement 0 +>> def +/CMapName /TeX-pdftexspace-builtin-0 def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +0 beginbfrange +endbfrange +1 beginbfchar +<20> <0020> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj +67 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /MUQHVU+PdfTeX-Space +/FontDescriptor 130 0 R +/FirstChar 32 +/LastChar 32 /Widths 123 0 R -/Encoding 122 0 R -/ToUnicode 138 0 R +/ToUnicode 143 0 R >> endobj 41 0 obj << /Type /Pages /Count 6 -/Parent 139 0 R -/Kids [21 0 R 56 0 R 64 0 R 69 0 R 74 0 R 78 0 R] +/Parent 144 0 R +/Kids [21 0 R 56 0 R 64 0 R 70 0 R 75 0 R 79 0 R] >> endobj -86 0 obj +87 0 obj << /Type /Pages /Count 2 -/Parent 139 0 R -/Kids [83 0 R 89 0 R] +/Parent 144 0 R +/Kids [84 0 R 90 0 R] >> endobj -139 0 obj +144 0 obj << /Type /Pages /Count 8 -/Kids [41 0 R 86 0 R] +/Kids [41 0 R 87 0 R] >> endobj -140 0 obj +145 0 obj << /Type /Outlines -/First 93 0 R -/Last 114 0 R +/First 94 0 R +/Last 115 0 R /Count 3 >> endobj -120 0 obj +121 0 obj << -/Title 121 0 R -/A 119 0 R -/Parent 114 0 R -/Prev 117 0 R +/Title 122 0 R +/A 120 0 R +/Parent 115 0 R +/Prev 118 0 R >> endobj -117 0 obj +118 0 obj << -/Title 118 0 R -/A 116 0 R -/Parent 114 0 R -/Next 120 0 R +/Title 119 0 R +/A 117 0 R +/Parent 115 0 R +/Next 121 0 R >> endobj -114 0 obj +115 0 obj << -/Title 115 0 R -/A 113 0 R -/Parent 140 0 R -/Prev 96 0 R -/First 117 0 R -/Last 120 0 R +/Title 116 0 R +/A 114 0 R +/Parent 145 0 R +/Prev 97 0 R +/First 118 0 R +/Last 121 0 R /Count -2 >> endobj -111 0 obj +112 0 obj << -/Title 112 0 R -/A 110 0 R -/Parent 96 0 R -/Prev 108 0 R +/Title 113 0 R +/A 111 0 R +/Parent 97 0 R +/Prev 109 0 R >> endobj -108 0 obj +109 0 obj << -/Title 109 0 R -/A 107 0 R -/Parent 96 0 R -/Prev 99 0 R -/Next 111 0 R +/Title 110 0 R +/A 108 0 R +/Parent 97 0 R +/Prev 100 0 R +/Next 112 0 R >> endobj -105 0 obj +106 0 obj << -/Title 106 0 R -/A 104 0 R -/Parent 99 0 R -/Prev 102 0 R +/Title 107 0 R +/A 105 0 R +/Parent 100 0 R +/Prev 103 0 R >> endobj -102 0 obj +103 0 obj << -/Title 103 0 R -/A 101 0 R -/Parent 99 0 R -/Next 105 0 R +/Title 104 0 R +/A 102 0 R +/Parent 100 0 R +/Next 106 0 R >> endobj -99 0 obj +100 0 obj << -/Title 100 0 R -/A 98 0 R -/Parent 96 0 R -/Next 108 0 R -/First 102 0 R -/Last 105 0 R +/Title 101 0 R +/A 99 0 R +/Parent 97 0 R +/Next 109 0 R +/First 103 0 R +/Last 106 0 R /Count -2 >> endobj -96 0 obj +97 0 obj << -/Title 97 0 R -/A 95 0 R -/Parent 140 0 R -/Prev 93 0 R -/Next 114 0 R -/First 99 0 R -/Last 111 0 R +/Title 98 0 R +/A 96 0 R +/Parent 145 0 R +/Prev 94 0 R +/Next 115 0 R +/First 100 0 R +/Last 112 0 R /Count -3 >> endobj -93 0 obj +94 0 obj << -/Title 94 0 R -/A 92 0 R -/Parent 140 0 R -/Next 96 0 R +/Title 95 0 R +/A 93 0 R +/Parent 145 0 R +/Next 97 0 R >> endobj -141 0 obj +146 0 obj << /Names [(Doc-Start) 35 0 R (figure.struct.1) 60 0 R (figure.struct.2) 61 0 R (figure.struct.3) 62 0 R (page.1) 34 0 R (page.2) 58 0 R] /Limits [(Doc-Start) (page.2)] >> endobj -142 0 obj +147 0 obj << -/Names [(page.3) 66 0 R (page.4) 71 0 R (page.5) 76 0 R (page.6) 80 0 R (page.7) 85 0 R (page.8) 91 0 R] +/Names [(page.3) 66 0 R (page.4) 72 0 R (page.5) 77 0 R (page.6) 81 0 R (page.7) 86 0 R (page.8) 92 0 R] /Limits [(page.3) (page.8)] >> endobj -143 0 obj +148 0 obj << /Names [(part.1) 43 0 R (part.2) 49 0 R (section*.1) 36 0 R (section*.2) 59 0 R (section.1) 42 0 R (section.2) 44 0 R] /Limits [(part.1) (section.2)] >> endobj -144 0 obj +149 0 obj << /Names [(section.3) 47 0 R (section.4) 48 0 R (section.5) 50 0 R (section.6) 51 0 R (subsection.2.1) 45 0 R (subsection.2.2) 46 0 R] /Limits [(section.3) (subsection.2.2)] >> endobj -145 0 obj +150 0 obj << -/Kids [141 0 R 142 0 R 143 0 R 144 0 R] +/Kids [146 0 R 147 0 R 148 0 R 149 0 R] /Limits [(Doc-Start) (subsection.2.2)] >> endobj -146 0 obj +151 0 obj << -/Dests 145 0 R +/Dests 150 0 R >> endobj -147 0 obj +152 0 obj << /Type /Catalog -/Pages 139 0 R -/Outlines 140 0 R -/Names 146 0 R -/PageMode /UseOutlines/OpenAction [21 0 R /Fit]/Lang (en)/PageLabels <>]>>/Metadata 87 0 R +/Pages 144 0 R +/Outlines 145 0 R +/Names 151 0 R +/PageMode /UseOutlines/OpenAction [21 0 R /Fit]/Lang (en)/PageLabels <>]>>/Metadata 88 0 R >> endobj -148 0 obj +153 0 obj << /Producer (pdfTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 149 +0 154 0000000005 65535 f -0000022422 00000 n -0000022469 00000 n -0000022491 00000 n -0000022513 00000 n +0000022884 00000 n +0000022931 00000 n +0000022953 00000 n +0000022975 00000 n 0000000006 00000 f 0000000007 00000 f 0000000008 00000 f @@ -1757,21 +1843,21 @@ xref 0000003187 00000 n 0000003246 00000 n 0000003306 00000 n -0000097720 00000 n -0000093176 00000 n -0000095448 00000 n -0000099992 00000 n -0000100174 00000 n -0000005683 00000 n -0000005743 00000 n -0000006893 00000 n -0000006953 00000 n -0000007013 00000 n -0000007970 00000 n -0000008523 00000 n -0000009481 00000 n -0000009541 00000 n -0000022286 00000 n +0000101090 00000 n +0000096546 00000 n +0000098818 00000 n +0000103362 00000 n +0000104425 00000 n +0000005733 00000 n +0000005793 00000 n +0000007097 00000 n +0000007157 00000 n +0000007217 00000 n +0000008239 00000 n +0000008857 00000 n +0000009873 00000 n +0000009933 00000 n +0000022736 00000 n 0000004584 00000 n 0000004763 00000 n 0000004942 00000 n @@ -1780,100 +1866,105 @@ xref 0000003466 00000 n 0000005121 00000 n 0000005180 00000 n -0000006833 00000 n -0000007910 00000 n -0000009421 00000 n -0000005803 00000 n -0000005506 00000 n +0000007037 00000 n +0000008179 00000 n +0000009813 00000 n +0000005853 00000 n +0000005556 00000 n 0000005316 00000 n -0000005624 00000 n -0000006595 00000 n -0000007072 00000 n -0000006458 00000 n -0000005879 00000 n -0000006774 00000 n -0000007672 00000 n -0000008030 00000 n -0000007535 00000 n -0000007160 00000 n -0000007851 00000 n -0000008583 00000 n -0000008346 00000 n -0000008106 00000 n -0000008464 00000 n -0000009183 00000 n -0000009601 00000 n -0000009046 00000 n -0000008659 00000 n -0000009362 00000 n -0000100284 00000 n -0000009677 00000 n -0000022346 00000 n -0000022109 00000 n -0000021873 00000 n -0000022227 00000 n -0000022535 00000 n -0000101351 00000 n -0000022581 00000 n -0000022668 00000 n -0000101224 00000 n -0000022711 00000 n -0000022763 00000 n -0000101109 00000 n -0000022809 00000 n -0000022895 00000 n -0000101031 00000 n -0000022947 00000 n +0000005674 00000 n +0000104258 00000 n +0000006799 00000 n +0000007276 00000 n +0000006662 00000 n +0000005941 00000 n +0000006978 00000 n +0000007941 00000 n +0000008299 00000 n +0000007804 00000 n +0000007376 00000 n +0000008120 00000 n +0000008917 00000 n +0000008680 00000 n +0000008387 00000 n +0000008798 00000 n +0000009575 00000 n +0000009993 00000 n +0000009438 00000 n +0000009005 00000 n +0000009754 00000 n +0000104535 00000 n +0000010081 00000 n +0000022796 00000 n +0000022559 00000 n +0000022277 00000 n +0000022677 00000 n +0000022997 00000 n +0000105607 00000 n 0000023043 00000 n -0000100953 00000 n -0000023095 00000 n -0000023158 00000 n -0000100862 00000 n -0000023205 00000 n -0000023301 00000 n -0000100784 00000 n -0000023348 00000 n -0000023434 00000 n -0000100667 00000 n -0000023478 00000 n -0000023531 00000 n -0000100588 00000 n -0000023578 00000 n -0000023669 00000 n -0000100509 00000 n -0000023716 00000 n -0000090858 00000 n -0000023797 00000 n -0000024375 00000 n -0000024830 00000 n -0000025271 00000 n -0000025692 00000 n -0000043218 00000 n -0000043523 00000 n -0000057827 00000 n -0000058111 00000 n -0000073118 00000 n -0000073419 00000 n -0000090515 00000 n -0000091086 00000 n -0000093358 00000 n -0000095630 00000 n -0000097902 00000 n -0000100366 00000 n -0000100433 00000 n -0000101426 00000 n -0000101615 00000 n -0000101771 00000 n -0000101944 00000 n -0000102139 00000 n -0000102241 00000 n -0000102279 00000 n -0000102471 00000 n +0000023130 00000 n +0000105479 00000 n +0000023173 00000 n +0000023225 00000 n +0000105363 00000 n +0000023271 00000 n +0000023357 00000 n +0000105284 00000 n +0000023409 00000 n +0000023505 00000 n +0000105205 00000 n +0000023557 00000 n +0000023620 00000 n +0000105113 00000 n +0000023667 00000 n +0000023763 00000 n +0000105035 00000 n +0000023810 00000 n +0000023896 00000 n +0000104918 00000 n +0000023940 00000 n +0000023993 00000 n +0000104839 00000 n +0000024040 00000 n +0000024131 00000 n +0000104760 00000 n +0000024178 00000 n +0000024259 00000 n +0000094228 00000 n +0000024282 00000 n +0000024860 00000 n +0000025315 00000 n +0000025756 00000 n +0000026177 00000 n +0000028842 00000 n +0000029062 00000 n +0000046588 00000 n +0000046893 00000 n +0000061197 00000 n +0000061481 00000 n +0000076488 00000 n +0000076789 00000 n +0000093885 00000 n +0000094456 00000 n +0000096728 00000 n +0000099000 00000 n +0000101272 00000 n +0000103544 00000 n +0000104617 00000 n +0000104684 00000 n +0000105682 00000 n +0000105871 00000 n +0000106027 00000 n +0000106200 00000 n +0000106395 00000 n +0000106497 00000 n +0000106535 00000 n +0000106727 00000 n trailer -<< /Size 149 -/Root 147 0 R -/Info 148 0 R +<< /Size 154 +/Root 152 0 R +/Info 153 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -102681 +106937 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging.tpf b/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging.tpf index 365cf088b..5b73efa65 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-article-no-tagging.tpf @@ -56,12 +56,13 @@ endobj endobj 34 0 obj << -/Length 131 +/Length 181 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(1)-1100(In)31(tro)-31(duction)]TJ/F45 9.9626 Tf 169.366 -567.87 Td [(3)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(1)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(I)-1(n)31(tro)-30(duction)]TJ/F45 9.9626 Tf 169.366 -567.87 Td [(3)]TJ ET endstream endobj @@ -78,118 +79,124 @@ endobj 32 0 obj << /ExtGState 1 0 R -/Font << /F47 24 0 R /F45 27 0 R >> +/Font << /F47 24 0 R /F53 35 0 R /F45 27 0 R >> >> endobj -37 0 obj +38 0 obj << -/Length 520 +/Length 662 >> stream /opacity1 gs BT -/F45 9.9626 Tf 237.106 650.374 Td [(Figure)-333(1:)-445(Image)-333(of)-333(a)-333(swis)-1(s)-333(b)-28(ear)]TJ/F47 14.3462 Tf -103.338 -31.825 Td [(2)-1100(Swiss)-366(b)-31(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(A)-333(swiss)-334(b)-28(ear)-333(see)-333(\034gure)-333(1)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.1)-1125(Living)-375(ground)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Switzerland)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.2)-1125(Hobbies)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Albhorn)]TJ 169.366 -414.82 Td [(4)]TJ +/F45 9.9626 Tf 237.106 650.374 Td [(Figure)-333(1:)-445(Image)-333(of)-333(a)-333(swis)-1(s)-333(b)-28(ear)]TJ/F47 14.3462 Tf -103.338 -31.825 Td [(2)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Swiss)-367(b)-30(ear)-1(s)]TJ/F45 9.9626 Tf 0 -21.818 Td [(A)-333(swiss)-334(b)-28(ear)-333(see)-333(\034gure)-333(1)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.1)]TJ/F53 9.9626 Tf [-1350( )]TJ +/F50 11.9552 Tf [278(Living)-375(ground)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Switzerland)]TJ/F50 11.9552 Tf 0 -27.885 Td [(2.2)]TJ/F53 9.9626 Tf [-1350( )]TJ +/F50 11.9552 Tf [278(Hobbies)]TJ/F45 9.9626 Tf 0 -18.388 Td [(Albhorn)]TJ 169.366 -414.82 Td [(4)]TJ ET endstream endobj -36 0 obj +37 0 obj << /Type /Page -/Contents 37 0 R -/Resources 35 0 R +/Contents 38 0 R +/Resources 36 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 28 0 R >> endobj -35 0 obj +36 0 obj << /ExtGState 1 0 R -/Font << /F45 27 0 R /F47 24 0 R /F50 26 0 R >> +/Font << /F45 27 0 R /F47 24 0 R /F53 35 0 R /F50 26 0 R >> >> endobj -40 0 obj +41 0 obj << -/Length 316 +/Length 369 >> stream /opacity1 gs BT -/F45 9.9626 Tf 234.146 650.374 Td [(Figure)-333(2:)-445(Image)-333(of)-333(a)-333(italian)-334(b)-27(ear)]TJ/F47 14.3462 Tf -100.378 -31.825 Td [(3)-1100(Italian)-366(b)-31(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Italian)-333(b)-28(ear,)-333(see)-334(\034gure)-333(2)]TJ 169.366 -507.366 Td [(5)]TJ +/F45 9.9626 Tf 234.146 650.374 Td [(Figure)-333(2:)-445(Image)-333(of)-333(a)-333(italian)-334(b)-27(ear)]TJ/F47 14.3462 Tf -100.378 -31.825 Td [(3)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(I)-1(t)1(alian)-367(b)-30(ears)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Italian)-333(b)-28(ear,)-333(see)-334(\034gure)-333(2)]TJ 169.366 -507.366 Td [(5)]TJ ET endstream endobj -39 0 obj +40 0 obj << /Type /Page -/Contents 40 0 R -/Resources 38 0 R +/Contents 41 0 R +/Resources 39 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 28 0 R >> endobj -38 0 obj +39 0 obj << /ExtGState 1 0 R -/Font << /F45 27 0 R /F47 24 0 R >> +/Font << /F45 27 0 R /F47 24 0 R /F53 35 0 R >> >> endobj -43 0 obj +44 0 obj << -/Length 181 +/Length 234 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(4)-1100(Mask)31(ed)-367(b)-30(ear)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Mask)28(ed)-334(b)-27(ear)]TJ 169.366 -546.052 Td [(6)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(4)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(M)-1(a)1(sk)30(ed)-367(b)-30(ear)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Mask)28(ed)-334(b)-27(ear)]TJ 169.366 -546.052 Td [(6)]TJ ET endstream endobj -42 0 obj +43 0 obj << /Type /Page -/Contents 43 0 R -/Resources 41 0 R +/Contents 44 0 R +/Resources 42 0 R /MediaBox [0 0 612 792] /Tabs /S /Parent 28 0 R >> endobj -41 0 obj +42 0 obj << /ExtGState 1 0 R -/Font << /F47 24 0 R /F45 27 0 R >> +/Font << /F47 24 0 R /F53 35 0 R /F45 27 0 R >> >> endobj -46 0 obj +47 0 obj << -/Length 328 +/Length 374 >> stream /opacity1 gs BT -/F45 9.9626 Tf 248.961 650.374 Td [(Figure)-333(3:)-445(Image)-333(of)-333(a)-333(duc)27(k)]TJ/F47 14.3462 Tf -115.193 -31.825 Td [(5)-1100(Hugging)-366(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Duc)28(k)-334(h)28(ugging)-333(the)-333(glob)-28(e,)-333(see)-334(\034gure)-333(3)]TJ 169.366 -507.366 Td [(7)]TJ +/F45 9.9626 Tf 248.961 650.374 Td [(Figure)-333(3:)-445(Image)-333(of)-333(a)-333(duc)27(k)]TJ/F47 14.3462 Tf -115.193 -31.825 Td [(5)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Hugging)-367(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Duc)28(k)-334(h)28(ugging)-333(the)-333(glob)-28(e,)-333(see)-334(\034gure)-333(3)]TJ 169.366 -507.366 Td [(7)]TJ ET endstream endobj -45 0 obj +46 0 obj << /Type /Page -/Contents 46 0 R -/Resources 44 0 R +/Contents 47 0 R +/Resources 45 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 47 0 R +/Parent 48 0 R >> endobj -44 0 obj +45 0 obj << /ExtGState 1 0 R -/Font << /F45 27 0 R /F47 24 0 R >> +/Font << /F45 27 0 R /F47 24 0 R /F53 35 0 R >> >> endobj -48 0 obj +49 0 obj << /Type /Metadata /Subtype /XML /Length 12084 @@ -432,31 +439,32 @@ stream endstream endobj -51 0 obj +52 0 obj << -/Length 177 +/Length 223 >> stream /opacity1 gs BT -/F47 14.3462 Tf 133.768 657.235 Td [(6)-1100(Witc)31(h)-367(duc)31(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Witc)28(h)-334(duc)28(k)]TJ 169.366 -546.052 Td [(8)]TJ +/F47 14.3462 Tf 133.768 657.235 Td [(6)]TJ/F53 9.9626 Tf [-1584( )]TJ +/F47 14.3462 Tf [232(Witc)30(h)-366(duc)30(k)]TJ/F45 9.9626 Tf 0 -21.818 Td [(Witc)28(h)-334(duc)28(k)]TJ 169.366 -546.052 Td [(8)]TJ ET endstream endobj -50 0 obj +51 0 obj << /Type /Page -/Contents 51 0 R -/Resources 49 0 R +/Contents 52 0 R +/Resources 50 0 R /MediaBox [0 0 612 792] /Tabs /S -/Parent 47 0 R +/Parent 48 0 R >> endobj -49 0 obj +50 0 obj << /ExtGState 1 0 R -/Font << /F47 24 0 R /F45 27 0 R >> +/Font << /F47 24 0 R /F53 35 0 R /F45 27 0 R >> >> endobj 1 0 obj @@ -472,18 +480,46 @@ endobj << >> endobj 53 0 obj +[333] +endobj +55 0 obj [555.4 555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3] endobj -54 0 obj +56 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8 593.6] endobj -55 0 obj +57 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4] endobj -56 0 obj +58 0 obj [549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4 794.3] endobj -57 0 obj +59 0 obj +<< +/Length1 1144 +/Length2 1422 +/Length3 0 +/Length 2566 +>> +[BINARY STREAM] +endobj +60 0 obj +<< +/Type /FontDescriptor +/FontName /MUQHVU+PdfTeX-Space +/Flags 4 +/FontBBox [0 -290 333 1127] +/Ascent 0 +/CapHeight 0 +/Descent 0 +/ItalicAngle 0 +/StemV 0 +/XHeight 500 +/CharSet (/space) +/FontFile 59 0 R +>> +endobj +61 0 obj << /Length1 727 /Length2 16700 @@ -492,7 +528,7 @@ endobj >> [BINARY STREAM] endobj -58 0 obj +62 0 obj << /Type /FontDescriptor /FontName /QEGYBL+SFBX1000 @@ -505,10 +541,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/I/M/S/W/a/b/c/d/e/eight/five/four/g/h/i/k/l/n/o/one/r/s/seven/six/t/three/two/u/w) -/FontFile 57 0 R +/FontFile 61 0 R >> endobj -59 0 obj +63 0 obj << /Length1 727 /Length2 13478 @@ -517,7 +553,7 @@ endobj >> [BINARY STREAM] endobj -60 0 obj +64 0 obj << /Type /FontDescriptor /FontName /AASSVW+SFBX1200 @@ -530,10 +566,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/D/H/L/a/b/c/d/e/g/i/k/n/o/one/period/r/s/seven/three/two/u/v) -/FontFile 59 0 R +/FontFile 63 0 R >> endobj -61 0 obj +65 0 obj << /Length1 727 /Length2 14181 @@ -542,7 +578,7 @@ endobj >> [BINARY STREAM] endobj -62 0 obj +66 0 obj << /Type /FontDescriptor /FontName /NRFIYS+SFBX1440 @@ -555,10 +591,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/F/H/I/L/M/S/W/a/b/c/d/e/f/five/four/g/h/i/k/l/n/o/one/r/s/six/t/three/two/u/w) -/FontFile 61 0 R +/FontFile 65 0 R >> endobj -63 0 obj +67 0 obj << /Length1 721 /Length2 16276 @@ -567,7 +603,7 @@ endobj >> [BINARY STREAM] endobj -64 0 obj +68 0 obj << /Type /FontDescriptor /FontName /KZYHYE+SFRM1000 @@ -580,16 +616,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/D/F/H/I/L/M/S/W/a/b/c/colon/comma/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/o/one/period/r/s/seven/six/t/three/two/u/v/w/z) -/FontFile 63 0 R +/FontFile 67 0 R >> endobj -52 0 obj +54 0 obj << /Type /Encoding /Differences [28/fi 44/comma 46/period 49/one/two/three/four/five/six/seven/eight 58/colon 65/A/B/C/D 70/F 72/H/I 76/L/M 83/S 87/W 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o 114/r/s/t/u/v/w 122/z] >> endobj -65 0 obj +69 0 obj << /Length 2030 >> @@ -738,15 +774,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /QEGYBL+SFBX1000 -/FontDescriptor 58 0 R +/FontDescriptor 62 0 R /FirstChar 49 /LastChar 119 -/Widths 55 0 R -/Encoding 52 0 R -/ToUnicode 65 0 R +/Widths 57 0 R +/Encoding 54 0 R +/ToUnicode 69 0 R >> endobj -66 0 obj +70 0 obj << /Length 2030 >> @@ -895,15 +931,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /AASSVW+SFBX1200 -/FontDescriptor 60 0 R +/FontDescriptor 64 0 R /FirstChar 46 /LastChar 118 -/Widths 54 0 R -/Encoding 52 0 R -/ToUnicode 66 0 R +/Widths 56 0 R +/Encoding 54 0 R +/ToUnicode 70 0 R >> endobj -67 0 obj +71 0 obj << /Length 2030 >> @@ -1052,15 +1088,15 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /NRFIYS+SFBX1440 -/FontDescriptor 62 0 R +/FontDescriptor 66 0 R /FirstChar 49 /LastChar 119 -/Widths 56 0 R -/Encoding 52 0 R -/ToUnicode 67 0 R +/Widths 58 0 R +/Encoding 54 0 R +/ToUnicode 71 0 R >> endobj -68 0 obj +72 0 obj << /Length 2030 >> @@ -1209,57 +1245,107 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /KZYHYE+SFRM1000 -/FontDescriptor 64 0 R +/FontDescriptor 68 0 R /FirstChar 28 /LastChar 122 +/Widths 55 0 R +/Encoding 54 0 R +/ToUnicode 72 0 R +>> +endobj +73 0 obj +<< +/Length 654 +>> +stream +%!PS-Adobe-3.0 Resource-CMap +%%DocumentNeededResources: ProcSet (CIDInit) +%%IncludeResource: ProcSet (CIDInit) +%%BeginResource: CMap (TeX-pdftexspace-builtin-0) +%%Title: (TeX-pdftexspace-builtin-0 TeX pdftexspace-builtin 0) +%%Version: 1.000 +%%EndComments +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo +<< /Registry (TeX) +/Ordering (pdftexspace-builtin) +/Supplement 0 +>> def +/CMapName /TeX-pdftexspace-builtin-0 def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +0 beginbfrange +endbfrange +1 beginbfchar +<20> <0020> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +%%EndResource +%%EOF +endstream +endobj +35 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /MUQHVU+PdfTeX-Space +/FontDescriptor 60 0 R +/FirstChar 32 +/LastChar 32 /Widths 53 0 R -/Encoding 52 0 R -/ToUnicode 68 0 R +/ToUnicode 73 0 R >> endobj 28 0 obj << /Type /Pages /Count 6 -/Parent 69 0 R -/Kids [22 0 R 30 0 R 33 0 R 36 0 R 39 0 R 42 0 R] +/Parent 74 0 R +/Kids [22 0 R 30 0 R 33 0 R 37 0 R 40 0 R 43 0 R] >> endobj -47 0 obj +48 0 obj << /Type /Pages /Count 2 -/Parent 69 0 R -/Kids [45 0 R 50 0 R] +/Parent 74 0 R +/Kids [46 0 R 51 0 R] >> endobj -69 0 obj +74 0 obj << /Type /Pages /Count 8 -/Kids [28 0 R 47 0 R] +/Kids [28 0 R 48 0 R] >> endobj -70 0 obj +75 0 obj << /Type /Catalog -/Pages 69 0 R -/Lang (en)/Metadata 48 0 R +/Pages 74 0 R +/Lang (en)/Metadata 49 0 R >> endobj -71 0 obj +76 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 72 +0 77 0000000005 65535 f -0000017989 00000 n -0000018036 00000 n -0000018058 00000 n -0000018080 00000 n +0000018451 00000 n +0000018498 00000 n +0000018520 00000 n +0000018542 00000 n 0000000006 00000 f 0000000007 00000 f 0000000008 00000 f @@ -1279,59 +1365,64 @@ xref 0000001372 00000 n 0000001254 00000 n 0000000015 00000 n -0000091997 00000 n -0000087463 00000 n -0000089730 00000 n -0000094264 00000 n -0000094442 00000 n +0000095363 00000 n +0000090829 00000 n +0000093096 00000 n +0000097630 00000 n +0000098685 00000 n 0000002557 00000 n 0000002439 00000 n 0000001472 00000 n -0000002941 00000 n -0000002823 00000 n +0000002991 00000 n +0000002873 00000 n 0000002633 00000 n -0000003714 00000 n -0000003596 00000 n -0000003017 00000 n -0000004295 00000 n -0000004177 00000 n -0000003802 00000 n -0000004729 00000 n -0000004611 00000 n -0000004371 00000 n -0000005310 00000 n -0000005192 00000 n -0000004805 00000 n -0000094551 00000 n -0000005386 00000 n -0000017913 00000 n -0000017795 00000 n -0000017559 00000 n -0000085147 00000 n -0000018102 00000 n -0000018679 00000 n -0000019133 00000 n -0000019573 00000 n -0000019993 00000 n -0000037518 00000 n -0000037821 00000 n -0000052124 00000 n -0000052406 00000 n -0000067412 00000 n -0000067711 00000 n -0000084806 00000 n -0000085374 00000 n -0000087641 00000 n -0000089908 00000 n -0000092175 00000 n -0000094632 00000 n -0000094698 00000 n -0000094776 00000 n +0000098521 00000 n +0000003918 00000 n +0000003800 00000 n +0000003079 00000 n +0000004564 00000 n +0000004446 00000 n +0000004018 00000 n +0000005063 00000 n +0000004945 00000 n +0000004652 00000 n +0000005702 00000 n +0000005584 00000 n +0000005151 00000 n +0000098794 00000 n +0000005790 00000 n +0000018363 00000 n +0000018245 00000 n +0000017963 00000 n +0000018564 00000 n +0000088513 00000 n +0000018586 00000 n +0000019163 00000 n +0000019617 00000 n +0000020057 00000 n +0000020477 00000 n +0000023141 00000 n +0000023359 00000 n +0000040884 00000 n +0000041187 00000 n +0000055490 00000 n +0000055772 00000 n +0000070778 00000 n +0000071077 00000 n +0000088172 00000 n +0000088740 00000 n +0000091007 00000 n +0000093274 00000 n +0000095541 00000 n +0000097808 00000 n +0000098875 00000 n +0000098941 00000 n +0000099019 00000 n trailer -<< /Size 72 -/Root 70 0 R -/Info 71 0 R +<< /Size 77 +/Root 75 0 R +/Info 76 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -94908 +99151 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.luatex.tpf index 1077972a7..69d7dc5c6 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.luatex.tpf @@ -1,48 +1,48 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ +91 0 obj +<< /Type/OBJR/Obj 32 0 R/Pg 21 0 R >> +endobj 92 0 obj -<< /Type/OBJR/Obj 33 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 37 0 R/Pg 21 0 R >> endobj 93 0 obj -<< /Type/OBJR/Obj 38 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 42 0 R/Pg 21 0 R >> endobj 94 0 obj -<< /Type/OBJR/Obj 43 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 48 0 R/Pg 21 0 R >> endobj 95 0 obj -<< /Type/OBJR/Obj 49 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 53 0 R/Pg 21 0 R >> endobj 96 0 obj -<< /Type/OBJR/Obj 54 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 59 0 R/Pg 21 0 R >> endobj 97 0 obj -<< /Type/OBJR/Obj 60 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 64 0 R/Pg 21 0 R >> endobj 98 0 obj -<< /Type/OBJR/Obj 65 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 69 0 R/Pg 21 0 R >> endobj 99 0 obj -<< /Type/OBJR/Obj 70 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 74 0 R/Pg 21 0 R >> endobj 100 0 obj -<< /Type/OBJR/Obj 75 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 79 0 R/Pg 21 0 R >> endobj 101 0 obj -<< /Type/OBJR/Obj 80 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 84 0 R/Pg 21 0 R >> endobj 102 0 obj -<< /Type/OBJR/Obj 85 0 R/Pg 21 0 R >> -endobj -103 0 obj -<< /Type/OBJR/Obj 90 0 R/Pg 21 0 R >> +<< /Type/OBJR/Obj 89 0 R/Pg 21 0 R >> endobj -105 0 obj -<< /Length 5332 >> +104 0 obj +<< /Length 5335 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Con)31(ten)31(ts)]TJ @@ -339,69 +339,69 @@ EMC endstream endobj 21 0 obj -<< /Type /Page /Contents 105 0 R /Resources 104 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 116 0 R /Annots 117 0 R >> +<< /Type /Page /Contents 104 0 R /Resources 103 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 115 0 R /Annots 116 0 R >> endobj -117 0 obj -[ 33 0 R 38 0 R 43 0 R 49 0 R 54 0 R 60 0 R 65 0 R 70 0 R 75 0 R 80 0 R 85 0 R 90 0 R ] +116 0 obj +[ 32 0 R 37 0 R 42 0 R 48 0 R 53 0 R 59 0 R 64 0 R 69 0 R 74 0 R 79 0 R 84 0 R 89 0 R ] endobj -33 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 17 /Rect [ 105.873 515.699 185.975 524.61 ]/A << /S /GoTo /D (chapter.1) /SD 119 0 R >> >> +32 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 17 /Rect [ 105.873 515.699 185.975 524.61 ]/A << /S /GoTo /D (chapter.1) /SD 118 0 R >> >> endobj -38 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 18 /Rect [ 105.873 481.327 140.9 491.523 ]/A << /S /GoTo /D (part.1) /SD 121 0 R >> >> +37 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 18 /Rect [ 105.873 481.327 140.9 491.523 ]/A << /S /GoTo /D (part.1) /SD 120 0 R >> >> endobj -43 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 19 /Rect [ 105.873 459.41 181.697 468.321 ]/A << /S /GoTo /D (chapter.2) /SD 123 0 R >> >> +42 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 19 /Rect [ 105.873 459.41 181.697 468.321 ]/A << /S /GoTo /D (chapter.2) /SD 122 0 R >> >> endobj -49 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 20 /Rect [ 120.817 445.517 207.049 456.366 ]/A << /S /GoTo /D (section.2.1) /SD 125 0 R >> >> +48 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 20 /Rect [ 120.817 445.517 207.049 456.366 ]/A << /S /GoTo /D (section.2.1) /SD 124 0 R >> >> endobj -54 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 21 /Rect [ 120.817 435.499 180.372 444.41 ]/A << /S /GoTo /D (section.2.2) /SD 127 0 R >> >> +53 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 21 /Rect [ 120.817 435.499 180.372 444.41 ]/A << /S /GoTo /D (section.2.2) /SD 126 0 R >> >> endobj -60 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 22 /Rect [ 143.731 423.544 254.123 432.344 ]/A << /S /GoTo /D (subsection.2.2.1) /SD 129 0 R >> >> +59 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 22 /Rect [ 143.731 423.544 254.123 432.344 ]/A << /S /GoTo /D (subsection.2.2.1) /SD 128 0 R >> >> endobj -65 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 23 /Rect [ 143.731 411.589 204.088 420.5 ]/A << /S /GoTo /D (subsection.2.2.2) /SD 131 0 R >> >> +64 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 23 /Rect [ 143.731 411.589 204.088 420.5 ]/A << /S /GoTo /D (subsection.2.2.2) /SD 130 0 R >> >> endobj -70 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 24 /Rect [ 105.873 389.671 186.039 398.582 ]/A << /S /GoTo /D (chapter.3) /SD 133 0 R >> >> +69 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 24 /Rect [ 105.873 389.671 186.039 398.582 ]/A << /S /GoTo /D (chapter.3) /SD 132 0 R >> >> endobj -75 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 25 /Rect [ 105.873 367.753 187.159 376.664 ]/A << /S /GoTo /D (chapter.4) /SD 135 0 R >> >> +74 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 25 /Rect [ 105.873 367.753 187.159 376.664 ]/A << /S /GoTo /D (chapter.4) /SD 134 0 R >> >> endobj -80 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 26 /Rect [ 105.873 333.382 143.654 343.677 ]/A << /S /GoTo /D (part.2) /SD 137 0 R >> >> +79 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 26 /Rect [ 105.873 333.382 143.654 343.677 ]/A << /S /GoTo /D (part.2) /SD 136 0 R >> >> endobj -85 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 27 /Rect [ 105.873 309.527 192.243 320.375 ]/A << /S /GoTo /D (chapter.5) /SD 139 0 R >> >> +84 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 27 /Rect [ 105.873 309.527 192.243 320.375 ]/A << /S /GoTo /D (chapter.5) /SD 138 0 R >> >> endobj -90 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 28 /Rect [ 105.873 289.547 180.8 298.458 ]/A << /S /GoTo /D (chapter.6) /SD 141 0 R >> >> +89 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 28 /Rect [ 105.873 289.547 180.8 298.458 ]/A << /S /GoTo /D (chapter.6) /SD 140 0 R >> >> endobj -106 0 obj +105 0 obj << /D [ 21 0 R /XYZ 105.869 699.082 null ] >> endobj -107 0 obj +106 0 obj [ 26 0 R /XYZ 105.869 699.082 null ] endobj -108 0 obj +107 0 obj << /D [ 21 0 R /XYZ 106.869 668.127 null ] >> endobj -109 0 obj +108 0 obj [ 22 0 R /XYZ 106.869 668.127 null ] endobj -110 0 obj +109 0 obj << /D [ 21 0 R /XYZ 106.869 608.351 null ] >> endobj -111 0 obj +110 0 obj [ 27 0 R /XYZ 106.869 608.351 null ] endobj -104 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F17 113 0 R /F15 114 0 R /F16 115 0 R >> >> +103 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F17 112 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -144 0 obj +143 0 obj << /Length 182 >> stream /opacity1 gs @@ -419,34 +419,34 @@ EMC EMC endstream endobj -143 0 obj -<< /Type /Page /Contents 144 0 R /Resources 142 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 116 0 R >> +142 0 obj +<< /Type /Page /Contents 143 0 R /Resources 141 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 115 0 R >> endobj -145 0 obj -<< /D [ 143 0 R /XYZ 159.667 699.082 null ] >> +144 0 obj +<< /D [ 142 0 R /XYZ 159.667 699.082 null ] >> endobj -146 0 obj +145 0 obj [ 26 0 R /XYZ 159.667 699.082 null ] endobj -142 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R >> >> +141 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R >> >> endobj -168 0 obj -<< /Type/OBJR/Obj 155 0 R/Pg 167 0 R >> +166 0 obj +<< /Type/OBJR/Obj 153 0 R/Pg 165 0 R >> endobj -169 0 obj -<< /Type/OBJR/Obj 160 0 R/Pg 167 0 R >> +167 0 obj +<< /Type/OBJR/Obj 158 0 R/Pg 165 0 R >> endobj -170 0 obj -<< /Type/OBJR/Obj 165 0 R/Pg 167 0 R >> +168 0 obj +<< /Type/OBJR/Obj 163 0 R/Pg 165 0 R >> endobj -172 0 obj -<< /Length 3244 >> +170 0 obj +<< /Length 3247 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(List)]TJ @@ -596,37 +596,37 @@ EMC EMC endstream endobj -167 0 obj -<< /Type /Page /Contents 172 0 R /Resources 171 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 116 0 R /Annots 177 0 R >> +165 0 obj +<< /Type /Page /Contents 170 0 R /Resources 169 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 115 0 R /Annots 175 0 R >> endobj -177 0 obj -[ 155 0 R 160 0 R 165 0 R ] +175 0 obj +[ 153 0 R 158 0 R 163 0 R ] endobj -155 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 29 /Rect [ 120.817 513.761 239.179 524.61 ]/A << /S /GoTo /D (figure.struct.90) /SD 179 0 R >> >> +153 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 29 /Rect [ 120.817 513.761 239.179 524.61 ]/A << /S /GoTo /D (figure.struct.86) /SD 177 0 R >> >> endobj -160 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 30 /Rect [ 120.817 491.844 245.931 502.692 ]/A << /S /GoTo /D (figure.struct.119) /SD 181 0 R >> >> +158 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 30 /Rect [ 120.817 491.844 245.931 502.692 ]/A << /S /GoTo /D (figure.struct.114) /SD 179 0 R >> >> endobj -165 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 31 /Rect [ 120.817 469.926 215.462 480.774 ]/A << /S /GoTo /D (figure.struct.137) /SD 183 0 R >> >> +163 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 31 /Rect [ 120.817 469.926 215.462 480.774 ]/A << /S /GoTo /D (figure.struct.130) /SD 181 0 R >> >> endobj -173 0 obj -<< /D [ 167 0 R /XYZ 105.869 699.082 null ] >> +171 0 obj +<< /D [ 165 0 R /XYZ 105.869 699.082 null ] >> endobj -174 0 obj -[ 148 0 R /XYZ 105.869 699.082 null ] +172 0 obj +[ 147 0 R /XYZ 105.869 699.082 null ] endobj -175 0 obj -<< /D [ 167 0 R /XYZ 106.869 608.351 null ] >> +173 0 obj +<< /D [ 165 0 R /XYZ 106.869 608.351 null ] >> endobj -176 0 obj -[ 149 0 R /XYZ 106.869 608.351 null ] +174 0 obj +[ 148 0 R /XYZ 106.869 608.351 null ] endobj -171 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +169 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -186 0 obj +184 0 obj << /Length 395 >> stream /opacity1 gs @@ -652,35 +652,39 @@ EMC EMC endstream endobj -185 0 obj -<< /Type /Page /Contents 186 0 R /Resources 184 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 116 0 R >> +183 0 obj +<< /Type /Page /Contents 184 0 R /Resources 182 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 115 0 R >> endobj -187 0 obj -<< /D [ 185 0 R /XYZ 159.667 699.082 null ] >> +185 0 obj +<< /D [ 183 0 R /XYZ 159.667 699.082 null ] >> endobj -188 0 obj -[ 148 0 R /XYZ 159.667 699.082 null ] +186 0 obj +[ 147 0 R /XYZ 159.667 699.082 null ] endobj -184 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +182 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -198 0 obj -<< /Length 886 >> +195 0 obj +<< /Length 943 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(In)31(tro)-31(duction)]TJ @@ -688,7 +692,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Some)]TJ @@ -718,31 +722,31 @@ EMC EMC endstream endobj -197 0 obj -<< /Type /Page /Contents 198 0 R /Resources 196 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 116 0 R >> +194 0 obj +<< /Type /Page /Contents 195 0 R /Resources 193 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 115 0 R >> endobj -199 0 obj -<< /D [ 197 0 R /XYZ 105.869 699.082 null ] >> +196 0 obj +<< /D [ 194 0 R /XYZ 105.869 699.082 null ] >> endobj -200 0 obj -[ 195 0 R /XYZ 105.869 699.082 null ] +197 0 obj +[ 192 0 R /XYZ 105.869 699.082 null ] +endobj +117 0 obj +<< /D [ 194 0 R /XYZ 106.869 608.351 null ] >> endobj 118 0 obj -<< /D [ 197 0 R /XYZ 106.869 608.351 null ] >> +[ 188 0 R /XYZ 106.869 608.351 null ] endobj 119 0 obj -[ 190 0 R /XYZ 106.869 608.351 null ] +<< /D [ 194 0 R /XYZ 106.869 481.826 null ] >> endobj 120 0 obj -<< /D [ 197 0 R /XYZ 106.869 481.826 null ] >> -endobj -121 0 obj -[ 195 0 R /XYZ 106.869 481.826 null ] +[ 192 0 R /XYZ 106.869 481.826 null ] endobj -196 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +193 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -203 0 obj +200 0 obj << /Length 416 >> stream /opacity1 gs @@ -768,38 +772,42 @@ EMC EMC endstream endobj -202 0 obj -<< /Type /Page /Contents 203 0 R /Resources 201 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 116 0 R >> +199 0 obj +<< /Type /Page /Contents 200 0 R /Resources 198 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 115 0 R >> endobj -204 0 obj -<< /D [ 202 0 R /XYZ 159.667 699.082 null ] >> +201 0 obj +<< /D [ 199 0 R /XYZ 159.667 699.082 null ] >> endobj -205 0 obj -[ 195 0 R /XYZ 159.667 699.082 null ] +202 0 obj +[ 192 0 R /XYZ 159.667 699.082 null ] endobj -201 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +198 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -219 0 obj -<< /Type/OBJR/Obj 213 0 R/Pg 218 0 R >> +215 0 obj +<< /Type/OBJR/Obj 209 0 R/Pg 214 0 R >> endobj -221 0 obj -<< /Length 2006 >> +217 0 obj +<< /Length 2063 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(2)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Swiss)]TJ @@ -811,7 +819,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(A)]TJ @@ -835,7 +843,7 @@ BT 1 0 0 1 205.666 481.826 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 208.986 481.826 Tm [(2.1)]TJ @@ -843,7 +851,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 206.316 443.082 Tm [(Figure)]TJ @@ -855,7 +863,7 @@ BT 1 0 0 1 253.251 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 257.679 443.082 Tm [(Image)]TJ @@ -889,38 +897,38 @@ EMC EMC endstream endobj -218 0 obj -<< /Type /Page /Contents 221 0 R /Resources 220 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 116 0 R /Annots 224 0 R >> +214 0 obj +<< /Type /Page /Contents 217 0 R /Resources 216 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 115 0 R /Annots 220 0 R >> endobj -224 0 obj -[ 213 0 R ] +220 0 obj +[ 209 0 R ] endobj -213 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 32 /Rect [ 207.99 478.892 222.713 489.74 ]/A << /S /GoTo /D (figure.struct.90) /SD 179 0 R >> >> +209 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 32 /Rect [ 207.99 478.892 222.713 489.74 ]/A << /S /GoTo /D (figure.struct.86) /SD 177 0 R >> >> endobj -222 0 obj -<< /D [ 218 0 R /XYZ 105.869 699.082 null ] >> +218 0 obj +<< /D [ 214 0 R /XYZ 105.869 699.082 null ] >> endobj -223 0 obj -[ 206 0 R /XYZ 105.869 699.082 null ] +219 0 obj +[ 203 0 R /XYZ 105.869 699.082 null ] endobj -122 0 obj -<< /D [ 218 0 R /XYZ 106.869 608.351 null ] >> +121 0 obj +<< /D [ 214 0 R /XYZ 106.869 608.351 null ] >> endobj -123 0 obj -[ 207 0 R /XYZ 106.869 608.351 null ] +122 0 obj +[ 204 0 R /XYZ 106.869 608.351 null ] endobj -178 0 obj -<< /D [ 218 0 R /XYZ 106.869 459.963 null ] >> +176 0 obj +<< /D [ 214 0 R /XYZ 106.869 459.963 null ] >> endobj -179 0 obj -[ 214 0 R /XYZ 106.869 459.963 null ] +177 0 obj +[ 210 0 R /XYZ 106.869 459.963 null ] endobj -220 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +216 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -232 0 obj -<< /Length 992 >> +228 0 obj +<< /Length 1037 >> stream /opacity1 gs /Artifact BMC @@ -947,16 +955,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 160.667 658.164 Tm [(2.1)]TJ -/F15 9.96264 Tf -1 0 0 1 181.29 658.164 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 181.29 658.164 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 197.43 658.164 Tm [(Living)]TJ /F15 9.96264 Tf @@ -967,7 +979,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 160.667 636.343 Tm [(Switzerland)]TJ @@ -977,26 +989,26 @@ EMC EMC endstream endobj -231 0 obj -<< /Type /Page /Contents 232 0 R /Resources 230 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 116 0 R >> +227 0 obj +<< /Type /Page /Contents 228 0 R /Resources 226 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 115 0 R >> endobj -233 0 obj -<< /D [ 231 0 R /XYZ 159.667 699.082 null ] >> +229 0 obj +<< /D [ 227 0 R /XYZ 159.667 699.082 null ] >> endobj -234 0 obj -[ 225 0 R /XYZ 159.667 699.082 null ] +230 0 obj +[ 221 0 R /XYZ 159.667 699.082 null ] endobj -124 0 obj -<< /D [ 231 0 R /XYZ 160.667 676.097 null ] >> +123 0 obj +<< /D [ 227 0 R /XYZ 160.667 676.097 null ] >> endobj -125 0 obj -[ 227 0 R /XYZ 160.667 676.097 null ] +124 0 obj +[ 222 0 R /XYZ 160.667 676.097 null ] endobj -230 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R /F19 112 0 R >> >> +226 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R /F19 111 0 R >> >> endobj -250 0 obj -<< /Length 1845 >> +246 0 obj +<< /Length 2005 >> stream /opacity1 gs /Artifact BMC @@ -1015,31 +1027,39 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 106.869 658.164 Tm [(2.2)]TJ -/F15 9.96264 Tf -1 0 0 1 127.492 658.164 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 127.492 658.164 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 143.631 658.164 Tm [(Hobbies)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 634.351 Tm [(2.2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 634.351 Tm [<0067>]TJ +1 0 0 1 134.516 634.351 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 634.351 Tm [(Music)]TJ @@ -1051,21 +1071,27 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 615.962 Tm [(Albhorn)]TJ ET EMC -/section-number<> BDC +/Artifact BMC +EMC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 588.073 Tm [(2.2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 588.073 Tm [<0067>]TJ +1 0 0 1 134.516 588.073 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 588.073 Tm [(Bo)-31(oks)]TJ @@ -1073,7 +1099,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 569.684 Tm [(Oh,)]TJ @@ -1099,37 +1125,37 @@ EMC EMC endstream endobj -249 0 obj -<< /Type /Page /Contents 250 0 R /Resources 248 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 116 0 R >> +245 0 obj +<< /Type /Page /Contents 246 0 R /Resources 244 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 115 0 R >> endobj -251 0 obj -<< /D [ 249 0 R /XYZ 105.869 699.082 null ] >> +247 0 obj +<< /D [ 245 0 R /XYZ 105.869 699.082 null ] >> endobj -252 0 obj -[ 243 0 R /XYZ 105.869 699.082 null ] +248 0 obj +[ 239 0 R /XYZ 105.869 699.082 null ] +endobj +125 0 obj +<< /D [ 245 0 R /XYZ 106.869 676.097 null ] >> endobj 126 0 obj -<< /D [ 249 0 R /XYZ 106.869 676.097 null ] >> +[ 232 0 R /XYZ 106.869 676.097 null ] endobj 127 0 obj -[ 237 0 R /XYZ 106.869 676.097 null ] +<< /D [ 245 0 R /XYZ 106.869 648.299 null ] >> endobj 128 0 obj -<< /D [ 249 0 R /XYZ 106.869 648.299 null ] >> +[ 235 0 R /XYZ 106.869 648.299 null ] endobj 129 0 obj -[ 240 0 R /XYZ 106.869 648.299 null ] +<< /D [ 245 0 R /XYZ 106.869 602.021 null ] >> endobj 130 0 obj -<< /D [ 249 0 R /XYZ 106.869 602.021 null ] >> -endobj -131 0 obj -[ 245 0 R /XYZ 106.869 602.021 null ] +[ 240 0 R /XYZ 106.869 602.021 null ] endobj -248 0 obj -<< /ExtGState 1 0 R /Font << /F33 147 0 R /F15 114 0 R /F16 115 0 R /F19 112 0 R >> >> +244 0 obj +<< /ExtGState 1 0 R /Font << /F33 146 0 R /F15 113 0 R /F16 114 0 R /F19 111 0 R >> >> endobj -255 0 obj +251 0 obj << /Length 513 >> stream /opacity1 gs @@ -1159,38 +1185,42 @@ EMC EMC endstream endobj -254 0 obj -<< /Type /Page /Contents 255 0 R /Resources 253 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 116 0 R >> -endobj -256 0 obj -<< /D [ 254 0 R /XYZ 159.667 699.082 null ] >> +250 0 obj +<< /Type /Page /Contents 251 0 R /Resources 249 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 115 0 R >> endobj -257 0 obj -[ 243 0 R /XYZ 159.667 699.082 null ] +252 0 obj +<< /D [ 250 0 R /XYZ 159.667 699.082 null ] >> endobj 253 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +[ 239 0 R /XYZ 159.667 699.082 null ] endobj -271 0 obj -<< /Type/OBJR/Obj 265 0 R/Pg 270 0 R >> +249 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -273 0 obj -<< /Length 1916 >> +266 0 obj +<< /Type/OBJR/Obj 260 0 R/Pg 265 0 R >> +endobj +268 0 obj +<< /Length 1973 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(3)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Italian)]TJ @@ -1202,7 +1232,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Italian)]TJ @@ -1222,7 +1252,7 @@ BT 1 0 0 1 204.393 481.826 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 207.713 481.826 Tm [(3.1)]TJ @@ -1230,7 +1260,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 202.939 443.082 Tm [(Figure)]TJ @@ -1242,7 +1272,7 @@ BT 1 0 0 1 249.875 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 254.302 443.082 Tm [(Image)]TJ @@ -1276,37 +1306,37 @@ EMC EMC endstream endobj -270 0 obj -<< /Type /Page /Contents 273 0 R /Resources 272 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 276 0 R /Annots 277 0 R >> +265 0 obj +<< /Type /Page /Contents 268 0 R /Resources 267 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 271 0 R /Annots 272 0 R >> endobj -277 0 obj -[ 265 0 R ] +272 0 obj +[ 260 0 R ] endobj -265 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 33 /Rect [ 206.717 478.892 221.44 489.74 ]/A << /S /GoTo /D (figure.struct.119) /SD 181 0 R >> >> +260 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 33 /Rect [ 206.717 478.892 221.44 489.74 ]/A << /S /GoTo /D (figure.struct.114) /SD 179 0 R >> >> endobj -274 0 obj -<< /D [ 270 0 R /XYZ 105.869 699.082 null ] >> +269 0 obj +<< /D [ 265 0 R /XYZ 105.869 699.082 null ] >> endobj -275 0 obj -[ 258 0 R /XYZ 105.869 699.082 null ] +270 0 obj +[ 254 0 R /XYZ 105.869 699.082 null ] endobj -132 0 obj -<< /D [ 270 0 R /XYZ 106.869 608.351 null ] >> +131 0 obj +<< /D [ 265 0 R /XYZ 106.869 608.351 null ] >> endobj -133 0 obj -[ 259 0 R /XYZ 106.869 608.351 null ] +132 0 obj +[ 255 0 R /XYZ 106.869 608.351 null ] endobj -180 0 obj -<< /D [ 270 0 R /XYZ 106.869 459.963 null ] >> +178 0 obj +<< /D [ 265 0 R /XYZ 106.869 459.963 null ] >> endobj -181 0 obj -[ 266 0 R /XYZ 106.869 459.963 null ] +179 0 obj +[ 261 0 R /XYZ 106.869 459.963 null ] endobj -272 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +267 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -280 0 obj +275 0 obj << /Length 520 >> stream /opacity1 gs @@ -1336,35 +1366,39 @@ EMC EMC endstream endobj -279 0 obj -<< /Type /Page /Contents 280 0 R /Resources 278 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 276 0 R >> +274 0 obj +<< /Type /Page /Contents 275 0 R /Resources 273 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 271 0 R >> endobj -281 0 obj -<< /D [ 279 0 R /XYZ 159.667 699.082 null ] >> +276 0 obj +<< /D [ 274 0 R /XYZ 159.667 699.082 null ] >> endobj -282 0 obj -[ 258 0 R /XYZ 159.667 699.082 null ] +277 0 obj +[ 254 0 R /XYZ 159.667 699.082 null ] endobj -278 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +273 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -291 0 obj -<< /Length 771 >> +285 0 obj +<< /Length 828 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(4)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Mask)31(ed)]TJ @@ -1376,7 +1410,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Mask)27(ed)]TJ @@ -1398,25 +1432,25 @@ EMC EMC endstream endobj -290 0 obj -<< /Type /Page /Contents 291 0 R /Resources 289 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 276 0 R >> +284 0 obj +<< /Type /Page /Contents 285 0 R /Resources 283 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 271 0 R >> endobj -292 0 obj -<< /D [ 290 0 R /XYZ 105.869 699.082 null ] >> +286 0 obj +<< /D [ 284 0 R /XYZ 105.869 699.082 null ] >> endobj -293 0 obj +287 0 obj [ 22 0 R /XYZ 105.869 699.082 null ] endobj +133 0 obj +<< /D [ 284 0 R /XYZ 106.869 608.351 null ] >> +endobj 134 0 obj -<< /D [ 290 0 R /XYZ 106.869 608.351 null ] >> +[ 279 0 R /XYZ 106.869 608.351 null ] endobj -135 0 obj -[ 284 0 R /XYZ 106.869 608.351 null ] -endobj -289 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +283 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj -296 0 obj +290 0 obj << /Length 515 >> stream /opacity1 gs @@ -1446,38 +1480,42 @@ EMC EMC endstream endobj -295 0 obj -<< /Type /Page /Contents 296 0 R /Resources 294 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 276 0 R >> +289 0 obj +<< /Type /Page /Contents 290 0 R /Resources 288 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 271 0 R >> endobj -297 0 obj -<< /D [ 295 0 R /XYZ 159.667 699.082 null ] >> +291 0 obj +<< /D [ 289 0 R /XYZ 159.667 699.082 null ] >> endobj -298 0 obj +292 0 obj [ 22 0 R /XYZ 159.667 699.082 null ] endobj -294 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +288 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -313 0 obj -<< /Type/OBJR/Obj 307 0 R/Pg 312 0 R >> +306 0 obj +<< /Type/OBJR/Obj 300 0 R/Pg 305 0 R >> endobj -315 0 obj -<< /Length 2026 >> +308 0 obj +<< /Length 2083 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(5)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Hugging)]TJ @@ -1489,7 +1527,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Duc)27(k)]TJ @@ -1517,7 +1555,7 @@ BT 1 0 0 1 256.807 481.826 Tm [<0067>]TJ ET EMC -/Link<> BDC +/Link<> BDC BT /F16 9.96264 Tf 1 0 0 1 260.128 481.826 Tm [(5.1)]TJ @@ -1525,7 +1563,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 218.174 443.082 Tm [(Figure)]TJ @@ -1537,7 +1575,7 @@ BT 1 0 0 1 265.109 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.537 443.082 Tm [(Image)]TJ @@ -1567,43 +1605,43 @@ EMC EMC endstream endobj -312 0 obj -<< /Type /Page /Contents 315 0 R /Resources 314 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 276 0 R /Annots 318 0 R >> +305 0 obj +<< /Type /Page /Contents 308 0 R /Resources 307 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 271 0 R /Annots 311 0 R >> endobj -318 0 obj -[ 307 0 R ] +311 0 obj +[ 300 0 R ] endobj -307 0 obj -<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 34 /Rect [ 259.132 478.892 273.854 489.74 ]/A << /S /GoTo /D (figure.struct.137) /SD 183 0 R >> >> +300 0 obj +<< /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /LTEX_position /isolated/StructParent 34 /Rect [ 259.132 478.892 273.854 489.74 ]/A << /S /GoTo /D (figure.struct.130) /SD 181 0 R >> >> endobj -316 0 obj -<< /D [ 312 0 R /XYZ 105.869 699.082 null ] >> +309 0 obj +<< /D [ 305 0 R /XYZ 105.869 699.082 null ] >> endobj -317 0 obj -[ 300 0 R /XYZ 105.869 699.082 null ] +310 0 obj +[ 294 0 R /XYZ 105.869 699.082 null ] +endobj +135 0 obj +<< /D [ 305 0 R /XYZ 106.869 668.127 null ] >> endobj 136 0 obj -<< /D [ 312 0 R /XYZ 106.869 668.127 null ] >> +[ 293 0 R /XYZ 106.869 668.127 null ] endobj 137 0 obj -[ 299 0 R /XYZ 106.869 668.127 null ] +<< /D [ 305 0 R /XYZ 106.869 608.351 null ] >> endobj 138 0 obj -<< /D [ 312 0 R /XYZ 106.869 608.351 null ] >> +[ 295 0 R /XYZ 106.869 608.351 null ] endobj -139 0 obj -[ 301 0 R /XYZ 106.869 608.351 null ] +180 0 obj +<< /D [ 305 0 R /XYZ 106.869 459.963 null ] >> endobj -182 0 obj -<< /D [ 312 0 R /XYZ 106.869 459.963 null ] >> +181 0 obj +[ 301 0 R /XYZ 106.869 459.963 null ] endobj -183 0 obj -[ 308 0 R /XYZ 106.869 459.963 null ] +307 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj 314 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> -endobj -321 0 obj << /Length 517 >> stream /opacity1 gs @@ -1633,35 +1671,39 @@ EMC EMC endstream endobj -320 0 obj -<< /Type /Page /Contents 321 0 R /Resources 319 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 276 0 R >> +313 0 obj +<< /Type /Page /Contents 314 0 R /Resources 312 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 271 0 R >> endobj -322 0 obj -<< /D [ 320 0 R /XYZ 159.667 699.082 null ] >> +315 0 obj +<< /D [ 313 0 R /XYZ 159.667 699.082 null ] >> endobj -323 0 obj -[ 300 0 R /XYZ 159.667 699.082 null ] +316 0 obj +[ 294 0 R /XYZ 159.667 699.082 null ] endobj -319 0 obj -<< /ExtGState 1 0 R /Font << /F16 115 0 R /F33 147 0 R /F15 114 0 R >> >> +312 0 obj +<< /ExtGState 1 0 R /Font << /F16 114 0 R /F33 146 0 R /F15 113 0 R >> >> endobj -333 0 obj -<< /Length 767 >> +325 0 obj +<< /Length 824 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(6)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Witc)31(h)]TJ @@ -1673,7 +1715,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Witc)27(h)]TJ @@ -1695,23 +1737,23 @@ EMC EMC endstream endobj -332 0 obj -<< /Type /Page /Contents 333 0 R /Resources 331 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 276 0 R >> +324 0 obj +<< /Type /Page /Contents 325 0 R /Resources 323 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 271 0 R >> endobj -334 0 obj -<< /D [ 332 0 R /XYZ 105.869 699.082 null ] >> +326 0 obj +<< /D [ 324 0 R /XYZ 105.869 699.082 null ] >> endobj -335 0 obj +327 0 obj [ 22 0 R /XYZ 105.869 699.082 null ] endobj -140 0 obj -<< /D [ 332 0 R /XYZ 106.869 608.351 null ] >> +139 0 obj +<< /D [ 324 0 R /XYZ 106.869 608.351 null ] >> endobj -141 0 obj -[ 325 0 R /XYZ 106.869 608.351 null ] +140 0 obj +[ 318 0 R /XYZ 106.869 608.351 null ] endobj -331 0 obj -<< /ExtGState 1 0 R /Font << /F19 112 0 R /F15 114 0 R /F16 115 0 R >> >> +323 0 obj +<< /ExtGState 1 0 R /Font << /F19 111 0 R /F15 113 0 R /F16 114 0 R >> >> endobj 1 0 obj << /opacity1 <> >> @@ -1725,137 +1767,136 @@ endobj 4 0 obj << >> endobj -336 0 obj +328 0 obj << /Marked true >> endobj -337 0 obj -<< /S /GoTo /D (chapter.1) /SD 119 0 R >> +329 0 obj +<< /S /GoTo /D (chapter.1) /SD 118 0 R >> endobj -339 0 obj +331 0 obj (\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n) endobj -340 0 obj -<< /S /GoTo /D (part.1) /SD 121 0 R >> +332 0 obj +<< /S /GoTo /D (part.1) /SD 120 0 R >> endobj -342 0 obj +334 0 obj (\376\377\000B\000e\000a\000r\000s) endobj -343 0 obj -<< /S /GoTo /D (chapter.2) /SD 123 0 R >> +335 0 obj +<< /S /GoTo /D (chapter.2) /SD 122 0 R >> endobj -345 0 obj +337 0 obj (\376\377\000S\000w\000i\000s\000s\000\040\000B\000e\000a\000r\000s) endobj -346 0 obj -<< /S /GoTo /D (section.2.1) /SD 125 0 R >> +338 0 obj +<< /S /GoTo /D (section.2.1) /SD 124 0 R >> endobj -348 0 obj +340 0 obj (\376\377\000L\000i\000v\000i\000n\000g\000\040\000g\000r\000o\000u\000n\000d) endobj -349 0 obj -<< /S /GoTo /D (section.2.2) /SD 127 0 R >> +341 0 obj +<< /S /GoTo /D (section.2.2) /SD 126 0 R >> endobj -351 0 obj +343 0 obj (\376\377\000H\000o\000b\000b\000i\000e\000s) endobj -352 0 obj -<< /S /GoTo /D (subsection.2.2.1) /SD 129 0 R >> +344 0 obj +<< /S /GoTo /D (subsection.2.2.1) /SD 128 0 R >> endobj -354 0 obj +346 0 obj (\376\377\000M\000u\000s\000i\000c\000\040\000i\000n\000s\000t\000r\000u\000m\000e\000n\000t) endobj -355 0 obj -<< /S /GoTo /D (subsection.2.2.2) /SD 131 0 R >> +347 0 obj +<< /S /GoTo /D (subsection.2.2.2) /SD 130 0 R >> endobj -357 0 obj +349 0 obj (\376\377\000B\000o\000o\000k\000s) endobj -358 0 obj -<< /S /GoTo /D (chapter.3) /SD 133 0 R >> +350 0 obj +<< /S /GoTo /D (chapter.3) /SD 132 0 R >> endobj -360 0 obj +352 0 obj (\376\377\000I\000t\000a\000l\000i\000a\000n\000\040\000b\000e\000a\000r\000s) endobj -361 0 obj -<< /S /GoTo /D (chapter.4) /SD 135 0 R >> +353 0 obj +<< /S /GoTo /D (chapter.4) /SD 134 0 R >> endobj -363 0 obj +355 0 obj (\376\377\000M\000a\000s\000k\000e\000d\000\040\000b\000e\000a\000r) endobj -364 0 obj -<< /S /GoTo /D (part.2) /SD 137 0 R >> +356 0 obj +<< /S /GoTo /D (part.2) /SD 136 0 R >> endobj -366 0 obj +358 0 obj (\376\377\000D\000u\000c\000k\000s) endobj -367 0 obj -<< /S /GoTo /D (chapter.5) /SD 139 0 R >> +359 0 obj +<< /S /GoTo /D (chapter.5) /SD 138 0 R >> endobj -369 0 obj +361 0 obj (\376\377\000H\000u\000g\000g\000i\000n\000g\000\040\000d\000u\000c\000k) endobj -370 0 obj -<< /S /GoTo /D (chapter.6) /SD 141 0 R >> +362 0 obj +<< /S /GoTo /D (chapter.6) /SD 140 0 R >> endobj -372 0 obj +364 0 obj (\376\377\000W\000i\000t\000c\000h\000\040\000d\000u\000c\000k) endobj 6 0 obj -<< /Nums [0 [ 28 0 R 32 0 R 34 0 R 32 0 R 31 0 R 37 0 R 36 0 R 42 0 R 44 0 R 42 0 R 41 0 R 48 0 R 50 0 R 48 0 R 47 0 R 53 0 R 55 0 R 53 0 R 52 0 R 59 0 R 61 0 R 59 0 R 58 0 R 64 0 R 66 0 R 64 0 R 63 0 R 69 0 R 71 0 R 69 0 R 68 0 R 74 0 R 76 0 R 74 0 R 73 0 R 79 0 R 78 0 R 84 0 R 86 0 R 84 0 R 83 0 R 89 0 R 91 0 R 89 0 R 88 0 R] +<< /Nums [0 [ 27 0 R 31 0 R 33 0 R 31 0 R 30 0 R 36 0 R 35 0 R 41 0 R 43 0 R 41 0 R 40 0 R 47 0 R 49 0 R 47 0 R 46 0 R 52 0 R 54 0 R 52 0 R 51 0 R 58 0 R 60 0 R 58 0 R 57 0 R 63 0 R 65 0 R 63 0 R 62 0 R 68 0 R 70 0 R 68 0 R 67 0 R 73 0 R 75 0 R 73 0 R 72 0 R 78 0 R 77 0 R 83 0 R 85 0 R 83 0 R 82 0 R 88 0 R 90 0 R 88 0 R 87 0 R] 1 [] -2 [ 150 0 R 154 0 R 156 0 R 154 0 R 153 0 R 159 0 R 161 0 R 159 0 R 158 0 R 164 0 R 166 0 R 164 0 R 163 0 R] +2 [ 148 0 R 152 0 R 154 0 R 152 0 R 151 0 R 157 0 R 159 0 R 157 0 R 156 0 R 162 0 R 164 0 R 162 0 R 161 0 R] 3 [] -4 [ 191 0 R 192 0 R 194 0 R] +4 [ 188 0 R 189 0 R 188 0 R 191 0 R] 5 [] -6 [ 208 0 R 209 0 R 211 0 R 212 0 R 216 0 R 217 0 R] -7 [ 227 0 R 226 0 R 229 0 R] -8 [ 237 0 R 236 0 R 240 0 R 239 0 R 242 0 R 245 0 R 244 0 R 247 0 R] +6 [ 204 0 R 205 0 R 204 0 R 207 0 R 208 0 R 212 0 R 213 0 R] +7 [ 223 0 R 222 0 R 222 0 R 225 0 R] +8 [ 233 0 R 232 0 R 232 0 R 236 0 R 235 0 R 235 0 R 238 0 R 241 0 R 240 0 R 240 0 R 243 0 R] 9 [] -10 [ 260 0 R 261 0 R 263 0 R 264 0 R 268 0 R 269 0 R] +10 [ 255 0 R 256 0 R 255 0 R 258 0 R 259 0 R 263 0 R 264 0 R] 11 [] -12 [ 285 0 R 286 0 R 288 0 R] +12 [ 279 0 R 280 0 R 279 0 R 282 0 R] 13 [] -14 [ 302 0 R 303 0 R 305 0 R 306 0 R 310 0 R 311 0 R] +14 [ 295 0 R 296 0 R 295 0 R 298 0 R 299 0 R 303 0 R 304 0 R] 15 [] -16 [ 326 0 R 327 0 R 329 0 R] -17 32 0 R -18 37 0 R -19 42 0 R -20 48 0 R -21 53 0 R -22 59 0 R -23 64 0 R -24 69 0 R -25 74 0 R -26 79 0 R -27 84 0 R -28 89 0 R -29 154 0 R -30 159 0 R -31 164 0 R -32 212 0 R -33 264 0 R -34 306 0 R +16 [ 318 0 R 319 0 R 318 0 R 321 0 R] +17 31 0 R +18 36 0 R +19 41 0 R +20 47 0 R +21 52 0 R +22 58 0 R +23 63 0 R +24 68 0 R +25 73 0 R +26 78 0 R +27 83 0 R +28 88 0 R +29 152 0 R +30 157 0 R +31 162 0 R +32 208 0 R +33 259 0 R +34 299 0 R ] >> endobj -373 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 32 0 R (ID.0013) 34 0 R (ID.0014) 35 0 R (ID.0015) 36 0 R (ID.0016) 37 0 R (ID.0017) 39 0 R (ID.0018) 40 0 R (ID.0019) 41 0 R (ID.0020) 42 0 R (ID.0021) 44 0 R (ID.0022) 45 0 R (ID.0023) 46 0 R (ID.0024) 47 0 R (ID.0025) 48 0 R (ID.0026) 50 0 R (ID.0027) 51 0 R (ID.0028) 52 0 R (ID.0029) 53 0 R (ID.0030) 55 0 R (ID.0031) 56 0 R (ID.0032) 57 0 R (ID.0033) 58 0 R (ID.0034) 59 0 R (ID.0035) 61 0 R (ID.0036) 62 0 R (ID.0037) 63 0 R (ID.0038) 64 0 R (ID.0039) 66 0 R (ID.0040) 67 0 R (ID.0041) 68 0 R (ID.0042) 69 0 R (ID.0043) 71 0 R (ID.0044) 72 0 R (ID.0045) 73 0 R (ID.0046) 74 0 R (ID.0047) 76 0 R (ID.0048) 77 0 R (ID.0049) 78 0 R (ID.0050) 79 0 R (ID.0051) 81 0 R ] >> +365 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 33 0 R (ID.0013) 34 0 R (ID.0014) 35 0 R (ID.0015) 36 0 R (ID.0016) 38 0 R (ID.0017) 39 0 R (ID.0018) 40 0 R (ID.0019) 41 0 R (ID.0020) 43 0 R (ID.0021) 44 0 R (ID.0022) 45 0 R (ID.0023) 46 0 R (ID.0024) 47 0 R (ID.0025) 49 0 R (ID.0026) 50 0 R (ID.0027) 51 0 R (ID.0028) 52 0 R (ID.0029) 54 0 R (ID.0030) 55 0 R (ID.0031) 56 0 R (ID.0032) 57 0 R (ID.0033) 58 0 R (ID.0034) 60 0 R (ID.0035) 61 0 R (ID.0036) 62 0 R (ID.0037) 63 0 R (ID.0038) 65 0 R (ID.0039) 66 0 R (ID.0040) 67 0 R (ID.0041) 68 0 R (ID.0042) 70 0 R (ID.0043) 71 0 R (ID.0044) 72 0 R (ID.0045) 73 0 R (ID.0046) 75 0 R (ID.0047) 76 0 R (ID.0048) 77 0 R (ID.0049) 78 0 R (ID.0050) 80 0 R (ID.0051) 81 0 R ] >> endobj -374 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 82 0 R (ID.0053) 83 0 R (ID.0054) 84 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 89 0 R (ID.0059) 91 0 R (ID.0060) 148 0 R (ID.0061) 149 0 R (ID.0062) 150 0 R (ID.0063) 151 0 R (ID.0064) 152 0 R (ID.0065) 153 0 R (ID.0066) 154 0 R (ID.0067) 156 0 R (ID.0068) 157 0 R (ID.0069) 158 0 R (ID.0070) 159 0 R (ID.0071) 161 0 R (ID.0072) 162 0 R (ID.0073) 163 0 R (ID.0074) 164 0 R (ID.0075) 166 0 R (ID.0076) 189 0 R (ID.0077) 190 0 R (ID.0078) 191 0 R (ID.0079) 192 0 R (ID.0080) 193 0 R (ID.0081) 194 0 R (ID.0082) 195 0 R (ID.0083) 206 0 R (ID.0084) 207 0 R (ID.0085) 208 0 R (ID.0086) 209 0 R (ID.0087) 210 0 R (ID.0088) 211 0 R (ID.0089) 212 0 R (ID.0090) 214 0 R (ID.0091) 215 0 R (ID.0092) 216 0 R (ID.0093) 217 0 R (ID.0094) 225 0 R (ID.0095) 226 0 R (ID.0096) 227 0 R (ID.0097) 228 0 R (ID.0098) 229 0 R (ID.0099) 235 0 R (ID.0100) 236 0 R (ID.0101) 237 0 R ] >> +366 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 82 0 R (ID.0053) 83 0 R (ID.0054) 85 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 90 0 R (ID.0059) 147 0 R (ID.0060) 148 0 R (ID.0061) 149 0 R (ID.0062) 150 0 R (ID.0063) 151 0 R (ID.0064) 152 0 R (ID.0065) 154 0 R (ID.0066) 155 0 R (ID.0067) 156 0 R (ID.0068) 157 0 R (ID.0069) 159 0 R (ID.0070) 160 0 R (ID.0071) 161 0 R (ID.0072) 162 0 R (ID.0073) 164 0 R (ID.0074) 187 0 R (ID.0075) 188 0 R (ID.0076) 189 0 R (ID.0077) 190 0 R (ID.0078) 191 0 R (ID.0079) 192 0 R (ID.0080) 203 0 R (ID.0081) 204 0 R (ID.0082) 205 0 R (ID.0083) 206 0 R (ID.0084) 207 0 R (ID.0085) 208 0 R (ID.0086) 210 0 R (ID.0087) 211 0 R (ID.0088) 212 0 R (ID.0089) 213 0 R (ID.0090) 221 0 R (ID.0091) 222 0 R (ID.0092) 223 0 R (ID.0093) 224 0 R (ID.0094) 225 0 R (ID.0095) 231 0 R (ID.0096) 232 0 R (ID.0097) 233 0 R (ID.0098) 234 0 R (ID.0099) 235 0 R (ID.0100) 236 0 R (ID.0101) 237 0 R ] >> endobj -375 0 obj -<< /Limits [(ID.0102) (ID.0146)]/Names [(ID.0102) 238 0 R (ID.0103) 239 0 R (ID.0104) 240 0 R (ID.0105) 241 0 R (ID.0106) 242 0 R (ID.0107) 243 0 R (ID.0108) 244 0 R (ID.0109) 245 0 R (ID.0110) 246 0 R (ID.0111) 247 0 R (ID.0112) 258 0 R (ID.0113) 259 0 R (ID.0114) 260 0 R (ID.0115) 261 0 R (ID.0116) 262 0 R (ID.0117) 263 0 R (ID.0118) 264 0 R (ID.0119) 266 0 R (ID.0120) 267 0 R (ID.0121) 268 0 R (ID.0122) 269 0 R (ID.0123) 283 0 R (ID.0124) 284 0 R (ID.0125) 285 0 R (ID.0126) 286 0 R (ID.0127) 287 0 R (ID.0128) 288 0 R (ID.0129) 299 0 R (ID.0130) 300 0 R (ID.0131) 301 0 R (ID.0132) 302 0 R (ID.0133) 303 0 R (ID.0134) 304 0 R (ID.0135) 305 0 R (ID.0136) 306 0 R (ID.0137) 308 0 R (ID.0138) 309 0 R (ID.0139) 310 0 R (ID.0140) 311 0 R (ID.0141) 324 0 R (ID.0142) 325 0 R (ID.0143) 326 0 R (ID.0144) 327 0 R (ID.0145) 328 0 R (ID.0146) 329 0 R ] >> +367 0 obj +<< /Limits [(ID.0102) (ID.0138)]/Names [(ID.0102) 238 0 R (ID.0103) 239 0 R (ID.0104) 240 0 R (ID.0105) 241 0 R (ID.0106) 242 0 R (ID.0107) 243 0 R (ID.0108) 254 0 R (ID.0109) 255 0 R (ID.0110) 256 0 R (ID.0111) 257 0 R (ID.0112) 258 0 R (ID.0113) 259 0 R (ID.0114) 261 0 R (ID.0115) 262 0 R (ID.0116) 263 0 R (ID.0117) 264 0 R (ID.0118) 278 0 R (ID.0119) 279 0 R (ID.0120) 280 0 R (ID.0121) 281 0 R (ID.0122) 282 0 R (ID.0123) 293 0 R (ID.0124) 294 0 R (ID.0125) 295 0 R (ID.0126) 296 0 R (ID.0127) 297 0 R (ID.0128) 298 0 R (ID.0129) 299 0 R (ID.0130) 301 0 R (ID.0131) 302 0 R (ID.0132) 303 0 R (ID.0133) 304 0 R (ID.0134) 317 0 R (ID.0135) 318 0 R (ID.0136) 319 0 R (ID.0137) 320 0 R (ID.0138) 321 0 R ] >> endobj -376 0 obj -<< /Kids [373 0 R 374 0 R 375 0 R] >> +368 0 obj +<< /Kids [365 0 R 366 0 R 367 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -377 0 obj -<< /raggedright <> -/justify <> +369 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1871,7 +1912,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1889,444 +1930,420 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 22 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [26 0 R 148 0 R 189 0 R 195 0 R 299 0 R 24 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [26 0 R 147 0 R 187 0 R 192 0 R 293 0 R 24 0 R] /ID (ID.0002) >> endobj 23 0 obj << /Type /StructElem /S /Artifact /NS 11 0 R /P 22 0 R /ID (ID.0003) >> endobj 24 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 22 0 R /K [214 0 R 266 0 R 308 0 R] /ID (ID.0004) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 22 0 R /K [210 0 R 261 0 R 301 0 R] /ID (ID.0004) >> endobj 25 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 22 0 R /ID (ID.0005) >> endobj 26 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [27 0 R 29 0 R] /ID (ID.0006) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [27 0 R 28 0 R] /ID (ID.0006) >> endobj 27 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 26 0 R /K 28 0 R /ID (ID.0007) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 26 0 R /K <> /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 27 0 R /K <> /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 26 0 R /K [29 0 R 34 0 R 38 0 R 76 0 R 80 0 R] /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 26 0 R /K [30 0 R 35 0 R 39 0 R 77 0 R 81 0 R] /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 188 0 R ] /K 30 0 R /ID (ID.0009) >> endobj 30 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 29 0 R /Ref [ 190 0 R ] /K 31 0 R /ID (ID.0010) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R <> ] /ID (ID.0010) >> endobj 31 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 30 0 R /K [ 32 0 R <> ] /ID (ID.0011) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 30 0 R /K [<> 33 0 R <> 91 0 R] /ID (ID.0011) >> endobj -32 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 31 0 R /K [<> 34 0 R <> 92 0 R] /ID (ID.0012) >> +33 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.0012) >> endobj 34 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 32 0 R /K <> /ID (ID.0013) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 192 0 R ] /K 35 0 R /ID (ID.0013) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 29 0 R /Ref [ 195 0 R ] /K 36 0 R /ID (ID.0014) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [ 36 0 R <> ] /ID (ID.0014) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [ 37 0 R <> ] /ID (ID.0015) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 35 0 R /K [<> 92 0 R] /ID (ID.0015) >> endobj -37 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 36 0 R /K [<> 93 0 R] /ID (ID.0016) >> +38 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [39 0 R 44 0 R 66 0 R 71 0 R] /ID (ID.0016) >> endobj 39 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 29 0 R /K [40 0 R 45 0 R 67 0 R 72 0 R] /ID (ID.0017) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 204 0 R ] /K 40 0 R /ID (ID.0017) >> endobj 40 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 207 0 R ] /K 41 0 R /ID (ID.0018) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [ 41 0 R <> ] /ID (ID.0018) >> endobj 41 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 40 0 R /K [ 42 0 R <> ] /ID (ID.0019) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 40 0 R /K [<> 43 0 R <> 93 0 R] /ID (ID.0019) >> endobj -42 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 41 0 R /K [<> 44 0 R <> 94 0 R] /ID (ID.0020) >> +43 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 41 0 R /K <> /ID (ID.0020) >> endobj 44 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0021) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [45 0 R 50 0 R 55 0 R] /ID (ID.0021) >> endobj 45 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 39 0 R /K [46 0 R 51 0 R 56 0 R] /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 222 0 R ] /K 46 0 R /ID (ID.0022) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 227 0 R ] /K 47 0 R /ID (ID.0023) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [ 47 0 R <> ] /ID (ID.0023) >> endobj 47 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [ 48 0 R <> ] /ID (ID.0024) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 46 0 R /K [<> 49 0 R <> 94 0 R] /ID (ID.0024) >> endobj -48 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 47 0 R /K [<> 50 0 R <> 95 0 R] /ID (ID.0025) >> +49 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0025) >> endobj 50 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 48 0 R /K <> /ID (ID.0026) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 232 0 R ] /K 51 0 R /ID (ID.0026) >> endobj 51 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 237 0 R ] /K 52 0 R /ID (ID.0027) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 50 0 R /K [ 52 0 R <> ] /ID (ID.0027) >> endobj 52 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [ 53 0 R <> ] /ID (ID.0028) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 51 0 R /K [<> 54 0 R <> 95 0 R] /ID (ID.0028) >> endobj -53 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 52 0 R /K [<> 55 0 R <> 96 0 R] /ID (ID.0029) >> +54 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0029) >> endobj 55 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 53 0 R /K <> /ID (ID.0030) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 44 0 R /K [56 0 R 61 0 R] /ID (ID.0030) >> endobj 56 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 45 0 R /K [57 0 R 62 0 R] /ID (ID.0031) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 235 0 R ] /K 57 0 R /ID (ID.0031) >> endobj 57 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 56 0 R /Ref [ 240 0 R ] /K 58 0 R /ID (ID.0032) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 56 0 R /K [ 58 0 R <> ] /ID (ID.0032) >> endobj 58 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 57 0 R /K [ 59 0 R <> ] /ID (ID.0033) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 57 0 R /K [<> 60 0 R <> 96 0 R] /ID (ID.0033) >> endobj -59 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 58 0 R /K [<> 61 0 R <> 97 0 R] /ID (ID.0034) >> +60 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 58 0 R /K <> /ID (ID.0034) >> endobj 61 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 59 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 55 0 R /Ref [ 240 0 R ] /K 62 0 R /ID (ID.0035) >> endobj 62 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 56 0 R /Ref [ 245 0 R ] /K 63 0 R /ID (ID.0036) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [ 63 0 R <> ] /ID (ID.0036) >> endobj 63 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 62 0 R /K [ 64 0 R <> ] /ID (ID.0037) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 62 0 R /K [<> 65 0 R <> 97 0 R] /ID (ID.0037) >> endobj -64 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 63 0 R /K [<> 66 0 R <> 98 0 R] /ID (ID.0038) >> +65 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 63 0 R /K <> /ID (ID.0038) >> endobj 66 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 64 0 R /K <> /ID (ID.0039) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 255 0 R ] /K 67 0 R /ID (ID.0039) >> endobj 67 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 259 0 R ] /K 68 0 R /ID (ID.0040) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 66 0 R /K [ 68 0 R <> ] /ID (ID.0040) >> endobj 68 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 67 0 R /K [ 69 0 R <> ] /ID (ID.0041) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 67 0 R /K [<> 70 0 R <> 98 0 R] /ID (ID.0041) >> endobj -69 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 68 0 R /K [<> 71 0 R <> 99 0 R] /ID (ID.0042) >> +70 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 68 0 R /K <> /ID (ID.0042) >> endobj 71 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 69 0 R /K <> /ID (ID.0043) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 279 0 R ] /K 72 0 R /ID (ID.0043) >> endobj 72 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 284 0 R ] /K 73 0 R /ID (ID.0044) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 71 0 R /K [ 73 0 R <> ] /ID (ID.0044) >> endobj 73 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 72 0 R /K [ 74 0 R <> ] /ID (ID.0045) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 72 0 R /K [<> 75 0 R <> 99 0 R] /ID (ID.0045) >> endobj -74 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 73 0 R /K [<> 76 0 R <> 100 0 R] /ID (ID.0046) >> +75 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 73 0 R /K <> /ID (ID.0046) >> endobj 76 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 74 0 R /K <> /ID (ID.0047) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 293 0 R ] /K 77 0 R /ID (ID.0047) >> endobj 77 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 29 0 R /Ref [ 299 0 R ] /K 78 0 R /ID (ID.0048) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 76 0 R /K [ 78 0 R <> ] /ID (ID.0048) >> endobj 78 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 77 0 R /K [ 79 0 R <> ] /ID (ID.0049) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 77 0 R /K [<> 100 0 R] /ID (ID.0049) >> endobj -79 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 78 0 R /K [<> 101 0 R] /ID (ID.0050) >> +80 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [81 0 R 86 0 R] /ID (ID.0050) >> endobj 81 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 29 0 R /K [82 0 R 87 0 R] /ID (ID.0051) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 295 0 R ] /K 82 0 R /ID (ID.0051) >> endobj 82 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 301 0 R ] /K 83 0 R /ID (ID.0052) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 81 0 R /K [ 83 0 R <> ] /ID (ID.0052) >> endobj 83 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 82 0 R /K [ 84 0 R <> ] /ID (ID.0053) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 82 0 R /K [<> 85 0 R <> 101 0 R] /ID (ID.0053) >> endobj -84 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 83 0 R /K [<> 86 0 R <> 102 0 R] /ID (ID.0054) >> +85 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 83 0 R /K <> /ID (ID.0054) >> endobj 86 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 84 0 R /K <> /ID (ID.0055) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 318 0 R ] /K 87 0 R /ID (ID.0055) >> endobj 87 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 325 0 R ] /K 88 0 R /ID (ID.0056) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 86 0 R /K [ 88 0 R <> ] /ID (ID.0056) >> endobj 88 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 87 0 R /K [ 89 0 R <> ] /ID (ID.0057) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 87 0 R /K [<> 90 0 R <> 102 0 R] /ID (ID.0057) >> endobj -89 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 88 0 R /K [<> 91 0 R <> 103 0 R] /ID (ID.0058) >> +90 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 88 0 R /K <> /ID (ID.0058) >> endobj -91 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 89 0 R /K <> /ID (ID.0059) >> +147 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [148 0 R 149 0 R] /ID (ID.0059) >> endobj 148 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [149 0 R 151 0 R] /ID (ID.0060) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 147 0 R /K <> /ID (ID.0060) >> endobj 149 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 148 0 R /K 150 0 R /ID (ID.0061) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 147 0 R /K [150 0 R 155 0 R 160 0 R] /ID (ID.0061) >> endobj 150 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 149 0 R /K <> /ID (ID.0062) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 210 0 R ] /K 151 0 R /ID (ID.0062) >> endobj 151 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 148 0 R /K [152 0 R 157 0 R 162 0 R] /ID (ID.0063) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 150 0 R /K [ 152 0 R <> ] /ID (ID.0063) >> endobj 152 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 214 0 R ] /K 153 0 R /ID (ID.0064) >> -endobj -153 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 152 0 R /K [ 154 0 R <> ] /ID (ID.0065) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 151 0 R /K [<> 154 0 R <> 166 0 R] /ID (ID.0064) >> endobj 154 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 153 0 R /K [<> 156 0 R <> 168 0 R] /ID (ID.0066) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 152 0 R /K <> /ID (ID.0065) >> +endobj +155 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 261 0 R ] /K 156 0 R /ID (ID.0066) >> endobj 156 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 154 0 R /K <> /ID (ID.0067) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 155 0 R /K [ 157 0 R <> ] /ID (ID.0067) >> endobj 157 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 266 0 R ] /K 158 0 R /ID (ID.0068) >> -endobj -158 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 157 0 R /K [ 159 0 R <> ] /ID (ID.0069) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 156 0 R /K [<> 159 0 R <> 167 0 R] /ID (ID.0068) >> endobj 159 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 158 0 R /K [<> 161 0 R <> 169 0 R] /ID (ID.0070) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 157 0 R /K <> /ID (ID.0069) >> +endobj +160 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 301 0 R ] /K 161 0 R /ID (ID.0070) >> endobj 161 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 159 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 160 0 R /K [ 162 0 R <> ] /ID (ID.0071) >> endobj 162 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 308 0 R ] /K 163 0 R /ID (ID.0072) >> -endobj -163 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 162 0 R /K [ 164 0 R <> ] /ID (ID.0073) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 161 0 R /K [<> 164 0 R <> 168 0 R] /ID (ID.0072) >> endobj 164 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 163 0 R /K [<> 166 0 R <> 170 0 R] /ID (ID.0074) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 162 0 R /K <> /ID (ID.0073) >> endobj -166 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 164 0 R /K <> /ID (ID.0075) >> +187 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [188 0 R 190 0 R] /ID (ID.0074) >> +endobj +188 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 187 0 R /K [<> 189 0 R <> ] /ID (ID.0075) >> endobj 189 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [190 0 R 193 0 R] /ID (ID.0076) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 188 0 R /K <> /ID (ID.0076) >> endobj 190 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 189 0 R /K [191 0 R 192 0 R] /ID (ID.0077) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 187 0 R /K 191 0 R /ID (ID.0077) >> endobj 191 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 190 0 R /K <> /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 190 0 R /K <> /ID (ID.0078) >> endobj 192 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 190 0 R /K <> /ID (ID.0079) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [203 0 R 254 0 R 278 0 R] /ID (ID.0079) >> endobj -193 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 189 0 R /K 194 0 R /ID (ID.0080) >> +203 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 192 0 R /K [204 0 R 206 0 R 221 0 R 231 0 R] /ID (ID.0080) >> endobj -194 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 193 0 R /K <> /ID (ID.0081) >> +204 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 203 0 R /K [<> 205 0 R <> ] /ID (ID.0081) >> endobj -195 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [206 0 R 258 0 R 283 0 R] /ID (ID.0082) >> +205 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 204 0 R /K <> /ID (ID.0082) >> endobj 206 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 195 0 R /K [207 0 R 210 0 R 225 0 R 235 0 R] /ID (ID.0083) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 203 0 R /K 207 0 R /ID (ID.0083) >> endobj 207 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 206 0 R /K [208 0 R 209 0 R] /ID (ID.0084) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 206 0 R /K [<> 208 0 R ] /ID (ID.0084) >> endobj 208 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 207 0 R /K <> /ID (ID.0085) >> -endobj -209 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 207 0 R /K <> /ID (ID.0086) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 207 0 R /K [<> 215 0 R] /ID (ID.0085) >> endobj 210 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 206 0 R /K 211 0 R /ID (ID.0087) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 211 0 R /ID (ID.0086) >> endobj 211 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 210 0 R /K [<> 212 0 R ] /ID (ID.0088) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 210 0 R /K [212 0 R 213 0 R] /ID (ID.0087) >> endobj 212 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 211 0 R /K [<> 219 0 R] /ID (ID.0089) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 211 0 R /K <> /ID (ID.0088) >> endobj -214 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 215 0 R /ID (ID.0090) >> +213 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 211 0 R /K <> /ID (ID.0089) >> endobj -215 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 214 0 R /K [216 0 R 217 0 R] /ID (ID.0091) >> +221 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 203 0 R /K [222 0 R 224 0 R] /ID (ID.0090) >> endobj -216 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 215 0 R /K <> /ID (ID.0092) >> +222 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 221 0 R /K [223 0 R <> <> ] /ID (ID.0091) >> endobj -217 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 215 0 R /K <> /ID (ID.0093) >> +223 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 222 0 R /K <> /ID (ID.0092) >> +endobj +224 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 221 0 R /K 225 0 R /ID (ID.0093) >> endobj 225 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 206 0 R /K [226 0 R 228 0 R] /ID (ID.0094) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 224 0 R /K <> /ID (ID.0094) >> endobj -226 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 225 0 R /K [227 0 R <> ] /ID (ID.0095) >> +231 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 203 0 R /K [232 0 R 234 0 R 239 0 R] /ID (ID.0095) >> endobj -227 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 226 0 R /K <> /ID (ID.0096) >> +232 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 231 0 R /K [233 0 R <> <> ] /ID (ID.0096) >> endobj -228 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 225 0 R /K 229 0 R /ID (ID.0097) >> +233 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 232 0 R /K <> /ID (ID.0097) >> endobj -229 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K <> /ID (ID.0098) >> +234 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [235 0 R 237 0 R] /ID (ID.0098) >> endobj 235 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 206 0 R /K [236 0 R 238 0 R 243 0 R] /ID (ID.0099) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 234 0 R /K [236 0 R <> <> ] /ID (ID.0099) >> endobj 236 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 235 0 R /K [237 0 R <> ] /ID (ID.0100) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 235 0 R /K <> /ID (ID.0100) >> endobj 237 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 236 0 R /K <> /ID (ID.0101) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 234 0 R /K 238 0 R /ID (ID.0101) >> endobj 238 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [239 0 R 241 0 R] /ID (ID.0102) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 237 0 R /K <> /ID (ID.0102) >> endobj 239 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 238 0 R /K [240 0 R <> ] /ID (ID.0103) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [240 0 R 242 0 R] /ID (ID.0103) >> endobj 240 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 239 0 R /K <> /ID (ID.0104) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 239 0 R /K [241 0 R <> <> ] /ID (ID.0104) >> endobj 241 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 238 0 R /K 242 0 R /ID (ID.0105) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0105) >> endobj 242 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 241 0 R /K <> /ID (ID.0106) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 243 0 R /ID (ID.0106) >> endobj 243 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [244 0 R 246 0 R] /ID (ID.0107) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 242 0 R /K <> /ID (ID.0107) >> endobj -244 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 243 0 R /K [245 0 R <> ] /ID (ID.0108) >> +254 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 192 0 R /K [255 0 R 257 0 R] /ID (ID.0108) >> endobj -245 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 244 0 R /K <> /ID (ID.0109) >> +255 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 254 0 R /K [<> 256 0 R <> ] /ID (ID.0109) >> endobj -246 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 243 0 R /K 247 0 R /ID (ID.0110) >> +256 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 255 0 R /K <> /ID (ID.0110) >> endobj -247 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 246 0 R /K <> /ID (ID.0111) >> +257 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 254 0 R /K 258 0 R /ID (ID.0111) >> endobj 258 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 195 0 R /K [259 0 R 262 0 R] /ID (ID.0112) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 257 0 R /K [<> 259 0 R ] /ID (ID.0112) >> endobj 259 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 258 0 R /K [260 0 R 261 0 R] /ID (ID.0113) >> -endobj -260 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 259 0 R /K <> /ID (ID.0114) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 258 0 R /K [<> 266 0 R] /ID (ID.0113) >> endobj 261 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 259 0 R /K <> /ID (ID.0115) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 262 0 R /ID (ID.0114) >> endobj 262 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 258 0 R /K 263 0 R /ID (ID.0116) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 261 0 R /K [263 0 R 264 0 R] /ID (ID.0115) >> endobj 263 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 262 0 R /K [<> 264 0 R ] /ID (ID.0117) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 262 0 R /K <> /ID (ID.0116) >> endobj 264 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 263 0 R /K [<> 271 0 R] /ID (ID.0118) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 262 0 R /K <> /ID (ID.0117) >> endobj -266 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 267 0 R /ID (ID.0119) >> +278 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 192 0 R /K [279 0 R 281 0 R] /ID (ID.0118) >> endobj -267 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 266 0 R /K [268 0 R 269 0 R] /ID (ID.0120) >> +279 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 278 0 R /K [<> 280 0 R <> ] /ID (ID.0119) >> endobj -268 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 267 0 R /K <> /ID (ID.0121) >> +280 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 279 0 R /K <> /ID (ID.0120) >> endobj -269 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 267 0 R /K <> /ID (ID.0122) >> +281 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 278 0 R /K 282 0 R /ID (ID.0121) >> endobj -283 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 195 0 R /K [284 0 R 287 0 R] /ID (ID.0123) >> +282 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 281 0 R /K <> /ID (ID.0122) >> endobj -284 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 283 0 R /K [285 0 R 286 0 R] /ID (ID.0124) >> +293 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [294 0 R 317 0 R] /ID (ID.0123) >> endobj -285 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 284 0 R /K <> /ID (ID.0125) >> +294 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 293 0 R /K [295 0 R 297 0 R] /ID (ID.0124) >> endobj -286 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 284 0 R /K <> /ID (ID.0126) >> +295 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 294 0 R /K [<> 296 0 R <> ] /ID (ID.0125) >> endobj -287 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 283 0 R /K 288 0 R /ID (ID.0127) >> +296 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 295 0 R /K <> /ID (ID.0126) >> endobj -288 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 287 0 R /K <> /ID (ID.0128) >> +297 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 294 0 R /K 298 0 R /ID (ID.0127) >> endobj -299 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [300 0 R 324 0 R] /ID (ID.0129) >> +298 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 297 0 R /K [<> 299 0 R ] /ID (ID.0128) >> endobj -300 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 299 0 R /K [301 0 R 304 0 R] /ID (ID.0130) >> +299 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 298 0 R /K [<> 306 0 R] /ID (ID.0129) >> endobj 301 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 300 0 R /K [302 0 R 303 0 R] /ID (ID.0131) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 302 0 R /ID (ID.0130) >> endobj 302 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 301 0 R /K <> /ID (ID.0132) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 301 0 R /K [303 0 R 304 0 R] /ID (ID.0131) >> endobj 303 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 301 0 R /K <> /ID (ID.0133) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 302 0 R /K <> /ID (ID.0132) >> endobj 304 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 300 0 R /K 305 0 R /ID (ID.0134) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 302 0 R /K <> /ID (ID.0133) >> endobj -305 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 304 0 R /K [<> 306 0 R ] /ID (ID.0135) >> -endobj -306 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 305 0 R /K [<> 313 0 R] /ID (ID.0136) >> -endobj -308 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 24 0 R /K 309 0 R /ID (ID.0137) >> -endobj -309 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 308 0 R /K [310 0 R 311 0 R] /ID (ID.0138) >> -endobj -310 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 309 0 R /K <> /ID (ID.0139) >> -endobj -311 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 309 0 R /K <> /ID (ID.0140) >> -endobj -324 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 299 0 R /K [325 0 R 328 0 R] /ID (ID.0141) >> -endobj -325 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 324 0 R /K [326 0 R 327 0 R] /ID (ID.0142) >> +317 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 293 0 R /K [318 0 R 320 0 R] /ID (ID.0134) >> endobj -326 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 325 0 R /K <> /ID (ID.0143) >> +318 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 317 0 R /K [<> 319 0 R <> ] /ID (ID.0135) >> endobj -327 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 325 0 R /K <> /ID (ID.0144) >> +319 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 318 0 R /K <> /ID (ID.0136) >> endobj -328 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 324 0 R /K 329 0 R /ID (ID.0145) >> +320 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 317 0 R /K 321 0 R /ID (ID.0137) >> endobj -329 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 328 0 R /K <> /ID (ID.0146) >> +321 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 320 0 R /K <> /ID (ID.0138) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 376 0 R /ClassMap 377 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 368 0 R /ClassMap 369 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> endobj -330 0 obj +322 0 obj << /Type /Metadata /Subtype /XML /Length 12098 >> stream @@ -2566,23 +2583,23 @@ stream endstream endobj -378 0 obj +370 0 obj [277.8 0 0 500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 0 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 0 777.8 625 916.7 750 777.8 680.6 0 736.1 555.6 722.2 750 0 1027.8 ] endobj -379 0 obj +371 0 obj [555.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.8 0 277.8 0 500 500 500 500 500 500 500 500 500 500 277.8 0 0 0 0 0 0 750 708.3 0 763.9 0 652.8 0 750 361.1 0 0 625 916.7 0 777.8 680.6 0 0 555.6 0 0 0 1027.8 0 0 0 0 0 0 0 0 0 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 0 527.8 277.8 833.3 555.6 500 0 0 391.7 394.4 388.9 555.6 527.8 722.2 0 0 444.4 ] endobj -380 0 obj +372 0 obj [ 103 [ 333 ] ] endobj -382 0 obj +374 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -381 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 382 0 R >> +373 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 374 0 R >> endobj -383 0 obj +375 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2616,47 +2633,47 @@ end %%EOF endstream endobj -114 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 384 0 R ] /ToUnicode 383 0 R >> +113 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 376 0 R ] /ToUnicode 375 0 R >> endobj -384 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 381 0 R /W 380 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +376 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 373 0 R /W 372 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -385 0 obj +377 0 obj [575 575 575 575 575 575 575 0 0 0 0 0 0 0 0 0 0 818.1 0 0 0 0 0 900 436.1 0 0 0 1091.7 0 0 0 0 0 638.9 0 0 0 1188.9 0 0 0 0 0 0 0 0 0 559 638.9 511.1 638.9 527.1 0 575 638.9 319.4 0 606.9 319.4 0 638.9 575 0 0 473.6 453.6 447.2 638.9 0 830.6 ] endobj -386 0 obj +378 0 obj [312.5 0 0 562.5 562.5 562.5 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 799.8 812.5 862.3 0 707.2 0 879.6 419 0 0 675.9 1067.1 0 0 0 0 0 625 0 0 0 1162 0 0 0 0 0 0 0 0 0 546.9 625 500 625 513.3 343.7 562.5 625 312.5 0 593.7 312.5 937.5 625 562.5 625 0 459.5 443.8 437.5 625 593.7 812.5 ] endobj -388 0 obj +380 0 obj << /Length1 1831 /Length2 13349 /Length3 0 /Length 15180 >> [BINARY STREAM] endobj -387 0 obj -<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 388 0 R >> +379 0 obj +<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 380 0 R >> endobj -390 0 obj +382 0 obj << /Length1 1948 /Length2 12653 /Length3 0 /Length 14601 >> [BINARY STREAM] endobj -389 0 obj -<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 390 0 R >> +381 0 obj +<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 382 0 R >> endobj -392 0 obj +384 0 obj << /Length1 2091 /Length2 16814 /Length3 0 /Length 18905 >> [BINARY STREAM] endobj -391 0 obj -<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 392 0 R >> +383 0 obj +<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 384 0 R >> endobj -394 0 obj +386 0 obj << /Length1 1766 /Length2 11604 /Length3 0 /Length 13370 >> [BINARY STREAM] endobj -393 0 obj -<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 394 0 R >> +385 0 obj +<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 386 0 R >> endobj -395 0 obj +387 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2776,10 +2793,10 @@ end %%EOF endstream endobj -113 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 387 0 R /FirstChar 49 /LastChar 119 /Widths 385 0 R /ToUnicode 395 0 R >> +112 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 379 0 R /FirstChar 49 /LastChar 119 /Widths 377 0 R /ToUnicode 387 0 R >> endobj -396 0 obj +388 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2899,10 +2916,10 @@ end %%EOF endstream endobj -112 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 389 0 R /FirstChar 46 /LastChar 119 /Widths 386 0 R /ToUnicode 396 0 R >> +111 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 381 0 R /FirstChar 46 /LastChar 119 /Widths 378 0 R /ToUnicode 388 0 R >> endobj -397 0 obj +389 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -3022,10 +3039,10 @@ end %%EOF endstream endobj -115 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 391 0 R /FirstChar 12 /LastChar 122 /Widths 379 0 R /ToUnicode 397 0 R >> +114 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 383 0 R /FirstChar 12 /LastChar 122 /Widths 371 0 R /ToUnicode 389 0 R >> endobj -398 0 obj +390 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -3145,169 +3162,168 @@ end %%EOF endstream endobj -147 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 393 0 R /FirstChar 46 /LastChar 87 /Widths 378 0 R /ToUnicode 398 0 R >> +146 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 385 0 R /FirstChar 46 /LastChar 87 /Widths 370 0 R /ToUnicode 390 0 R >> endobj -116 0 obj -<< /Type /Pages /Parent 399 0 R /Count 10 /Kids [ 21 0 R 143 0 R 167 0 R 185 0 R 197 0 R 202 0 R 218 0 R 231 0 R 249 0 R 254 0 R ] >> +115 0 obj +<< /Type /Pages /Parent 391 0 R /Count 10 /Kids [ 21 0 R 142 0 R 165 0 R 183 0 R 194 0 R 199 0 R 214 0 R 227 0 R 245 0 R 250 0 R ] >> endobj -276 0 obj -<< /Type /Pages /Parent 399 0 R /Count 7 /Kids [ 270 0 R 279 0 R 290 0 R 295 0 R 312 0 R 320 0 R 332 0 R ] >> +271 0 obj +<< /Type /Pages /Parent 391 0 R /Count 7 /Kids [ 265 0 R 274 0 R 284 0 R 289 0 R 305 0 R 313 0 R 324 0 R ] >> endobj -399 0 obj -<< /Type /Pages /Count 17 /Kids [ 116 0 R 276 0 R ] >> +391 0 obj +<< /Type /Pages /Count 17 /Kids [ 115 0 R 271 0 R ] >> endobj -400 0 obj -<< /Type /Outlines /First 338 0 R /Last 365 0 R /Count 3 >> +392 0 obj +<< /Type /Outlines /First 330 0 R /Last 357 0 R /Count 3 >> endobj -371 0 obj -<< /Title 372 0 R /A 370 0 R /Parent 365 0 R /Prev 368 0 R >> +363 0 obj +<< /Title 364 0 R /A 362 0 R /Parent 357 0 R /Prev 360 0 R >> endobj -368 0 obj -<< /Title 369 0 R /A 367 0 R /Parent 365 0 R /Next 371 0 R >> +360 0 obj +<< /Title 361 0 R /A 359 0 R /Parent 357 0 R /Next 363 0 R >> endobj -365 0 obj -<< /Title 366 0 R /A 364 0 R /Parent 400 0 R /Prev 341 0 R /First 368 0 R /Last 371 0 R /Count -2 >> +357 0 obj +<< /Title 358 0 R /A 356 0 R /Parent 392 0 R /Prev 333 0 R /First 360 0 R /Last 363 0 R /Count -2 >> endobj -362 0 obj -<< /Title 363 0 R /A 361 0 R /Parent 341 0 R /Prev 359 0 R >> +354 0 obj +<< /Title 355 0 R /A 353 0 R /Parent 333 0 R /Prev 351 0 R >> endobj -359 0 obj -<< /Title 360 0 R /A 358 0 R /Parent 341 0 R /Prev 344 0 R /Next 362 0 R >> +351 0 obj +<< /Title 352 0 R /A 350 0 R /Parent 333 0 R /Prev 336 0 R /Next 354 0 R >> endobj -356 0 obj -<< /Title 357 0 R /A 355 0 R /Parent 350 0 R /Prev 353 0 R >> +348 0 obj +<< /Title 349 0 R /A 347 0 R /Parent 342 0 R /Prev 345 0 R >> endobj -353 0 obj -<< /Title 354 0 R /A 352 0 R /Parent 350 0 R /Next 356 0 R >> +345 0 obj +<< /Title 346 0 R /A 344 0 R /Parent 342 0 R /Next 348 0 R >> endobj -350 0 obj -<< /Title 351 0 R /A 349 0 R /Parent 344 0 R /Prev 347 0 R /First 353 0 R /Last 356 0 R /Count -2 >> +342 0 obj +<< /Title 343 0 R /A 341 0 R /Parent 336 0 R /Prev 339 0 R /First 345 0 R /Last 348 0 R /Count -2 >> endobj -347 0 obj -<< /Title 348 0 R /A 346 0 R /Parent 344 0 R /Next 350 0 R >> +339 0 obj +<< /Title 340 0 R /A 338 0 R /Parent 336 0 R /Next 342 0 R >> endobj -344 0 obj -<< /Title 345 0 R /A 343 0 R /Parent 341 0 R /Next 359 0 R /First 347 0 R /Last 350 0 R /Count -2 >> +336 0 obj +<< /Title 337 0 R /A 335 0 R /Parent 333 0 R /Next 351 0 R /First 339 0 R /Last 342 0 R /Count -2 >> endobj -341 0 obj -<< /Title 342 0 R /A 340 0 R /Parent 400 0 R /Prev 338 0 R /Next 365 0 R /First 344 0 R /Last 362 0 R /Count -3 >> +333 0 obj +<< /Title 334 0 R /A 332 0 R /Parent 392 0 R /Prev 330 0 R /Next 357 0 R /First 336 0 R /Last 354 0 R /Count -3 >> endobj -338 0 obj -<< /Title 339 0 R /A 337 0 R /Parent 400 0 R /Next 341 0 R >> +330 0 obj +<< /Title 331 0 R /A 329 0 R /Parent 392 0 R /Next 333 0 R >> endobj -401 0 obj -<< /Names [ (Doc-Start) 108 0 R (chapter*.1) 110 0 R (chapter*.2) 175 0 R (chapter.1) 118 0 R (chapter.2) 122 0 R (chapter.3) 132 0 R (chapter.4) 134 0 R (chapter.5) 138 0 R (chapter.6) 140 0 R (figure.struct.119) 180 0 R (figure.struct.137) 182 0 R (figure.struct.90) 178 0 R (page.1) 106 0 R (page.10) 256 0 R (page.11) 274 0 R (page.12) 281 0 R (page.13) 292 0 R (page.14) 297 0 R (page.15) 316 0 R (page.16) 322 0 R (page.17) 334 0 R (page.2) 145 0 R (page.3) 173 0 R (page.4) 187 0 R (page.5) 199 0 R (page.6) 204 0 R (page.7) 222 0 R (page.8) 233 0 R (page.9) 251 0 R (part.1) 120 0 R (part.2) 136 0 R (section.2.1) 124 0 R ] /Limits [ (Doc-Start) (section.2.1) ] >> +393 0 obj +<< /Names [ (Doc-Start) 107 0 R (chapter*.1) 109 0 R (chapter*.2) 173 0 R (chapter.1) 117 0 R (chapter.2) 121 0 R (chapter.3) 131 0 R (chapter.4) 133 0 R (chapter.5) 137 0 R (chapter.6) 139 0 R (figure.struct.114) 178 0 R (figure.struct.130) 180 0 R (figure.struct.86) 176 0 R (page.1) 105 0 R (page.10) 252 0 R (page.11) 269 0 R (page.12) 276 0 R (page.13) 286 0 R (page.14) 291 0 R (page.15) 309 0 R (page.16) 315 0 R (page.17) 326 0 R (page.2) 144 0 R (page.3) 171 0 R (page.4) 185 0 R (page.5) 196 0 R (page.6) 201 0 R (page.7) 218 0 R (page.8) 229 0 R (page.9) 247 0 R (part.1) 119 0 R (part.2) 135 0 R (section.2.1) 123 0 R ] /Limits [ (Doc-Start) (section.2.1) ] >> endobj -402 0 obj -<< /Names [ (section.2.2) 126 0 R (subsection.2.2.1) 128 0 R (subsection.2.2.2) 130 0 R ] /Limits [ (section.2.2) (subsection.2.2.2) ] >> +394 0 obj +<< /Names [ (section.2.2) 125 0 R (subsection.2.2.1) 127 0 R (subsection.2.2.2) 129 0 R ] /Limits [ (section.2.2) (subsection.2.2.2) ] >> endobj -403 0 obj -<< /Kids [ 401 0 R 402 0 R ] /Limits [ (Doc-Start) (subsection.2.2.2) ] >> +395 0 obj +<< /Kids [ 393 0 R 394 0 R ] /Limits [ (Doc-Start) (subsection.2.2.2) ] >> endobj -404 0 obj -<< /Dests 403 0 R >> +396 0 obj +<< /Dests 395 0 R >> endobj -405 0 obj -<< /Type /Catalog /Pages 399 0 R /Outlines 400 0 R /Names 404 0 R /MarkInfo 336 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 330 0 R >> +397 0 obj +<< /Type /Catalog /Pages 391 0 R /Outlines 392 0 R /Names 396 0 R /MarkInfo 328 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 322 0 R >> endobj -406 0 obj +398 0 obj << /Producer (LuaTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 407 +0 399 0000000010 65535 f -0000037461 00000 n -0000037508 00000 n -0000037530 00000 n -0000037552 00000 n -0000065923 00000 n -0000039300 00000 n -0000043134 00000 n -0000045492 00000 n -0000044012 00000 n +0000038013 00000 n +0000038060 00000 n +0000038082 00000 n +0000038104 00000 n +0000066035 00000 n +0000039852 00000 n +0000043623 00000 n +0000046197 00000 n +0000044565 00000 n 0000000012 00000 f -0000044080 00000 n +0000044633 00000 n 0000000014 00000 f -0000044150 00000 n +0000044703 00000 n 0000000020 00000 f -0000045030 00000 n -0000044231 00000 n -0000045303 00000 n -0000045132 00000 n -0000045405 00000 n +0000045735 00000 n +0000044784 00000 n +0000046008 00000 n +0000045837 00000 n +0000046110 00000 n 0000000000 00000 f -0000006065 00000 n -0000045553 00000 n -0000045693 00000 n -0000045783 00000 n -0000045901 00000 n -0000045991 00000 n -0000046096 00000 n -0000046237 00000 n -0000046377 00000 n -0000046523 00000 n -0000046693 00000 n -0000046832 00000 n -0000006324 00000 n -0000047007 00000 n -0000047130 00000 n -0000047272 00000 n -0000047411 00000 n -0000006551 00000 n -0000047544 00000 n -0000047661 00000 n -0000047827 00000 n -0000047967 00000 n -0000006774 00000 n -0000048142 00000 n -0000048265 00000 n -0000048375 00000 n -0000048549 00000 n -0000048689 00000 n -0000007001 00000 n -0000048866 00000 n -0000048990 00000 n -0000049140 00000 n -0000049280 00000 n -0000007231 00000 n -0000049457 00000 n -0000049581 00000 n -0000049684 00000 n -0000049870 00000 n -0000050010 00000 n -0000007460 00000 n -0000050187 00000 n -0000050311 00000 n -0000050453 00000 n -0000050593 00000 n -0000007695 00000 n -0000050770 00000 n -0000050894 00000 n -0000051068 00000 n -0000051208 00000 n -0000007928 00000 n -0000051385 00000 n -0000051509 00000 n -0000051675 00000 n -0000051815 00000 n -0000008156 00000 n -0000051993 00000 n -0000052117 00000 n -0000052259 00000 n -0000052399 00000 n -0000008384 00000 n -0000052534 00000 n -0000052637 00000 n -0000052807 00000 n -0000052947 00000 n -0000008609 00000 n -0000053125 00000 n -0000053249 00000 n -0000053411 00000 n -0000053551 00000 n -0000008837 00000 n -0000053729 00000 n +0000006067 00000 n +0000046258 00000 n +0000046398 00000 n +0000046488 00000 n +0000046606 00000 n +0000046696 00000 n +0000046801 00000 n +0000046970 00000 n +0000047116 00000 n +0000047286 00000 n +0000047425 00000 n +0000006326 00000 n +0000047600 00000 n +0000047723 00000 n +0000047865 00000 n +0000048004 00000 n +0000006553 00000 n +0000048137 00000 n +0000048254 00000 n +0000048420 00000 n +0000048560 00000 n +0000006776 00000 n +0000048735 00000 n +0000048858 00000 n +0000048968 00000 n +0000049142 00000 n +0000049282 00000 n +0000007003 00000 n +0000049459 00000 n +0000049583 00000 n +0000049733 00000 n +0000049873 00000 n +0000007233 00000 n +0000050050 00000 n +0000050174 00000 n +0000050277 00000 n +0000050463 00000 n +0000050603 00000 n +0000007462 00000 n +0000050780 00000 n +0000050904 00000 n +0000051046 00000 n +0000051186 00000 n +0000007697 00000 n +0000051363 00000 n +0000051487 00000 n +0000051661 00000 n +0000051801 00000 n +0000007930 00000 n +0000051978 00000 n +0000052102 00000 n +0000052268 00000 n +0000052408 00000 n +0000008158 00000 n +0000052585 00000 n +0000052709 00000 n +0000052851 00000 n +0000052991 00000 n +0000008386 00000 n +0000053126 00000 n +0000053229 00000 n +0000053399 00000 n +0000053539 00000 n +0000008611 00000 n +0000053717 00000 n +0000053841 00000 n +0000054003 00000 n +0000054143 00000 n +0000008839 00000 n +0000054321 00000 n 0000000020 00000 n 0000000074 00000 n 0000000128 00000 n @@ -3317,314 +3333,307 @@ xref 0000000344 00000 n 0000000398 00000 n 0000000452 00000 n -0000000507 00000 n -0000000562 00000 n -0000000617 00000 n -0000009414 00000 n -0000000672 00000 n -0000009063 00000 n -0000009126 00000 n -0000009180 00000 n -0000009243 00000 n -0000009297 00000 n -0000009360 00000 n -0000148374 00000 n -0000146421 00000 n -0000080413 00000 n -0000150322 00000 n -0000152436 00000 n -0000006219 00000 n -0000016820 00000 n -0000016884 00000 n -0000016939 00000 n -0000017003 00000 n -0000020636 00000 n -0000020700 00000 n -0000022276 00000 n -0000022340 00000 n -0000024663 00000 n -0000024727 00000 n -0000024782 00000 n -0000024846 00000 n -0000024901 00000 n -0000024965 00000 n -0000028620 00000 n -0000028684 00000 n -0000030970 00000 n -0000031034 00000 n -0000034789 00000 n -0000034853 00000 n -0000034908 00000 n -0000034972 00000 n -0000037251 00000 n -0000037315 00000 n -0000010018 00000 n -0000009761 00000 n -0000009518 00000 n -0000009900 00000 n -0000009964 00000 n -0000152274 00000 n -0000053853 00000 n -0000053961 00000 n -0000054133 00000 n -0000054276 00000 n -0000054413 00000 n -0000054622 00000 n -0000054765 00000 n -0000013772 00000 n -0000054946 00000 n -0000055072 00000 n -0000055289 00000 n -0000055432 00000 n -0000014007 00000 n -0000055613 00000 n -0000055739 00000 n -0000055924 00000 n -0000056068 00000 n -0000014244 00000 n -0000056250 00000 n -0000013572 00000 n -0000010096 00000 n -0000010153 00000 n -0000010210 00000 n -0000014719 00000 n -0000010267 00000 n -0000014481 00000 n -0000014545 00000 n -0000014600 00000 n -0000014664 00000 n -0000013727 00000 n +0000000506 00000 n +0000000561 00000 n +0000000616 00000 n +0000009416 00000 n +0000000671 00000 n +0000009065 00000 n +0000009128 00000 n +0000009182 00000 n +0000009245 00000 n +0000009299 00000 n +0000009362 00000 n +0000148486 00000 n +0000146533 00000 n +0000080525 00000 n +0000150434 00000 n +0000152548 00000 n +0000006221 00000 n +0000016882 00000 n +0000016946 00000 n +0000017001 00000 n +0000017065 00000 n 0000020755 00000 n 0000020819 00000 n -0000028739 00000 n -0000028803 00000 n -0000035027 00000 n -0000035091 00000 n -0000015524 00000 n -0000015266 00000 n -0000014810 00000 n -0000015405 00000 n -0000015469 00000 n -0000056377 00000 n -0000056485 00000 n -0000056655 00000 n -0000056798 00000 n -0000056941 00000 n -0000057049 00000 n -0000057194 00000 n -0000017058 00000 n -0000016562 00000 n -0000015615 00000 n -0000016701 00000 n -0000016765 00000 n -0000017884 00000 n -0000017626 00000 n -0000017149 00000 n -0000017765 00000 n -0000017829 00000 n -0000057310 00000 n -0000057435 00000 n -0000057601 00000 n -0000057744 00000 n -0000057887 00000 n -0000057995 00000 n -0000058151 00000 n -0000020283 00000 n -0000058288 00000 n -0000058387 00000 n -0000058499 00000 n -0000058625 00000 n -0000020099 00000 n -0000017975 00000 n +0000022440 00000 n +0000022504 00000 n +0000024987 00000 n +0000025051 00000 n +0000025106 00000 n +0000025170 00000 n +0000025225 00000 n +0000025289 00000 n +0000029001 00000 n +0000029065 00000 n +0000031408 00000 n +0000031472 00000 n +0000035284 00000 n +0000035348 00000 n +0000035403 00000 n +0000035467 00000 n +0000037803 00000 n +0000037867 00000 n +0000010020 00000 n +0000009763 00000 n +0000009520 00000 n +0000009902 00000 n +0000009966 00000 n +0000152386 00000 n +0000054445 00000 n +0000054553 00000 n +0000054753 00000 n +0000054890 00000 n +0000055099 00000 n +0000055242 00000 n +0000013777 00000 n +0000055423 00000 n +0000055549 00000 n +0000055766 00000 n +0000055909 00000 n +0000014012 00000 n +0000056090 00000 n +0000056216 00000 n +0000056401 00000 n +0000056545 00000 n +0000014249 00000 n +0000056727 00000 n +0000013577 00000 n +0000010098 00000 n +0000010155 00000 n +0000010212 00000 n +0000014724 00000 n +0000010269 00000 n +0000014486 00000 n +0000014550 00000 n +0000014605 00000 n +0000014669 00000 n +0000013732 00000 n 0000020874 00000 n -0000018032 00000 n -0000020517 00000 n -0000020581 00000 n -0000020254 00000 n -0000058770 00000 n -0000058879 00000 n -0000059081 00000 n -0000059218 00000 n -0000059326 00000 n -0000022395 00000 n -0000022018 00000 n -0000020965 00000 n -0000022157 00000 n -0000022221 00000 n -0000059471 00000 n -0000059588 00000 n -0000059766 00000 n -0000059903 00000 n -0000060012 00000 n -0000060229 00000 n -0000060366 00000 n -0000060474 00000 n -0000060619 00000 n -0000060728 00000 n -0000060901 00000 n -0000061038 00000 n -0000061146 00000 n -0000025020 00000 n -0000024405 00000 n -0000022499 00000 n -0000024544 00000 n -0000024608 00000 n -0000025956 00000 n -0000025698 00000 n -0000025124 00000 n -0000025837 00000 n -0000025901 00000 n -0000061291 00000 n -0000061400 00000 n -0000061574 00000 n -0000061717 00000 n -0000061860 00000 n -0000061968 00000 n -0000062124 00000 n -0000028266 00000 n -0000062261 00000 n -0000062360 00000 n -0000062472 00000 n -0000062598 00000 n -0000028081 00000 n -0000026047 00000 n -0000028858 00000 n -0000026104 00000 n -0000028501 00000 n -0000028565 00000 n -0000152587 00000 n -0000028237 00000 n -0000029789 00000 n -0000029530 00000 n -0000028949 00000 n -0000029670 00000 n -0000029734 00000 n -0000062743 00000 n -0000062852 00000 n -0000063018 00000 n -0000063161 00000 n -0000063304 00000 n -0000063412 00000 n -0000031089 00000 n -0000030712 00000 n -0000029880 00000 n -0000030852 00000 n -0000030916 00000 n -0000032014 00000 n -0000031756 00000 n -0000031180 00000 n -0000031896 00000 n -0000031960 00000 n -0000063557 00000 n -0000063665 00000 n -0000063774 00000 n -0000063944 00000 n -0000064087 00000 n -0000064230 00000 n -0000064338 00000 n -0000064494 00000 n -0000034434 00000 n -0000064631 00000 n -0000064730 00000 n -0000064842 00000 n -0000064968 00000 n -0000034249 00000 n -0000032105 00000 n -0000035146 00000 n -0000032162 00000 n -0000034670 00000 n -0000034734 00000 n -0000034405 00000 n -0000036074 00000 n -0000035815 00000 n -0000035237 00000 n -0000035955 00000 n -0000036019 00000 n -0000065113 00000 n -0000065222 00000 n -0000065384 00000 n -0000065527 00000 n -0000065670 00000 n -0000065778 00000 n -0000066062 00000 n -0000037370 00000 n -0000036993 00000 n -0000036165 00000 n -0000037133 00000 n -0000037197 00000 n -0000037574 00000 n -0000037611 00000 n -0000153917 00000 n -0000037670 00000 n -0000037759 00000 n -0000153785 00000 n -0000037815 00000 n -0000037869 00000 n -0000153667 00000 n -0000037928 00000 n -0000038015 00000 n -0000153588 00000 n -0000038076 00000 n -0000038173 00000 n -0000153470 00000 n -0000038234 00000 n -0000038298 00000 n -0000153391 00000 n -0000038364 00000 n -0000038476 00000 n -0000153312 00000 n -0000038542 00000 n -0000038596 00000 n -0000153219 00000 n -0000038655 00000 n -0000038752 00000 n -0000153140 00000 n -0000038811 00000 n -0000038898 00000 n -0000153022 00000 n -0000038954 00000 n -0000039008 00000 n -0000152943 00000 n -0000039067 00000 n -0000039159 00000 n -0000152864 00000 n -0000039218 00000 n -0000040341 00000 n -0000041253 00000 n -0000042207 00000 n -0000043079 00000 n -0000043806 00000 n -0000078251 00000 n -0000078440 00000 n -0000078839 00000 n -0000079463 00000 n -0000078872 00000 n -0000079686 00000 n -0000080570 00000 n -0000080773 00000 n -0000081035 00000 n -0000096618 00000 n -0000081337 00000 n -0000111529 00000 n -0000096827 00000 n -0000130744 00000 n -0000111738 00000 n -0000144422 00000 n -0000130951 00000 n -0000144631 00000 n -0000146584 00000 n -0000148537 00000 n -0000150484 00000 n -0000152714 00000 n -0000152787 00000 n -0000153996 00000 n -0000154686 00000 n -0000154841 00000 n -0000154933 00000 n -0000154971 00000 n -0000155234 00000 n +0000020938 00000 n +0000029120 00000 n +0000029184 00000 n +0000035522 00000 n +0000035586 00000 n +0000015529 00000 n +0000015271 00000 n +0000014815 00000 n +0000015410 00000 n +0000015474 00000 n +0000056854 00000 n +0000056962 00000 n +0000057196 00000 n +0000057333 00000 n +0000057441 00000 n +0000057586 00000 n +0000017120 00000 n +0000016624 00000 n +0000015620 00000 n +0000016763 00000 n +0000016827 00000 n +0000017946 00000 n +0000017688 00000 n +0000017211 00000 n +0000017827 00000 n +0000017891 00000 n +0000057702 00000 n +0000057827 00000 n +0000058057 00000 n +0000058194 00000 n +0000058302 00000 n +0000058458 00000 n +0000020402 00000 n +0000058595 00000 n +0000058694 00000 n +0000058806 00000 n +0000058932 00000 n +0000020218 00000 n +0000018037 00000 n +0000020993 00000 n +0000018094 00000 n +0000020636 00000 n +0000020700 00000 n +0000020373 00000 n +0000059077 00000 n +0000059186 00000 n +0000059424 00000 n +0000059561 00000 n +0000059669 00000 n +0000022559 00000 n +0000022182 00000 n +0000021084 00000 n +0000022321 00000 n +0000022385 00000 n +0000059814 00000 n +0000059931 00000 n +0000060145 00000 n +0000060282 00000 n +0000060391 00000 n +0000060644 00000 n +0000060781 00000 n +0000060889 00000 n +0000061034 00000 n +0000061143 00000 n +0000061352 00000 n +0000061489 00000 n +0000061597 00000 n +0000025344 00000 n +0000024729 00000 n +0000022663 00000 n +0000024868 00000 n +0000024932 00000 n +0000026280 00000 n +0000026022 00000 n +0000025448 00000 n +0000026161 00000 n +0000026225 00000 n +0000061743 00000 n +0000061852 00000 n +0000062090 00000 n +0000062227 00000 n +0000062335 00000 n +0000062491 00000 n +0000028647 00000 n +0000062628 00000 n +0000062727 00000 n +0000062839 00000 n +0000062965 00000 n +0000028462 00000 n +0000026371 00000 n +0000029239 00000 n +0000026428 00000 n +0000028882 00000 n +0000028946 00000 n +0000152699 00000 n +0000028618 00000 n +0000030170 00000 n +0000029911 00000 n +0000029330 00000 n +0000030051 00000 n +0000030115 00000 n +0000063110 00000 n +0000063219 00000 n +0000063449 00000 n +0000063586 00000 n +0000063694 00000 n +0000031527 00000 n +0000031150 00000 n +0000030261 00000 n +0000031290 00000 n +0000031354 00000 n +0000032452 00000 n +0000032194 00000 n +0000031618 00000 n +0000032334 00000 n +0000032398 00000 n +0000063839 00000 n +0000063947 00000 n +0000064056 00000 n +0000064290 00000 n +0000064427 00000 n +0000064535 00000 n +0000064691 00000 n +0000034929 00000 n +0000064828 00000 n +0000064927 00000 n +0000065039 00000 n +0000065165 00000 n +0000034744 00000 n +0000032543 00000 n +0000035641 00000 n +0000032600 00000 n +0000035165 00000 n +0000035229 00000 n +0000034900 00000 n +0000036569 00000 n +0000036310 00000 n +0000035732 00000 n +0000036450 00000 n +0000036514 00000 n +0000065310 00000 n +0000065419 00000 n +0000065645 00000 n +0000065782 00000 n +0000065890 00000 n +0000066174 00000 n +0000037922 00000 n +0000037545 00000 n +0000036660 00000 n +0000037685 00000 n +0000037749 00000 n +0000038126 00000 n +0000038163 00000 n +0000154029 00000 n +0000038222 00000 n +0000038311 00000 n +0000153897 00000 n +0000038367 00000 n +0000038421 00000 n +0000153779 00000 n +0000038480 00000 n +0000038567 00000 n +0000153700 00000 n +0000038628 00000 n +0000038725 00000 n +0000153582 00000 n +0000038786 00000 n +0000038850 00000 n +0000153503 00000 n +0000038916 00000 n +0000039028 00000 n +0000153424 00000 n +0000039094 00000 n +0000039148 00000 n +0000153331 00000 n +0000039207 00000 n +0000039304 00000 n +0000153252 00000 n +0000039363 00000 n +0000039450 00000 n +0000153134 00000 n +0000039506 00000 n +0000039560 00000 n +0000153055 00000 n +0000039619 00000 n +0000039711 00000 n +0000152976 00000 n +0000039770 00000 n +0000040973 00000 n +0000041885 00000 n +0000042840 00000 n +0000043568 00000 n +0000044402 00000 n +0000078363 00000 n +0000078552 00000 n +0000078951 00000 n +0000079575 00000 n +0000078984 00000 n +0000079798 00000 n +0000080682 00000 n +0000080885 00000 n +0000081147 00000 n +0000096730 00000 n +0000081449 00000 n +0000111641 00000 n +0000096939 00000 n +0000130856 00000 n +0000111850 00000 n +0000144534 00000 n +0000131063 00000 n +0000144743 00000 n +0000146696 00000 n +0000148649 00000 n +0000150596 00000 n +0000152826 00000 n +0000152899 00000 n +0000154108 00000 n +0000154798 00000 n +0000154953 00000 n +0000155045 00000 n +0000155083 00000 n +0000155346 00000 n trailer -<< /Size 407 /Root 405 0 R /Info 406 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 399 /Root 397 0 R /Info 398 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -155444 +155556 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.tpf index 18498cac5..4eeafad43 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-hyperref-1.tpf @@ -1,50 +1,50 @@ %PDF-2.0 %ÐÔÅØ -34 0 obj -<< /Type/OBJR/Obj 32 0 R/Pg 21 0 R >> +33 0 obj +<< /Type/OBJR/Obj 31 0 R/Pg 21 0 R >> endobj -39 0 obj -<< /Type/OBJR/Obj 38 0 R/Pg 21 0 R >> +38 0 obj +<< /Type/OBJR/Obj 37 0 R/Pg 21 0 R >> endobj -46 0 obj -<< /Type/OBJR/Obj 44 0 R/Pg 21 0 R >> +45 0 obj +<< /Type/OBJR/Obj 43 0 R/Pg 21 0 R >> endobj -53 0 obj -<< /Type/OBJR/Obj 51 0 R/Pg 21 0 R >> +52 0 obj +<< /Type/OBJR/Obj 50 0 R/Pg 21 0 R >> endobj -59 0 obj -<< /Type/OBJR/Obj 57 0 R/Pg 21 0 R >> +58 0 obj +<< /Type/OBJR/Obj 56 0 R/Pg 21 0 R >> endobj -66 0 obj -<< /Type/OBJR/Obj 64 0 R/Pg 21 0 R >> +65 0 obj +<< /Type/OBJR/Obj 63 0 R/Pg 21 0 R >> endobj -72 0 obj -<< /Type/OBJR/Obj 70 0 R/Pg 21 0 R >> +71 0 obj +<< /Type/OBJR/Obj 69 0 R/Pg 21 0 R >> endobj -78 0 obj -<< /Type/OBJR/Obj 76 0 R/Pg 21 0 R >> +77 0 obj +<< /Type/OBJR/Obj 75 0 R/Pg 21 0 R >> endobj -84 0 obj -<< /Type/OBJR/Obj 82 0 R/Pg 21 0 R >> +83 0 obj +<< /Type/OBJR/Obj 81 0 R/Pg 21 0 R >> endobj -89 0 obj -<< /Type/OBJR/Obj 88 0 R/Pg 21 0 R >> +88 0 obj +<< /Type/OBJR/Obj 87 0 R/Pg 21 0 R >> endobj -96 0 obj -<< /Type/OBJR/Obj 94 0 R/Pg 21 0 R >> +95 0 obj +<< /Type/OBJR/Obj 93 0 R/Pg 21 0 R >> endobj -102 0 obj -<< /Type/OBJR/Obj 100 0 R/Pg 21 0 R >> +101 0 obj +<< /Type/OBJR/Obj 99 0 R/Pg 21 0 R >> endobj -104 0 obj +103 0 obj << -/Length 10330 +/Length 10333 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Con)29(ten)29(ts)]TJ ET @@ -317,153 +317,153 @@ endobj 21 0 obj << /Type /Page -/Contents 104 0 R -/Resources 103 0 R +/Contents 103 0 R +/Resources 102 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 116 0 R -/Annots [ 32 0 R 38 0 R 44 0 R 51 0 R 57 0 R 64 0 R 70 0 R 76 0 R 82 0 R 88 0 R 94 0 R 100 0 R ] +/Parent 115 0 R +/Annots [ 31 0 R 37 0 R 43 0 R 50 0 R 56 0 R 63 0 R 69 0 R 75 0 R 81 0 R 87 0 R 93 0 R 99 0 R ] >> endobj -32 0 obj +31 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 17 /Rect [105.873 515.701 185.956 524.569] -/A << /S /GoTo /D (chapter.1) /SD 118 0 R >> +/A << /S /GoTo /D (chapter.1) /SD 117 0 R >> >> endobj -38 0 obj +37 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 18 /Rect [105.873 481.335 140.892 491.578] -/A << /S /GoTo /D (part.1) /SD 120 0 R >> +/A << /S /GoTo /D (part.1) /SD 119 0 R >> >> endobj -44 0 obj +43 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 19 /Rect [105.873 459.42 181.679 468.288] -/A << /S /GoTo /D (chapter.2) /SD 122 0 R >> +/A << /S /GoTo /D (chapter.2) /SD 121 0 R >> >> endobj -51 0 obj +50 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 20 /Rect [120.813 445.528 207.025 456.319] -/A << /S /GoTo /D (section.2.1) /SD 124 0 R >> +/A << /S /GoTo /D (section.2.1) /SD 123 0 R >> >> endobj -57 0 obj +56 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 21 /Rect [120.813 435.51 180.354 444.364] -/A << /S /GoTo /D (section.2.2) /SD 126 0 R >> +/A << /S /GoTo /D (section.2.2) /SD 125 0 R >> >> endobj -64 0 obj +63 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 22 /Rect [143.722 423.555 254.087 432.409] -/A << /S /GoTo /D (subsection.2.2.1) /SD 128 0 R >> +/A << /S /GoTo /D (subsection.2.2.1) /SD 127 0 R >> >> endobj -70 0 obj +69 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 23 /Rect [143.722 411.599 204.064 420.453] -/A << /S /GoTo /D (subsection.2.2.2) /SD 130 0 R >> +/A << /S /GoTo /D (subsection.2.2.2) /SD 129 0 R >> >> endobj -76 0 obj +75 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 24 /Rect [105.873 389.684 186.02 398.552] -/A << /S /GoTo /D (chapter.3) /SD 132 0 R >> +/A << /S /GoTo /D (chapter.3) /SD 131 0 R >> >> endobj -82 0 obj +81 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 25 /Rect [105.873 367.769 187.14 376.636] -/A << /S /GoTo /D (chapter.4) /SD 134 0 R >> +/A << /S /GoTo /D (chapter.4) /SD 133 0 R >> >> endobj -88 0 obj +87 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 26 /Rect [105.873 333.403 143.645 343.646] -/A << /S /GoTo /D (part.2) /SD 136 0 R >> +/A << /S /GoTo /D (part.2) /SD 135 0 R >> >> endobj -94 0 obj +93 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 27 /Rect [105.873 309.551 192.223 320.355] -/A << /S /GoTo /D (chapter.5) /SD 138 0 R >> +/A << /S /GoTo /D (chapter.5) /SD 137 0 R >> >> endobj -100 0 obj +99 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 28 /Rect [105.873 289.572 180.783 298.44] -/A << /S /GoTo /D (chapter.6) /SD 140 0 R >> +/A << /S /GoTo /D (chapter.6) /SD 139 0 R >> >> endobj -105 0 obj +104 0 obj << /D [21 0 R /XYZ 105.869 699.082 null] >> endobj -106 0 obj +105 0 obj [25 0 R /XYZ 105.869 699.082 null] endobj -107 0 obj +106 0 obj << /D [21 0 R /XYZ 106.869 668.127 null] >> endobj -108 0 obj +107 0 obj [22 0 R /XYZ 106.869 668.127 null] endobj -109 0 obj +108 0 obj << /D [21 0 R /XYZ 106.869 608.351 null] >> endobj -110 0 obj +109 0 obj [26 0 R /XYZ 106.869 608.351 null] endobj -103 0 obj +102 0 obj << /ExtGState 1 0 R -/Font << /F48 111 0 R /F46 112 0 R /F50 113 0 R /F53 114 0 R /F45 115 0 R >> +/Font << /F48 110 0 R /F46 111 0 R /F50 112 0 R /F53 113 0 R /F45 114 0 R >> >> endobj -143 0 obj +142 0 obj << /Length 172 >> @@ -478,48 +478,48 @@ EMC EMC endstream endobj -142 0 obj +141 0 obj << /Type /Page -/Contents 143 0 R -/Resources 141 0 R +/Contents 142 0 R +/Resources 140 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 116 0 R +/Parent 115 0 R >> endobj -144 0 obj +143 0 obj << -/D [142 0 R /XYZ 159.667 699.082 null] +/D [141 0 R /XYZ 159.667 699.082 null] >> endobj -145 0 obj +144 0 obj [25 0 R /XYZ 159.667 699.082 null] endobj -141 0 obj +140 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F54 146 0 R /F53 114 0 R >> +/Font << /F45 114 0 R /F54 145 0 R /F53 113 0 R >> >> endobj -157 0 obj -<< /Type/OBJR/Obj 155 0 R/Pg 150 0 R >> +155 0 obj +<< /Type/OBJR/Obj 153 0 R/Pg 148 0 R >> endobj -163 0 obj -<< /Type/OBJR/Obj 161 0 R/Pg 150 0 R >> +161 0 obj +<< /Type/OBJR/Obj 159 0 R/Pg 148 0 R >> endobj -169 0 obj -<< /Type/OBJR/Obj 167 0 R/Pg 150 0 R >> +167 0 obj +<< /Type/OBJR/Obj 165 0 R/Pg 148 0 R >> endobj -171 0 obj +169 0 obj << -/Length 5928 +/Length 5931 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(List)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 51.767 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 29.559 0 Td [(Figures)]TJ ET @@ -609,67 +609,67 @@ ET EMC endstream endobj -150 0 obj +148 0 obj << /Type /Page -/Contents 171 0 R -/Resources 170 0 R +/Contents 169 0 R +/Resources 168 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 116 0 R -/Annots [ 155 0 R 161 0 R 167 0 R ] +/Parent 115 0 R +/Annots [ 153 0 R 159 0 R 165 0 R ] >> endobj -155 0 obj +153 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 29 /Rect [120.813 513.762 239.147 524.553] -/A << /S /GoTo /D (figure.struct.89) /SD 177 0 R >> +/A << /S /GoTo /D (figure.struct.85) /SD 175 0 R >> >> endobj -161 0 obj +159 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 30 /Rect [120.813 491.844 245.897 502.635] -/A << /S /GoTo /D (figure.struct.118) /SD 179 0 R >> +/A << /S /GoTo /D (figure.struct.113) /SD 177 0 R >> >> endobj -167 0 obj +165 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 31 /Rect [120.813 469.926 215.436 480.717] -/A << /S /GoTo /D (figure.struct.136) /SD 181 0 R >> +/A << /S /GoTo /D (figure.struct.129) /SD 179 0 R >> >> endobj -172 0 obj +170 0 obj << -/D [150 0 R /XYZ 105.869 699.082 null] +/D [148 0 R /XYZ 105.869 699.082 null] >> endobj -173 0 obj -[147 0 R /XYZ 105.869 699.082 null] +171 0 obj +[146 0 R /XYZ 105.869 699.082 null] endobj -174 0 obj +172 0 obj << -/D [150 0 R /XYZ 106.869 608.351 null] +/D [148 0 R /XYZ 106.869 608.351 null] >> endobj -175 0 obj -[148 0 R /XYZ 106.869 608.351 null] +173 0 obj +[147 0 R /XYZ 106.869 608.351 null] endobj -170 0 obj +168 0 obj << /ExtGState 1 0 R -/Font << /F48 111 0 R /F53 114 0 R /F45 115 0 R >> +/Font << /F48 110 0 R /F53 113 0 R /F45 114 0 R >> >> endobj -184 0 obj +182 0 obj << /Length 267 >> @@ -684,49 +684,54 @@ EMC EMC endstream endobj -183 0 obj +181 0 obj << /Type /Page -/Contents 184 0 R -/Resources 182 0 R +/Contents 182 0 R +/Resources 180 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 116 0 R +/Parent 115 0 R >> endobj -185 0 obj +183 0 obj << -/D [183 0 R /XYZ 159.667 699.082 null] +/D [181 0 R /XYZ 159.667 699.082 null] >> endobj -186 0 obj -[147 0 R /XYZ 159.667 699.082 null] +184 0 obj +[146 0 R /XYZ 159.667 699.082 null] endobj -182 0 obj +180 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -196 0 obj +193 0 obj << -/Length 595 +/Length 659 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(In)29(tro)-29(duction)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Some)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(collection)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 44.267 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(.)-167(.)-166(.)]TJ ET @@ -738,47 +743,47 @@ ET EMC endstream endobj -190 0 obj +187 0 obj << /Type /Page -/Contents 196 0 R -/Resources 195 0 R +/Contents 193 0 R +/Resources 192 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 116 0 R +/Parent 115 0 R >> endobj -197 0 obj +194 0 obj << -/D [190 0 R /XYZ 105.869 699.082 null] +/D [187 0 R /XYZ 105.869 699.082 null] >> endobj -198 0 obj -[194 0 R /XYZ 105.869 699.082 null] +195 0 obj +[191 0 R /XYZ 105.869 699.082 null] endobj -117 0 obj +116 0 obj << -/D [190 0 R /XYZ 106.869 608.351 null] +/D [187 0 R /XYZ 106.869 608.351 null] >> endobj -118 0 obj -[188 0 R /XYZ 106.869 608.351 null] +117 0 obj +[186 0 R /XYZ 106.869 608.351 null] endobj -119 0 obj +118 0 obj << -/D [190 0 R /XYZ 106.869 481.826 null] +/D [187 0 R /XYZ 106.869 481.826 null] >> endobj -120 0 obj -[194 0 R /XYZ 106.869 481.826 null] +119 0 obj +[191 0 R /XYZ 106.869 481.826 null] endobj -195 0 obj +192 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj -202 0 obj +199 0 obj << /Length 278 >> @@ -793,69 +798,74 @@ EMC EMC endstream endobj -201 0 obj +198 0 obj << /Type /Page -/Contents 202 0 R -/Resources 200 0 R +/Contents 199 0 R +/Resources 197 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 116 0 R +/Parent 115 0 R >> endobj -203 0 obj +200 0 obj << -/D [201 0 R /XYZ 159.667 699.082 null] +/D [198 0 R /XYZ 159.667 699.082 null] >> endobj -204 0 obj -[194 0 R /XYZ 159.667 699.082 null] +201 0 obj +[191 0 R /XYZ 159.667 699.082 null] endobj -200 0 obj +197 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -214 0 obj -<< /Type/OBJR/Obj 213 0 R/Pg 208 0 R >> +210 0 obj +<< /Type/OBJR/Obj 209 0 R/Pg 204 0 R >> endobj -220 0 obj +216 0 obj << -/Length 1234 +/Length 1298 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(2)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(2)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 69.501 0 Td [(Bears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.79 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 208.961 481.826 Td [(2.1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 206.333 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(2.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 257.684 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ ET @@ -867,59 +877,59 @@ ET EMC endstream endobj -208 0 obj +204 0 obj << /Type /Page -/Contents 220 0 R -/Resources 219 0 R +/Contents 216 0 R +/Resources 215 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 223 0 R -/Annots [ 213 0 R ] +/Parent 219 0 R +/Annots [ 209 0 R ] >> endobj -213 0 obj +209 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 32 /Rect [207.965 478.893 222.685 489.683] -/A << /S /GoTo /D (figure.struct.89) /SD 177 0 R >> +/A << /S /GoTo /D (figure.struct.85) /SD 175 0 R >> >> endobj -221 0 obj +217 0 obj << -/D [208 0 R /XYZ 105.869 699.082 null] +/D [204 0 R /XYZ 105.869 699.082 null] >> endobj -222 0 obj -[205 0 R /XYZ 105.869 699.082 null] +218 0 obj +[202 0 R /XYZ 105.869 699.082 null] endobj -121 0 obj +120 0 obj << -/D [208 0 R /XYZ 106.869 608.351 null] +/D [204 0 R /XYZ 106.869 608.351 null] >> endobj -122 0 obj -[206 0 R /XYZ 106.869 608.351 null] +121 0 obj +[203 0 R /XYZ 106.869 608.351 null] endobj -176 0 obj +174 0 obj << -/D [208 0 R /XYZ 106.869 459.964 null] +/D [204 0 R /XYZ 106.869 459.964 null] >> endobj -177 0 obj -[215 0 R /XYZ 106.869 459.964 null] +175 0 obj +[211 0 R /XYZ 106.869 459.964 null] endobj -219 0 obj +215 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj -231 0 obj +227 0 obj << -/Length 646 +/Length 724 >> stream /opacity1 gs @@ -928,17 +938,22 @@ BT /F45 9.9626 Tf 160.667 686.127 Td [(8)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 206.759 0 Td [(CHAPTER)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 53.536 0 Td [(2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 15.493 0 Td [(SWISS)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 33.755 0 Td [(BEARS)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 160.667 658.164 Td [(2.1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 196.604 658.164 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 196.604 658.164 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F56 14.3462 Tf 48.48 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 160.667 636.346 Td [(Switzerland)]TJ ET @@ -947,41 +962,41 @@ EMC EMC endstream endobj -227 0 obj +223 0 obj << /Type /Page -/Contents 231 0 R -/Resources 230 0 R +/Contents 227 0 R +/Resources 226 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 7 -/Parent 223 0 R +/Parent 219 0 R >> endobj -232 0 obj +228 0 obj << -/D [227 0 R /XYZ 159.667 699.082 null] +/D [223 0 R /XYZ 159.667 699.082 null] >> endobj -233 0 obj -[224 0 R /XYZ 159.667 699.082 null] +229 0 obj +[220 0 R /XYZ 159.667 699.082 null] endobj -123 0 obj +122 0 obj << -/D [227 0 R /XYZ 160.667 676.097 null] +/D [223 0 R /XYZ 160.667 676.097 null] >> endobj -124 0 obj -[226 0 R /XYZ 160.667 676.097 null] +123 0 obj +[221 0 R /XYZ 160.667 676.097 null] endobj -230 0 obj +226 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R /F56 234 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R /F56 230 0 R >> >> endobj -250 0 obj +246 0 obj << -/Length 1213 +/Length 1453 >> stream /opacity1 gs @@ -990,42 +1005,57 @@ BT /F54 9.9626 Tf 106.869 686.127 Td [(2.2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 23.241 0 Td [(HOBBIES)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 315.49 0 Td [(9)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 106.869 658.164 Td [(2.2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 142.806 658.164 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 142.806 658.164 Td [(Hobbies)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 106.869 634.353 Td [(2.2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 147.955 634.353 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 147.955 634.353 Td [(Music)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 39.722 0 Td [(instrumen)31(t)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 615.966 Td [(Albhorn)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 106.869 588.08 Td [(2.2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 147.955 588.08 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 147.955 588.08 Td [(Bo)-31(oks)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 569.693 Td [(Oh,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 19.367 0 Td [(wie)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.707 0 Td [(sc)28(h\366n)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.446 0 Td [(ist)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 13.889 0 Td [(P)28(anama)]TJ ET @@ -1034,55 +1064,55 @@ EMC EMC endstream endobj -238 0 obj +234 0 obj << /Type /Page -/Contents 250 0 R -/Resources 249 0 R +/Contents 246 0 R +/Resources 245 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 8 -/Parent 223 0 R +/Parent 219 0 R >> endobj -251 0 obj +247 0 obj << -/D [238 0 R /XYZ 105.869 699.082 null] +/D [234 0 R /XYZ 105.869 699.082 null] >> endobj -252 0 obj -[244 0 R /XYZ 105.869 699.082 null] +248 0 obj +[240 0 R /XYZ 105.869 699.082 null] endobj -125 0 obj +124 0 obj << -/D [238 0 R /XYZ 106.869 676.097 null] +/D [234 0 R /XYZ 106.869 676.097 null] >> endobj -126 0 obj -[237 0 R /XYZ 106.869 676.097 null] +125 0 obj +[232 0 R /XYZ 106.869 676.097 null] endobj -127 0 obj +126 0 obj << -/D [238 0 R /XYZ 106.869 648.301 null] +/D [234 0 R /XYZ 106.869 648.301 null] >> endobj -128 0 obj -[241 0 R /XYZ 106.869 648.301 null] +127 0 obj +[236 0 R /XYZ 106.869 648.301 null] endobj -129 0 obj +128 0 obj << -/D [238 0 R /XYZ 106.869 602.028 null] +/D [234 0 R /XYZ 106.869 602.028 null] >> endobj -130 0 obj -[246 0 R /XYZ 106.869 602.028 null] +129 0 obj +[241 0 R /XYZ 106.869 602.028 null] endobj -249 0 obj +245 0 obj << /ExtGState 1 0 R -/Font << /F54 146 0 R /F53 114 0 R /F45 115 0 R /F56 234 0 R /F50 113 0 R >> +/Font << /F54 145 0 R /F53 113 0 R /F45 114 0 R /F56 230 0 R /F50 112 0 R >> >> endobj -255 0 obj +251 0 obj << /Length 326 >> @@ -1097,69 +1127,74 @@ EMC EMC endstream endobj -254 0 obj +250 0 obj << /Type /Page -/Contents 255 0 R -/Resources 253 0 R +/Contents 251 0 R +/Resources 249 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 9 -/Parent 223 0 R +/Parent 219 0 R >> endobj -256 0 obj +252 0 obj << -/D [254 0 R /XYZ 159.667 699.082 null] +/D [250 0 R /XYZ 159.667 699.082 null] >> endobj -257 0 obj -[244 0 R /XYZ 159.667 699.082 null] -endobj 253 0 obj +[240 0 R /XYZ 159.667 699.082 null] +endobj +249 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -267 0 obj -<< /Type/OBJR/Obj 266 0 R/Pg 261 0 R >> +262 0 obj +<< /Type/OBJR/Obj 261 0 R/Pg 256 0 R >> endobj -273 0 obj +268 0 obj << -/Length 1193 +/Length 1257 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(3)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 192.617 583.445 Td [(3)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 83.024 0 Td [(b)-29(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.204 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 207.689 481.826 Td [(3.1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 202.958 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(3.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 254.308 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.817 0 Td [(b)-28(ear)]TJ ET @@ -1171,57 +1206,57 @@ ET EMC endstream endobj -261 0 obj +256 0 obj << /Type /Page -/Contents 273 0 R -/Resources 272 0 R +/Contents 268 0 R +/Resources 267 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 10 -/Parent 223 0 R -/Annots [ 266 0 R ] +/Parent 219 0 R +/Annots [ 261 0 R ] >> endobj -266 0 obj +261 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 33 /Rect [206.692 478.893 221.412 489.683] -/A << /S /GoTo /D (figure.struct.118) /SD 179 0 R >> +/A << /S /GoTo /D (figure.struct.113) /SD 177 0 R >> >> endobj -274 0 obj +269 0 obj << -/D [261 0 R /XYZ 105.869 699.082 null] +/D [256 0 R /XYZ 105.869 699.082 null] >> endobj -275 0 obj -[258 0 R /XYZ 105.869 699.082 null] +270 0 obj +[254 0 R /XYZ 105.869 699.082 null] endobj -131 0 obj +130 0 obj << -/D [261 0 R /XYZ 106.869 608.351 null] +/D [256 0 R /XYZ 106.869 608.351 null] >> endobj -132 0 obj -[259 0 R /XYZ 106.869 608.351 null] +131 0 obj +[255 0 R /XYZ 106.869 608.351 null] endobj -178 0 obj +176 0 obj << -/D [261 0 R /XYZ 106.869 459.964 null] +/D [256 0 R /XYZ 106.869 459.964 null] >> endobj -179 0 obj -[268 0 R /XYZ 106.869 459.964 null] +177 0 obj +[263 0 R /XYZ 106.869 459.964 null] endobj -272 0 obj +267 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj -278 0 obj +273 0 obj << /Length 328 >> @@ -1236,49 +1271,54 @@ EMC EMC endstream endobj -277 0 obj +272 0 obj << /Type /Page -/Contents 278 0 R -/Resources 276 0 R +/Contents 273 0 R +/Resources 271 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 11 -/Parent 223 0 R +/Parent 219 0 R >> endobj -279 0 obj +274 0 obj << -/D [277 0 R /XYZ 159.667 699.082 null] +/D [272 0 R /XYZ 159.667 699.082 null] >> endobj -280 0 obj -[258 0 R /XYZ 159.667 699.082 null] +275 0 obj +[254 0 R /XYZ 159.667 699.082 null] endobj -276 0 obj +271 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -289 0 obj +283 0 obj << -/Length 529 +/Length 593 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(4)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(4)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Mask)29(ed)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 95.581 0 Td [(b)-29(ear)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -1290,39 +1330,39 @@ ET EMC endstream endobj -284 0 obj +278 0 obj << /Type /Page -/Contents 289 0 R -/Resources 288 0 R +/Contents 283 0 R +/Resources 282 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 12 -/Parent 292 0 R +/Parent 286 0 R >> endobj -290 0 obj +284 0 obj << -/D [284 0 R /XYZ 105.869 699.082 null] +/D [278 0 R /XYZ 105.869 699.082 null] >> endobj -291 0 obj +285 0 obj [22 0 R /XYZ 105.869 699.082 null] endobj -133 0 obj +132 0 obj << -/D [284 0 R /XYZ 106.869 608.351 null] +/D [278 0 R /XYZ 106.869 608.351 null] >> endobj -134 0 obj -[282 0 R /XYZ 106.869 608.351 null] +133 0 obj +[277 0 R /XYZ 106.869 608.351 null] endobj -288 0 obj +282 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj -295 0 obj +289 0 obj << /Length 326 >> @@ -1337,69 +1377,74 @@ EMC EMC endstream endobj -294 0 obj +288 0 obj << /Type /Page -/Contents 295 0 R -/Resources 293 0 R +/Contents 289 0 R +/Resources 287 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 13 -/Parent 292 0 R +/Parent 286 0 R >> endobj -296 0 obj +290 0 obj << -/D [294 0 R /XYZ 159.667 699.082 null] +/D [288 0 R /XYZ 159.667 699.082 null] >> endobj -297 0 obj +291 0 obj [22 0 R /XYZ 159.667 699.082 null] endobj -293 0 obj +287 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -308 0 obj -<< /Type/OBJR/Obj 307 0 R/Pg 302 0 R >> +301 0 obj +<< /Type/OBJR/Obj 300 0 R/Pg 295 0 R >> endobj -314 0 obj +307 0 obj << -/Length 1250 +/Length 1314 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(5)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 192.617 583.445 Td [(5)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 103.915 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ ET EMC -/Link <> BDC +/Link <> BDC BT /F45 9.9626 Tf 260.09 481.826 Td [(5.1)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 218.189 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(5.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 269.539 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(duc)28(k)]TJ ET @@ -1411,65 +1456,65 @@ ET EMC endstream endobj -302 0 obj +295 0 obj << /Type /Page -/Contents 314 0 R -/Resources 313 0 R +/Contents 307 0 R +/Resources 306 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 14 -/Parent 292 0 R -/Annots [ 307 0 R ] +/Parent 286 0 R +/Annots [ 300 0 R ] >> endobj -307 0 obj +300 0 obj << /Type /Annot /Subtype /Link /Border [0 0 1] /H /I /C [0.701176 0.4 0.414118] /StructParent 34 /Rect [259.094 478.893 273.814 489.683] -/A << /S /GoTo /D (figure.struct.136) /SD 181 0 R >> +/A << /S /GoTo /D (figure.struct.129) /SD 179 0 R >> >> endobj -315 0 obj +308 0 obj << -/D [302 0 R /XYZ 105.869 699.082 null] +/D [295 0 R /XYZ 105.869 699.082 null] >> endobj -316 0 obj -[299 0 R /XYZ 105.869 699.082 null] +309 0 obj +[293 0 R /XYZ 105.869 699.082 null] endobj -135 0 obj +134 0 obj << -/D [302 0 R /XYZ 106.869 668.127 null] +/D [295 0 R /XYZ 106.869 668.127 null] >> endobj -136 0 obj -[298 0 R /XYZ 106.869 668.127 null] +135 0 obj +[292 0 R /XYZ 106.869 668.127 null] endobj -137 0 obj +136 0 obj << -/D [302 0 R /XYZ 106.869 608.351 null] +/D [295 0 R /XYZ 106.869 608.351 null] >> endobj -138 0 obj -[300 0 R /XYZ 106.869 608.351 null] +137 0 obj +[294 0 R /XYZ 106.869 608.351 null] endobj -180 0 obj +178 0 obj << -/D [302 0 R /XYZ 106.869 459.964 null] +/D [295 0 R /XYZ 106.869 459.964 null] >> endobj -181 0 obj -[309 0 R /XYZ 106.869 459.964 null] +179 0 obj +[302 0 R /XYZ 106.869 459.964 null] endobj -313 0 obj +306 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj -319 0 obj +312 0 obj << /Length 327 >> @@ -1484,31 +1529,31 @@ EMC EMC endstream endobj -318 0 obj +311 0 obj << /Type /Page -/Contents 319 0 R -/Resources 317 0 R +/Contents 312 0 R +/Resources 310 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 15 -/Parent 292 0 R +/Parent 286 0 R >> endobj -320 0 obj +313 0 obj << -/D [318 0 R /XYZ 159.667 699.082 null] +/D [311 0 R /XYZ 159.667 699.082 null] >> endobj -321 0 obj -[299 0 R /XYZ 159.667 699.082 null] +314 0 obj +[293 0 R /XYZ 159.667 699.082 null] endobj -317 0 obj +310 0 obj << /ExtGState 1 0 R -/Font << /F45 115 0 R /F53 114 0 R /F54 146 0 R >> +/Font << /F45 114 0 R /F53 113 0 R /F54 145 0 R >> >> endobj -329 0 obj +321 0 obj << /Type /Metadata /Subtype /XML /Length 12096 @@ -1751,25 +1796,30 @@ stream endstream endobj -331 0 obj +323 0 obj << -/Length 527 +/Length 591 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(6)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(6)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Witc)29(h)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 77.978 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1781,36 +1831,36 @@ ET EMC endstream endobj -325 0 obj +317 0 obj << /Type /Page -/Contents 331 0 R -/Resources 330 0 R +/Contents 323 0 R +/Resources 322 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 16 -/Parent 292 0 R +/Parent 286 0 R >> endobj -332 0 obj +324 0 obj << -/D [325 0 R /XYZ 105.869 699.082 null] +/D [317 0 R /XYZ 105.869 699.082 null] >> endobj -333 0 obj +325 0 obj [22 0 R /XYZ 105.869 699.082 null] endobj -139 0 obj +138 0 obj << -/D [325 0 R /XYZ 106.869 608.351 null] +/D [317 0 R /XYZ 106.869 608.351 null] >> endobj -140 0 obj -[323 0 R /XYZ 106.869 608.351 null] +139 0 obj +[316 0 R /XYZ 106.869 608.351 null] endobj -330 0 obj +322 0 obj << /ExtGState 1 0 R -/Font << /F47 199 0 R /F53 114 0 R /F48 111 0 R /F45 115 0 R >> +/Font << /F47 196 0 R /F53 113 0 R /F48 110 0 R /F45 114 0 R >> >> endobj 1 0 obj @@ -1825,137 +1875,136 @@ endobj 4 0 obj << >> endobj -334 0 obj +326 0 obj << /Marked true >> endobj -335 0 obj -<< /S /GoTo /D (chapter.1) /SD 118 0 R >> +327 0 obj +<< /S /GoTo /D (chapter.1) /SD 117 0 R >> endobj -337 0 obj +329 0 obj (\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n) endobj -338 0 obj -<< /S /GoTo /D (part.1) /SD 120 0 R >> +330 0 obj +<< /S /GoTo /D (part.1) /SD 119 0 R >> endobj -340 0 obj +332 0 obj (\376\377\000B\000e\000a\000r\000s) endobj -341 0 obj -<< /S /GoTo /D (chapter.2) /SD 122 0 R >> +333 0 obj +<< /S /GoTo /D (chapter.2) /SD 121 0 R >> endobj -343 0 obj +335 0 obj (\376\377\000S\000w\000i\000s\000s\000\040\000B\000e\000a\000r\000s) endobj -344 0 obj -<< /S /GoTo /D (section.2.1) /SD 124 0 R >> +336 0 obj +<< /S /GoTo /D (section.2.1) /SD 123 0 R >> endobj -346 0 obj +338 0 obj (\376\377\000L\000i\000v\000i\000n\000g\000\040\000g\000r\000o\000u\000n\000d) endobj -347 0 obj -<< /S /GoTo /D (section.2.2) /SD 126 0 R >> +339 0 obj +<< /S /GoTo /D (section.2.2) /SD 125 0 R >> endobj -349 0 obj +341 0 obj (\376\377\000H\000o\000b\000b\000i\000e\000s) endobj -350 0 obj -<< /S /GoTo /D (subsection.2.2.1) /SD 128 0 R >> +342 0 obj +<< /S /GoTo /D (subsection.2.2.1) /SD 127 0 R >> endobj -352 0 obj +344 0 obj (\376\377\000M\000u\000s\000i\000c\000\040\000i\000n\000s\000t\000r\000u\000m\000e\000n\000t) endobj -353 0 obj -<< /S /GoTo /D (subsection.2.2.2) /SD 130 0 R >> +345 0 obj +<< /S /GoTo /D (subsection.2.2.2) /SD 129 0 R >> endobj -355 0 obj +347 0 obj (\376\377\000B\000o\000o\000k\000s) endobj -356 0 obj -<< /S /GoTo /D (chapter.3) /SD 132 0 R >> +348 0 obj +<< /S /GoTo /D (chapter.3) /SD 131 0 R >> endobj -358 0 obj +350 0 obj (\376\377\000I\000t\000a\000l\000i\000a\000n\000\040\000b\000e\000a\000r\000s) endobj -359 0 obj -<< /S /GoTo /D (chapter.4) /SD 134 0 R >> +351 0 obj +<< /S /GoTo /D (chapter.4) /SD 133 0 R >> endobj -361 0 obj +353 0 obj (\376\377\000M\000a\000s\000k\000e\000d\000\040\000b\000e\000a\000r) endobj -362 0 obj -<< /S /GoTo /D (part.2) /SD 136 0 R >> +354 0 obj +<< /S /GoTo /D (part.2) /SD 135 0 R >> endobj -364 0 obj +356 0 obj (\376\377\000D\000u\000c\000k\000s) endobj -365 0 obj -<< /S /GoTo /D (chapter.5) /SD 138 0 R >> +357 0 obj +<< /S /GoTo /D (chapter.5) /SD 137 0 R >> endobj -367 0 obj +359 0 obj (\376\377\000H\000u\000g\000g\000i\000n\000g\000\040\000d\000u\000c\000k) endobj -368 0 obj -<< /S /GoTo /D (chapter.6) /SD 140 0 R >> +360 0 obj +<< /S /GoTo /D (chapter.6) /SD 139 0 R >> endobj -370 0 obj +362 0 obj (\376\377\000W\000i\000t\000c\000h\000\040\000d\000u\000c\000k) endobj 6 0 obj -<< /Nums [0 [ 27 0 R 30 0 R 31 0 R 33 0 R 31 0 R 30 0 R 30 0 R 36 0 R 37 0 R 36 0 R 36 0 R 42 0 R 43 0 R 45 0 R 43 0 R 42 0 R 42 0 R 49 0 R 50 0 R 52 0 R 50 0 R 49 0 R 49 0 R 55 0 R 56 0 R 58 0 R 56 0 R 55 0 R 55 0 R 62 0 R 63 0 R 65 0 R 63 0 R 62 0 R 62 0 R 68 0 R 69 0 R 71 0 R 69 0 R 68 0 R 68 0 R 74 0 R 75 0 R 77 0 R 75 0 R 74 0 R 74 0 R 80 0 R 81 0 R 83 0 R 81 0 R 80 0 R 80 0 R 86 0 R 87 0 R 86 0 R 86 0 R 92 0 R 93 0 R 95 0 R 93 0 R 92 0 R 92 0 R 98 0 R 99 0 R 101 0 R 99 0 R 98 0 R 98 0 R ] +<< /Nums [0 [ 26 0 R 29 0 R 30 0 R 32 0 R 30 0 R 29 0 R 29 0 R 35 0 R 36 0 R 35 0 R 35 0 R 41 0 R 42 0 R 44 0 R 42 0 R 41 0 R 41 0 R 48 0 R 49 0 R 51 0 R 49 0 R 48 0 R 48 0 R 54 0 R 55 0 R 57 0 R 55 0 R 54 0 R 54 0 R 61 0 R 62 0 R 64 0 R 62 0 R 61 0 R 61 0 R 67 0 R 68 0 R 70 0 R 68 0 R 67 0 R 67 0 R 73 0 R 74 0 R 76 0 R 74 0 R 73 0 R 73 0 R 79 0 R 80 0 R 82 0 R 80 0 R 79 0 R 79 0 R 85 0 R 86 0 R 85 0 R 85 0 R 91 0 R 92 0 R 94 0 R 92 0 R 91 0 R 91 0 R 97 0 R 98 0 R 100 0 R 98 0 R 97 0 R 97 0 R ] 1 [ ] -2 [ 149 0 R 153 0 R 154 0 R 156 0 R 154 0 R 153 0 R 153 0 R 159 0 R 160 0 R 162 0 R 160 0 R 159 0 R 159 0 R 165 0 R 166 0 R 168 0 R 166 0 R 165 0 R 165 0 R ] +2 [ 147 0 R 151 0 R 152 0 R 154 0 R 152 0 R 151 0 R 151 0 R 157 0 R 158 0 R 160 0 R 158 0 R 157 0 R 157 0 R 163 0 R 164 0 R 166 0 R 164 0 R 163 0 R 163 0 R ] 3 [ ] -4 [ 189 0 R 191 0 R 193 0 R ] +4 [ 186 0 R 188 0 R 186 0 R 190 0 R ] 5 [ ] -6 [ 207 0 R 209 0 R 211 0 R 212 0 R 211 0 R 217 0 R 218 0 R ] -7 [ 226 0 R 225 0 R 229 0 R ] -8 [ 237 0 R 236 0 R 241 0 R 240 0 R 243 0 R 246 0 R 245 0 R 248 0 R ] +6 [ 203 0 R 205 0 R 203 0 R 207 0 R 208 0 R 207 0 R 213 0 R 214 0 R ] +7 [ 222 0 R 221 0 R 221 0 R 225 0 R ] +8 [ 233 0 R 232 0 R 232 0 R 237 0 R 236 0 R 236 0 R 239 0 R 242 0 R 241 0 R 241 0 R 244 0 R ] 9 [ ] -10 [ 260 0 R 262 0 R 264 0 R 265 0 R 264 0 R 270 0 R 271 0 R ] +10 [ 255 0 R 257 0 R 255 0 R 259 0 R 260 0 R 259 0 R 265 0 R 266 0 R ] 11 [ ] -12 [ 283 0 R 285 0 R 287 0 R ] +12 [ 277 0 R 279 0 R 277 0 R 281 0 R ] 13 [ ] -14 [ 301 0 R 303 0 R 305 0 R 306 0 R 305 0 R 311 0 R 312 0 R ] +14 [ 294 0 R 296 0 R 294 0 R 298 0 R 299 0 R 298 0 R 304 0 R 305 0 R ] 15 [ ] -16 [ 324 0 R 326 0 R 328 0 R ] -17 31 0 R -18 37 0 R -19 43 0 R -20 50 0 R -21 56 0 R -22 63 0 R -23 69 0 R -24 75 0 R -25 81 0 R -26 87 0 R -27 93 0 R -28 99 0 R -29 154 0 R -30 160 0 R -31 166 0 R -32 212 0 R -33 265 0 R -34 306 0 R +16 [ 316 0 R 318 0 R 316 0 R 320 0 R ] +17 30 0 R +18 36 0 R +19 42 0 R +20 49 0 R +21 55 0 R +22 62 0 R +23 68 0 R +24 74 0 R +25 80 0 R +26 86 0 R +27 92 0 R +28 98 0 R +29 152 0 R +30 158 0 R +31 164 0 R +32 208 0 R +33 260 0 R +34 299 0 R ] >> endobj -371 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 33 0 R (ID.0013) 35 0 R (ID.0014) 36 0 R (ID.0015) 37 0 R (ID.0016) 40 0 R (ID.0017) 41 0 R (ID.0018) 42 0 R (ID.0019) 43 0 R (ID.0020) 45 0 R (ID.0021) 47 0 R (ID.0022) 48 0 R (ID.0023) 49 0 R (ID.0024) 50 0 R (ID.0025) 52 0 R (ID.0026) 54 0 R (ID.0027) 55 0 R (ID.0028) 56 0 R (ID.0029) 58 0 R (ID.0030) 60 0 R (ID.0031) 61 0 R (ID.0032) 62 0 R (ID.0033) 63 0 R (ID.0034) 65 0 R (ID.0035) 67 0 R (ID.0036) 68 0 R (ID.0037) 69 0 R (ID.0038) 71 0 R (ID.0039) 73 0 R (ID.0040) 74 0 R (ID.0041) 75 0 R (ID.0042) 77 0 R (ID.0043) 79 0 R (ID.0044) 80 0 R (ID.0045) 81 0 R (ID.0046) 83 0 R (ID.0047) 85 0 R (ID.0048) 86 0 R (ID.0049) 87 0 R (ID.0050) 90 0 R (ID.0051) 91 0 R ] >> +363 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 22 0 R (ID.0003) 23 0 R (ID.0004) 24 0 R (ID.0005) 25 0 R (ID.0006) 26 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 32 0 R (ID.0012) 34 0 R (ID.0013) 35 0 R (ID.0014) 36 0 R (ID.0015) 39 0 R (ID.0016) 40 0 R (ID.0017) 41 0 R (ID.0018) 42 0 R (ID.0019) 44 0 R (ID.0020) 46 0 R (ID.0021) 47 0 R (ID.0022) 48 0 R (ID.0023) 49 0 R (ID.0024) 51 0 R (ID.0025) 53 0 R (ID.0026) 54 0 R (ID.0027) 55 0 R (ID.0028) 57 0 R (ID.0029) 59 0 R (ID.0030) 60 0 R (ID.0031) 61 0 R (ID.0032) 62 0 R (ID.0033) 64 0 R (ID.0034) 66 0 R (ID.0035) 67 0 R (ID.0036) 68 0 R (ID.0037) 70 0 R (ID.0038) 72 0 R (ID.0039) 73 0 R (ID.0040) 74 0 R (ID.0041) 76 0 R (ID.0042) 78 0 R (ID.0043) 79 0 R (ID.0044) 80 0 R (ID.0045) 82 0 R (ID.0046) 84 0 R (ID.0047) 85 0 R (ID.0048) 86 0 R (ID.0049) 89 0 R (ID.0050) 90 0 R (ID.0051) 91 0 R ] >> endobj -372 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 92 0 R (ID.0053) 93 0 R (ID.0054) 95 0 R (ID.0055) 97 0 R (ID.0056) 98 0 R (ID.0057) 99 0 R (ID.0058) 101 0 R (ID.0059) 147 0 R (ID.0060) 148 0 R (ID.0061) 149 0 R (ID.0062) 151 0 R (ID.0063) 152 0 R (ID.0064) 153 0 R (ID.0065) 154 0 R (ID.0066) 156 0 R (ID.0067) 158 0 R (ID.0068) 159 0 R (ID.0069) 160 0 R (ID.0070) 162 0 R (ID.0071) 164 0 R (ID.0072) 165 0 R (ID.0073) 166 0 R (ID.0074) 168 0 R (ID.0075) 187 0 R (ID.0076) 188 0 R (ID.0077) 189 0 R (ID.0078) 191 0 R (ID.0079) 192 0 R (ID.0080) 193 0 R (ID.0081) 194 0 R (ID.0082) 205 0 R (ID.0083) 206 0 R (ID.0084) 207 0 R (ID.0085) 209 0 R (ID.0086) 210 0 R (ID.0087) 211 0 R (ID.0088) 212 0 R (ID.0089) 215 0 R (ID.0090) 216 0 R (ID.0091) 217 0 R (ID.0092) 218 0 R (ID.0093) 224 0 R (ID.0094) 225 0 R (ID.0095) 226 0 R (ID.0096) 228 0 R (ID.0097) 229 0 R (ID.0098) 235 0 R (ID.0099) 236 0 R (ID.0100) 237 0 R (ID.0101) 239 0 R ] >> +364 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 92 0 R (ID.0053) 94 0 R (ID.0054) 96 0 R (ID.0055) 97 0 R (ID.0056) 98 0 R (ID.0057) 100 0 R (ID.0058) 146 0 R (ID.0059) 147 0 R (ID.0060) 149 0 R (ID.0061) 150 0 R (ID.0062) 151 0 R (ID.0063) 152 0 R (ID.0064) 154 0 R (ID.0065) 156 0 R (ID.0066) 157 0 R (ID.0067) 158 0 R (ID.0068) 160 0 R (ID.0069) 162 0 R (ID.0070) 163 0 R (ID.0071) 164 0 R (ID.0072) 166 0 R (ID.0073) 185 0 R (ID.0074) 186 0 R (ID.0075) 188 0 R (ID.0076) 189 0 R (ID.0077) 190 0 R (ID.0078) 191 0 R (ID.0079) 202 0 R (ID.0080) 203 0 R (ID.0081) 205 0 R (ID.0082) 206 0 R (ID.0083) 207 0 R (ID.0084) 208 0 R (ID.0085) 211 0 R (ID.0086) 212 0 R (ID.0087) 213 0 R (ID.0088) 214 0 R (ID.0089) 220 0 R (ID.0090) 221 0 R (ID.0091) 222 0 R (ID.0092) 224 0 R (ID.0093) 225 0 R (ID.0094) 231 0 R (ID.0095) 232 0 R (ID.0096) 233 0 R (ID.0097) 235 0 R (ID.0098) 236 0 R (ID.0099) 237 0 R (ID.0100) 238 0 R (ID.0101) 239 0 R ] >> endobj -373 0 obj -<< /Limits [(ID.0102) (ID.0145)]/Names [(ID.0102) 240 0 R (ID.0103) 241 0 R (ID.0104) 242 0 R (ID.0105) 243 0 R (ID.0106) 244 0 R (ID.0107) 245 0 R (ID.0108) 246 0 R (ID.0109) 247 0 R (ID.0110) 248 0 R (ID.0111) 258 0 R (ID.0112) 259 0 R (ID.0113) 260 0 R (ID.0114) 262 0 R (ID.0115) 263 0 R (ID.0116) 264 0 R (ID.0117) 265 0 R (ID.0118) 268 0 R (ID.0119) 269 0 R (ID.0120) 270 0 R (ID.0121) 271 0 R (ID.0122) 281 0 R (ID.0123) 282 0 R (ID.0124) 283 0 R (ID.0125) 285 0 R (ID.0126) 286 0 R (ID.0127) 287 0 R (ID.0128) 298 0 R (ID.0129) 299 0 R (ID.0130) 300 0 R (ID.0131) 301 0 R (ID.0132) 303 0 R (ID.0133) 304 0 R (ID.0134) 305 0 R (ID.0135) 306 0 R (ID.0136) 309 0 R (ID.0137) 310 0 R (ID.0138) 311 0 R (ID.0139) 312 0 R (ID.0140) 322 0 R (ID.0141) 323 0 R (ID.0142) 324 0 R (ID.0143) 326 0 R (ID.0144) 327 0 R (ID.0145) 328 0 R ] >> +365 0 obj +<< /Limits [(ID.0102) (ID.0137)]/Names [(ID.0102) 240 0 R (ID.0103) 241 0 R (ID.0104) 242 0 R (ID.0105) 243 0 R (ID.0106) 244 0 R (ID.0107) 254 0 R (ID.0108) 255 0 R (ID.0109) 257 0 R (ID.0110) 258 0 R (ID.0111) 259 0 R (ID.0112) 260 0 R (ID.0113) 263 0 R (ID.0114) 264 0 R (ID.0115) 265 0 R (ID.0116) 266 0 R (ID.0117) 276 0 R (ID.0118) 277 0 R (ID.0119) 279 0 R (ID.0120) 280 0 R (ID.0121) 281 0 R (ID.0122) 292 0 R (ID.0123) 293 0 R (ID.0124) 294 0 R (ID.0125) 296 0 R (ID.0126) 297 0 R (ID.0127) 298 0 R (ID.0128) 299 0 R (ID.0129) 302 0 R (ID.0130) 303 0 R (ID.0131) 304 0 R (ID.0132) 305 0 R (ID.0133) 315 0 R (ID.0134) 316 0 R (ID.0135) 318 0 R (ID.0136) 319 0 R (ID.0137) 320 0 R ] >> endobj -374 0 obj -<< /Kids [371 0 R 372 0 R 373 0 R] >> +366 0 obj +<< /Kids [363 0 R 364 0 R 365 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -375 0 obj -<< /raggedright <> -/justify <> +367 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1971,7 +2020,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1989,465 +2038,441 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 22 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 147 0 R 187 0 R 194 0 R 298 0 R 23 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 146 0 R 185 0 R 191 0 R 292 0 R 23 0 R] /ID (ID.0002) >> endobj 23 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 22 0 R /K [215 0 R 268 0 R 309 0 R] /ID (ID.0003) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 22 0 R /K [211 0 R 263 0 R 302 0 R] /ID (ID.0003) >> endobj 24 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 22 0 R /ID (ID.0004) >> endobj 25 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [26 0 R 28 0 R] /ID (ID.0005) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [26 0 R 27 0 R] /ID (ID.0005) >> endobj 26 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K 27 0 R /ID (ID.0006) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K <> /ID (ID.0006) >> endobj 27 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 26 0 R /K <> /ID (ID.0007) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 34 0 R 39 0 R 84 0 R 89 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [29 0 R 35 0 R 40 0 R 85 0 R 90 0 R] /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 186 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 188 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.0009) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [<> 31 0 R <> <>] /ID (ID.0010) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 29 0 R /K [<> 32 0 R <> 33 0 R] /ID (ID.0010) >> endobj -31 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 30 0 R /K [<> 33 0 R <> 34 0 R] /ID (ID.0011) >> +32 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 30 0 R /K <> /ID (ID.0011) >> endobj -33 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 31 0 R /K <> /ID (ID.0012) >> +34 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 191 0 R ] /K 35 0 R /ID (ID.0012) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 194 0 R ] /K 36 0 R /ID (ID.0013) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [<> 36 0 R <> <>] /ID (ID.0013) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [<> 37 0 R <> <>] /ID (ID.0014) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 35 0 R /K [<> 38 0 R] /ID (ID.0014) >> endobj -37 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 36 0 R /K [<> 39 0 R] /ID (ID.0015) >> +39 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [40 0 R 46 0 R 72 0 R 78 0 R] /ID (ID.0015) >> endobj 40 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [41 0 R 47 0 R 73 0 R 79 0 R] /ID (ID.0016) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 203 0 R ] /K 41 0 R /ID (ID.0016) >> endobj 41 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 40 0 R /Ref [ 206 0 R ] /K 42 0 R /ID (ID.0017) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 40 0 R /K [<> 42 0 R <> <>] /ID (ID.0017) >> endobj 42 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [<> 43 0 R <> <>] /ID (ID.0018) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 41 0 R /K [<> 44 0 R <> 45 0 R] /ID (ID.0018) >> endobj -43 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 42 0 R /K [<> 45 0 R <> 46 0 R] /ID (ID.0019) >> +44 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0019) >> endobj -45 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 43 0 R /K <> /ID (ID.0020) >> +46 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 39 0 R /K [47 0 R 53 0 R 59 0 R] /ID (ID.0020) >> endobj 47 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 40 0 R /K [48 0 R 54 0 R 60 0 R] /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 221 0 R ] /K 48 0 R /ID (ID.0021) >> endobj 48 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 47 0 R /Ref [ 226 0 R ] /K 49 0 R /ID (ID.0022) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 47 0 R /K [<> 49 0 R <> <>] /ID (ID.0022) >> endobj 49 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 48 0 R /K [<> 50 0 R <> <>] /ID (ID.0023) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 48 0 R /K [<> 51 0 R <> 52 0 R] /ID (ID.0023) >> endobj -50 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 49 0 R /K [<> 52 0 R <> 53 0 R] /ID (ID.0024) >> +51 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0024) >> endobj -52 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 50 0 R /K <> /ID (ID.0025) >> +53 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 46 0 R /Ref [ 232 0 R ] /K 54 0 R /ID (ID.0025) >> endobj 54 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 47 0 R /Ref [ 237 0 R ] /K 55 0 R /ID (ID.0026) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 53 0 R /K [<> 55 0 R <> <>] /ID (ID.0026) >> endobj 55 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 54 0 R /K [<> 56 0 R <> <>] /ID (ID.0027) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 54 0 R /K [<> 57 0 R <> 58 0 R] /ID (ID.0027) >> endobj -56 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 55 0 R /K [<> 58 0 R <> 59 0 R] /ID (ID.0028) >> +57 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0028) >> endobj -58 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 56 0 R /K <> /ID (ID.0029) >> +59 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 46 0 R /K [60 0 R 66 0 R] /ID (ID.0029) >> endobj 60 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 47 0 R /K [61 0 R 67 0 R] /ID (ID.0030) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 236 0 R ] /K 61 0 R /ID (ID.0030) >> endobj 61 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 241 0 R ] /K 62 0 R /ID (ID.0031) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [<> 62 0 R <> <>] /ID (ID.0031) >> endobj 62 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [<> 63 0 R <> <>] /ID (ID.0032) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 61 0 R /K [<> 64 0 R <> 65 0 R] /ID (ID.0032) >> endobj -63 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 62 0 R /K [<> 65 0 R <> 66 0 R] /ID (ID.0033) >> +64 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 62 0 R /K <> /ID (ID.0033) >> endobj -65 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 63 0 R /K <> /ID (ID.0034) >> +66 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 241 0 R ] /K 67 0 R /ID (ID.0034) >> endobj 67 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 246 0 R ] /K 68 0 R /ID (ID.0035) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 66 0 R /K [<> 68 0 R <> <>] /ID (ID.0035) >> endobj 68 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 67 0 R /K [<> 69 0 R <> <>] /ID (ID.0036) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 67 0 R /K [<> 70 0 R <> 71 0 R] /ID (ID.0036) >> endobj -69 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 68 0 R /K [<> 71 0 R <> 72 0 R] /ID (ID.0037) >> +70 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 68 0 R /K <> /ID (ID.0037) >> endobj -71 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 69 0 R /K <> /ID (ID.0038) >> +72 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 255 0 R ] /K 73 0 R /ID (ID.0038) >> endobj 73 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 40 0 R /Ref [ 259 0 R ] /K 74 0 R /ID (ID.0039) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 72 0 R /K [<> 74 0 R <> <>] /ID (ID.0039) >> endobj 74 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 73 0 R /K [<> 75 0 R <> <>] /ID (ID.0040) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 73 0 R /K [<> 76 0 R <> 77 0 R] /ID (ID.0040) >> endobj -75 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 74 0 R /K [<> 77 0 R <> 78 0 R] /ID (ID.0041) >> +76 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 74 0 R /K <> /ID (ID.0041) >> endobj -77 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 75 0 R /K <> /ID (ID.0042) >> +78 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 39 0 R /Ref [ 277 0 R ] /K 79 0 R /ID (ID.0042) >> endobj 79 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 40 0 R /Ref [ 282 0 R ] /K 80 0 R /ID (ID.0043) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 78 0 R /K [<> 80 0 R <> <>] /ID (ID.0043) >> endobj 80 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 79 0 R /K [<> 81 0 R <> <>] /ID (ID.0044) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 79 0 R /K [<> 82 0 R <> 83 0 R] /ID (ID.0044) >> endobj -81 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 80 0 R /K [<> 83 0 R <> 84 0 R] /ID (ID.0045) >> +82 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 80 0 R /K <> /ID (ID.0045) >> endobj -83 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 81 0 R /K <> /ID (ID.0046) >> +84 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 292 0 R ] /K 85 0 R /ID (ID.0046) >> endobj 85 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 298 0 R ] /K 86 0 R /ID (ID.0047) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 84 0 R /K [<> 86 0 R <> <>] /ID (ID.0047) >> endobj 86 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 85 0 R /K [<> 87 0 R <> <>] /ID (ID.0048) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 85 0 R /K [<> 88 0 R] /ID (ID.0048) >> endobj -87 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 86 0 R /K [<> 89 0 R] /ID (ID.0049) >> +89 0 obj +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [90 0 R 96 0 R] /ID (ID.0049) >> endobj 90 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [91 0 R 97 0 R] /ID (ID.0050) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 89 0 R /Ref [ 294 0 R ] /K 91 0 R /ID (ID.0050) >> endobj 91 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 90 0 R /Ref [ 300 0 R ] /K 92 0 R /ID (ID.0051) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 90 0 R /K [<> 92 0 R <> <>] /ID (ID.0051) >> endobj 92 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 91 0 R /K [<> 93 0 R <> <>] /ID (ID.0052) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 91 0 R /K [<> 94 0 R <> 95 0 R] /ID (ID.0052) >> endobj -93 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 92 0 R /K [<> 95 0 R <> 96 0 R] /ID (ID.0053) >> +94 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 92 0 R /K <> /ID (ID.0053) >> endobj -95 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 93 0 R /K <> /ID (ID.0054) >> +96 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 89 0 R /Ref [ 316 0 R ] /K 97 0 R /ID (ID.0054) >> endobj 97 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 90 0 R /Ref [ 323 0 R ] /K 98 0 R /ID (ID.0055) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 96 0 R /K [<> 98 0 R <> <>] /ID (ID.0055) >> endobj 98 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 97 0 R /K [<> 99 0 R <> <>] /ID (ID.0056) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 97 0 R /K [<> 100 0 R <> 101 0 R] /ID (ID.0056) >> endobj -99 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 98 0 R /K [<> 101 0 R <> 102 0 R] /ID (ID.0057) >> +100 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 98 0 R /K <> /ID (ID.0057) >> endobj -101 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 99 0 R /K <> /ID (ID.0058) >> +146 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [147 0 R 149 0 R] /ID (ID.0058) >> endobj 147 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [148 0 R 151 0 R] /ID (ID.0059) >> -endobj -148 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 147 0 R /K 149 0 R /ID (ID.0060) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 146 0 R /K <> /ID (ID.0059) >> endobj 149 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 148 0 R /K <> /ID (ID.0061) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 146 0 R /K [150 0 R 156 0 R 162 0 R] /ID (ID.0060) >> +endobj +150 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 211 0 R ] /K 151 0 R /ID (ID.0061) >> endobj 151 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 147 0 R /K [152 0 R 158 0 R 164 0 R] /ID (ID.0062) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 150 0 R /K [<> 152 0 R <> <>] /ID (ID.0062) >> endobj 152 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 215 0 R ] /K 153 0 R /ID (ID.0063) >> -endobj -153 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 152 0 R /K [<> 154 0 R <> <>] /ID (ID.0064) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 151 0 R /K [<> 154 0 R <> 155 0 R] /ID (ID.0063) >> endobj 154 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 153 0 R /K [<> 156 0 R <> 157 0 R] /ID (ID.0065) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 152 0 R /K <> /ID (ID.0064) >> endobj 156 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 154 0 R /K <> /ID (ID.0066) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 263 0 R ] /K 157 0 R /ID (ID.0065) >> endobj -158 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 268 0 R ] /K 159 0 R /ID (ID.0067) >> +157 0 obj +<< /Type /StructElem /S /Reference /NS 9 0 R /P 156 0 R /K [<> 158 0 R <> <>] /ID (ID.0066) >> endobj -159 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 158 0 R /K [<> 160 0 R <> <>] /ID (ID.0068) >> +158 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 157 0 R /K [<> 160 0 R <> 161 0 R] /ID (ID.0067) >> endobj 160 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 159 0 R /K [<> 162 0 R <> 163 0 R] /ID (ID.0069) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 158 0 R /K <> /ID (ID.0068) >> endobj 162 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 160 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 149 0 R /Ref [ 302 0 R ] /K 163 0 R /ID (ID.0069) >> endobj -164 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 151 0 R /Ref [ 309 0 R ] /K 165 0 R /ID (ID.0071) >> +163 0 obj +<< /Type /StructElem /S /Reference /NS 9 0 R /P 162 0 R /K [<> 164 0 R <> <>] /ID (ID.0070) >> endobj -165 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 164 0 R /K [<> 166 0 R <> <>] /ID (ID.0072) >> +164 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 163 0 R /K [<> 166 0 R <> 167 0 R] /ID (ID.0071) >> endobj 166 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 165 0 R /K [<> 168 0 R <> 169 0 R] /ID (ID.0073) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 164 0 R /K <> /ID (ID.0072) >> endobj -168 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 166 0 R /K <> /ID (ID.0074) >> +185 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [186 0 R 189 0 R] /ID (ID.0073) >> endobj -187 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 22 0 R /K [188 0 R 192 0 R] /ID (ID.0075) >> +186 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 185 0 R /K [<> 188 0 R <>] /ID (ID.0074) >> endobj 188 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 187 0 R /K [189 0 R 191 0 R] /ID (ID.0076) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 186 0 R /K <> /ID (ID.0075) >> endobj 189 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 188 0 R /K <> /ID (ID.0077) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 185 0 R /K 190 0 R /ID (ID.0076) >> endobj -191 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 188 0 R /K <> /ID (ID.0078) >> +190 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 189 0 R /K <> /ID (ID.0077) >> endobj -192 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 187 0 R /K 193 0 R /ID (ID.0079) >> +191 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [202 0 R 254 0 R 276 0 R] /ID (ID.0078) >> endobj -193 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 192 0 R /K <> /ID (ID.0080) >> +202 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 191 0 R /K [203 0 R 206 0 R 220 0 R 231 0 R] /ID (ID.0079) >> endobj -194 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [205 0 R 258 0 R 281 0 R] /ID (ID.0081) >> +203 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 202 0 R /K [<> 205 0 R <>] /ID (ID.0080) >> endobj 205 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 194 0 R /K [206 0 R 210 0 R 224 0 R 235 0 R] /ID (ID.0082) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 203 0 R /K <> /ID (ID.0081) >> endobj 206 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 205 0 R /K [207 0 R 209 0 R] /ID (ID.0083) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 202 0 R /K 207 0 R /ID (ID.0082) >> endobj 207 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 206 0 R /K <> /ID (ID.0084) >> -endobj -209 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 206 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 206 0 R /K [<> 208 0 R <>] /ID (ID.0083) >> endobj -210 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 205 0 R /K 211 0 R /ID (ID.0086) >> +208 0 obj +<< /Type /StructElem /S /Link /NS 11 0 R /P 207 0 R /K [<> 210 0 R] /ID (ID.0084) >> endobj 211 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 210 0 R /K [<> 212 0 R <>] /ID (ID.0087) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 212 0 R /ID (ID.0085) >> endobj 212 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 211 0 R /K [<> 214 0 R] /ID (ID.0088) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 211 0 R /K [213 0 R 214 0 R] /ID (ID.0086) >> endobj -215 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 216 0 R /ID (ID.0089) >> +213 0 obj +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 212 0 R /K <> /ID (ID.0087) >> endobj -216 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 215 0 R /K [217 0 R 218 0 R] /ID (ID.0090) >> +214 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 212 0 R /K <> /ID (ID.0088) >> endobj -217 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 216 0 R /K <> /ID (ID.0091) >> +220 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 202 0 R /K [221 0 R 224 0 R] /ID (ID.0089) >> endobj -218 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 216 0 R /K <> /ID (ID.0092) >> +221 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 220 0 R /K [222 0 R <> <>] /ID (ID.0090) >> +endobj +222 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 221 0 R /K <> /ID (ID.0091) >> endobj 224 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 205 0 R /K [225 0 R 228 0 R] /ID (ID.0093) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 220 0 R /K 225 0 R /ID (ID.0092) >> endobj 225 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 224 0 R /K [226 0 R <>] /ID (ID.0094) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 224 0 R /K <> /ID (ID.0093) >> endobj -226 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 225 0 R /K <> /ID (ID.0095) >> +231 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 202 0 R /K [232 0 R 235 0 R 240 0 R] /ID (ID.0094) >> endobj -228 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 224 0 R /K 229 0 R /ID (ID.0096) >> +232 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 231 0 R /K [233 0 R <> <>] /ID (ID.0095) >> endobj -229 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 228 0 R /K <> /ID (ID.0097) >> +233 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 232 0 R /K <> /ID (ID.0096) >> endobj 235 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 205 0 R /K [236 0 R 239 0 R 244 0 R] /ID (ID.0098) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [236 0 R 238 0 R] /ID (ID.0097) >> endobj 236 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 235 0 R /K [237 0 R <>] /ID (ID.0099) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 235 0 R /K [237 0 R <> <>] /ID (ID.0098) >> endobj 237 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 236 0 R /K <> /ID (ID.0100) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 236 0 R /K <> /ID (ID.0099) >> +endobj +238 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 235 0 R /K 239 0 R /ID (ID.0100) >> endobj 239 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [240 0 R 242 0 R] /ID (ID.0101) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 238 0 R /K <> /ID (ID.0101) >> endobj 240 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 239 0 R /K [241 0 R <>] /ID (ID.0102) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 231 0 R /K [241 0 R 243 0 R] /ID (ID.0102) >> endobj 241 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 240 0 R /K <> /ID (ID.0103) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 240 0 R /K [242 0 R <> <>] /ID (ID.0103) >> endobj 242 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 239 0 R /K 243 0 R /ID (ID.0104) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 241 0 R /K <> /ID (ID.0104) >> endobj 243 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 242 0 R /K <> /ID (ID.0105) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 240 0 R /K 244 0 R /ID (ID.0105) >> endobj 244 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 235 0 R /K [245 0 R 247 0 R] /ID (ID.0106) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 243 0 R /K <> /ID (ID.0106) >> endobj -245 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 244 0 R /K [246 0 R <>] /ID (ID.0107) >> -endobj -246 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 245 0 R /K <> /ID (ID.0108) >> +254 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 191 0 R /K [255 0 R 258 0 R] /ID (ID.0107) >> endobj -247 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 244 0 R /K 248 0 R /ID (ID.0109) >> +255 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 254 0 R /K [<> 257 0 R <>] /ID (ID.0108) >> endobj -248 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 247 0 R /K <> /ID (ID.0110) >> +257 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 255 0 R /K <> /ID (ID.0109) >> endobj 258 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 194 0 R /K [259 0 R 263 0 R] /ID (ID.0111) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 254 0 R /K 259 0 R /ID (ID.0110) >> endobj 259 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 258 0 R /K [260 0 R 262 0 R] /ID (ID.0112) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 258 0 R /K [<> 260 0 R <>] /ID (ID.0111) >> endobj 260 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 259 0 R /K <> /ID (ID.0113) >> -endobj -262 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 259 0 R /K <> /ID (ID.0114) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 259 0 R /K [<> 262 0 R] /ID (ID.0112) >> endobj 263 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 258 0 R /K 264 0 R /ID (ID.0115) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 264 0 R /ID (ID.0113) >> endobj 264 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 263 0 R /K [<> 265 0 R <>] /ID (ID.0116) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 263 0 R /K [265 0 R 266 0 R] /ID (ID.0114) >> endobj 265 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 264 0 R /K [<> 267 0 R] /ID (ID.0117) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 264 0 R /K <> /ID (ID.0115) >> endobj -268 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 269 0 R /ID (ID.0118) >> +266 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 264 0 R /K <> /ID (ID.0116) >> endobj -269 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 268 0 R /K [270 0 R 271 0 R] /ID (ID.0119) >> +276 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 191 0 R /K [277 0 R 280 0 R] /ID (ID.0117) >> endobj -270 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 269 0 R /K <> /ID (ID.0120) >> +277 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 276 0 R /K [<> 279 0 R <>] /ID (ID.0118) >> endobj -271 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 269 0 R /K <> /ID (ID.0121) >> +279 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 277 0 R /K <> /ID (ID.0119) >> +endobj +280 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 276 0 R /K 281 0 R /ID (ID.0120) >> endobj 281 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 194 0 R /K [282 0 R 286 0 R] /ID (ID.0122) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 280 0 R /K <> /ID (ID.0121) >> endobj -282 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 281 0 R /K [283 0 R 285 0 R] /ID (ID.0123) >> +292 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [293 0 R 315 0 R] /ID (ID.0122) >> endobj -283 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 282 0 R /K <> /ID (ID.0124) >> +293 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 292 0 R /K [294 0 R 297 0 R] /ID (ID.0123) >> endobj -285 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 282 0 R /K <> /ID (ID.0125) >> +294 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 293 0 R /K [<> 296 0 R <>] /ID (ID.0124) >> endobj -286 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 281 0 R /K 287 0 R /ID (ID.0126) >> +296 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 294 0 R /K <> /ID (ID.0125) >> endobj -287 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 286 0 R /K <> /ID (ID.0127) >> +297 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 293 0 R /K 298 0 R /ID (ID.0126) >> endobj 298 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 22 0 R /K [299 0 R 322 0 R] /ID (ID.0128) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 297 0 R /K [<> 299 0 R <>] /ID (ID.0127) >> endobj 299 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 298 0 R /K [300 0 R 304 0 R] /ID (ID.0129) >> -endobj -300 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 299 0 R /K [301 0 R 303 0 R] /ID (ID.0130) >> +<< /Type /StructElem /S /Link /NS 11 0 R /P 298 0 R /K [<> 301 0 R] /ID (ID.0128) >> endobj -301 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 300 0 R /K <> /ID (ID.0131) >> +302 0 obj +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 303 0 R /ID (ID.0129) >> endobj 303 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 300 0 R /K <> /ID (ID.0132) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 302 0 R /K [304 0 R 305 0 R] /ID (ID.0130) >> endobj 304 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 299 0 R /K 305 0 R /ID (ID.0133) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 303 0 R /K <> /ID (ID.0131) >> endobj 305 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 304 0 R /K [<> 306 0 R <>] /ID (ID.0134) >> -endobj -306 0 obj -<< /Type /StructElem /S /Link /NS 11 0 R /P 305 0 R /K [<> 308 0 R] /ID (ID.0135) >> -endobj -309 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 310 0 R /ID (ID.0136) >> -endobj -310 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 309 0 R /K [311 0 R 312 0 R] /ID (ID.0137) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 303 0 R /K <> /ID (ID.0132) >> endobj -311 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 310 0 R /K <> /ID (ID.0138) >> -endobj -312 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 310 0 R /K <> /ID (ID.0139) >> -endobj -322 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 298 0 R /K [323 0 R 327 0 R] /ID (ID.0140) >> -endobj -323 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 322 0 R /K [324 0 R 326 0 R] /ID (ID.0141) >> +315 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 292 0 R /K [316 0 R 319 0 R] /ID (ID.0133) >> endobj -324 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 323 0 R /K <> /ID (ID.0142) >> +316 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 315 0 R /K [<> 318 0 R <>] /ID (ID.0134) >> endobj -326 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 323 0 R /K <> /ID (ID.0143) >> +318 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 316 0 R /K <> /ID (ID.0135) >> endobj -327 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 322 0 R /K 328 0 R /ID (ID.0144) >> +319 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 315 0 R /K 320 0 R /ID (ID.0136) >> endobj -328 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 327 0 R /K <> /ID (ID.0145) >> +320 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 319 0 R /K <> /ID (ID.0137) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 374 0 R /ClassMap 375 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 366 0 R /ClassMap 367 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 22 0 R >> endobj -377 0 obj +369 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4] endobj -378 0 obj +370 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -379 0 obj +371 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5] endobj -380 0 obj +372 0 obj [555.4 555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9 499.9 722 444.3 444.3 444.3 444.3 444.3 277.7 277.7 277.7 333.3 499.9 555.4 499.9 499.9 499.9 499.9 499.9] endobj -381 0 obj +373 0 obj [333] endobj -382 0 obj +374 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -383 0 obj +375 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4] endobj -384 0 obj +376 0 obj [744 756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2 581.7 552.6 756.2] endobj -385 0 obj +377 0 obj << /Length1 1144 /Length2 1422 @@ -2456,7 +2481,7 @@ endobj >> [BINARY STREAM] endobj -386 0 obj +378 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -2469,10 +2494,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 385 0 R +/FontFile 377 0 R >> endobj -387 0 obj +379 0 obj << /Length1 727 /Length2 16664 @@ -2481,7 +2506,7 @@ endobj >> [BINARY STREAM] endobj -388 0 obj +380 0 obj << /Type /FontDescriptor /FontName /SCBPYL+SFBX1000 @@ -2494,10 +2519,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/H/I/M/S/W/a/b/c/d/e/five/four/g/h/i/k/l/n/o/one/r/s/seven/six/t/three/two/u/w) -/FontFile 387 0 R +/FontFile 379 0 R >> endobj -389 0 obj +381 0 obj << /Length1 727 /Length2 12732 @@ -2506,7 +2531,7 @@ endobj >> [BINARY STREAM] endobj -390 0 obj +382 0 obj << /Type /FontDescriptor /FontName /JELTFA+SFBX1200 @@ -2519,10 +2544,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/D/M/a/c/e/five/i/k/m/n/o/one/period/r/s/t/two/u) -/FontFile 389 0 R +/FontFile 381 0 R >> endobj -391 0 obj +383 0 obj << /Length1 727 /Length2 10542 @@ -2531,7 +2556,7 @@ endobj >> [BINARY STREAM] endobj -392 0 obj +384 0 obj << /Type /FontDescriptor /FontName /KEYWTP+SFBX1440 @@ -2544,10 +2569,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/L/b/d/e/g/i/n/o/one/period/r/s/two/u/v) -/FontFile 391 0 R +/FontFile 383 0 R >> endobj -393 0 obj +385 0 obj << /Length1 727 /Length2 10904 @@ -2556,7 +2581,7 @@ endobj >> [BINARY STREAM] endobj -394 0 obj +386 0 obj << /Type /FontDescriptor /FontName /QIXKFB+SFBX2074 @@ -2569,10 +2594,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/five/four/h/one/p/r/six/t/three/two) -/FontFile 393 0 R +/FontFile 385 0 R >> endobj -395 0 obj +387 0 obj << /Length1 727 /Length2 14147 @@ -2581,7 +2606,7 @@ endobj >> [BINARY STREAM] endobj -396 0 obj +388 0 obj << /Type /FontDescriptor /FontName /YTDFFC+SFBX2488 @@ -2594,10 +2619,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/C/F/H/I/L/M/S/W/a/b/c/d/e/f/g/h/i/k/l/n/o/r/s/t/u/w) -/FontFile 395 0 R +/FontFile 387 0 R >> endobj -397 0 obj +389 0 obj << /Length1 721 /Length2 18838 @@ -2606,7 +2631,7 @@ endobj >> [BINARY STREAM] endobj -398 0 obj +390 0 obj << /Type /FontDescriptor /FontName /VGLJTX+SFRM1000 @@ -2619,10 +2644,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/D/F/H/I/L/M/O/P/S/W/a/b/c/colon/comma/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/nine/o/odieresis/one/period/r/s/seven/six/t/three/two/u/v/w/z/zero) -/FontFile 397 0 R +/FontFile 389 0 R >> endobj -399 0 obj +391 0 obj << /Length1 727 /Length2 15302 @@ -2631,7 +2656,7 @@ endobj >> [BINARY STREAM] endobj -400 0 obj +392 0 obj << /Type /FontDescriptor /FontName /KTFFPK+SFSL1000 @@ -2644,16 +2669,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/W/five/four/one/period/three/two) -/FontFile 399 0 R +/FontFile 391 0 R >> endobj -376 0 obj +368 0 obj << /Type /Encoding /Differences [28/fi 44/comma 46/period 48/zero/one/two/three/four/five/six/seven/eight/nine/colon 65/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U 87/W 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u/v/w 122/z 246/odieresis] >> endobj -401 0 obj +393 0 obj << /Length 2030 >> @@ -2797,20 +2822,20 @@ end %%EOF endstream endobj -112 0 obj +111 0 obj << /Type /Font /Subtype /Type1 /BaseFont /SCBPYL+SFBX1000 -/FontDescriptor 388 0 R +/FontDescriptor 380 0 R /FirstChar 49 /LastChar 119 -/Widths 383 0 R -/Encoding 376 0 R -/ToUnicode 401 0 R +/Widths 375 0 R +/Encoding 368 0 R +/ToUnicode 393 0 R >> endobj -402 0 obj +394 0 obj << /Length 2030 >> @@ -2954,20 +2979,20 @@ end %%EOF endstream endobj -113 0 obj +112 0 obj << /Type /Font /Subtype /Type1 /BaseFont /JELTFA+SFBX1200 -/FontDescriptor 390 0 R +/FontDescriptor 382 0 R /FirstChar 46 /LastChar 117 -/Widths 382 0 R -/Encoding 376 0 R -/ToUnicode 402 0 R +/Widths 374 0 R +/Encoding 368 0 R +/ToUnicode 394 0 R >> endobj -403 0 obj +395 0 obj << /Length 2030 >> @@ -3111,20 +3136,20 @@ end %%EOF endstream endobj -234 0 obj +230 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KEYWTP+SFBX1440 -/FontDescriptor 392 0 R +/FontDescriptor 384 0 R /FirstChar 46 /LastChar 118 -/Widths 377 0 R -/Encoding 376 0 R -/ToUnicode 403 0 R +/Widths 369 0 R +/Encoding 368 0 R +/ToUnicode 395 0 R >> endobj -404 0 obj +396 0 obj << /Length 2030 >> @@ -3268,20 +3293,20 @@ end %%EOF endstream endobj -199 0 obj +196 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QIXKFB+SFBX2074 -/FontDescriptor 394 0 R +/FontDescriptor 386 0 R /FirstChar 49 /LastChar 116 -/Widths 378 0 R -/Encoding 376 0 R -/ToUnicode 404 0 R +/Widths 370 0 R +/Encoding 368 0 R +/ToUnicode 396 0 R >> endobj -405 0 obj +397 0 obj << /Length 2030 >> @@ -3425,20 +3450,20 @@ end %%EOF endstream endobj -111 0 obj +110 0 obj << /Type /Font /Subtype /Type1 /BaseFont /YTDFFC+SFBX2488 -/FontDescriptor 396 0 R +/FontDescriptor 388 0 R /FirstChar 66 /LastChar 119 -/Widths 384 0 R -/Encoding 376 0 R -/ToUnicode 405 0 R +/Widths 376 0 R +/Encoding 368 0 R +/ToUnicode 397 0 R >> endobj -406 0 obj +398 0 obj << /Length 2030 >> @@ -3582,20 +3607,20 @@ end %%EOF endstream endobj -115 0 obj +114 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VGLJTX+SFRM1000 -/FontDescriptor 398 0 R +/FontDescriptor 390 0 R /FirstChar 28 /LastChar 246 -/Widths 380 0 R -/Encoding 376 0 R -/ToUnicode 406 0 R +/Widths 372 0 R +/Encoding 368 0 R +/ToUnicode 398 0 R >> endobj -407 0 obj +399 0 obj << /Length 2030 >> @@ -3739,20 +3764,20 @@ end %%EOF endstream endobj -146 0 obj +145 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KTFFPK+SFSL1000 -/FontDescriptor 400 0 R +/FontDescriptor 392 0 R /FirstChar 46 /LastChar 87 -/Widths 379 0 R -/Encoding 376 0 R -/ToUnicode 407 0 R +/Widths 371 0 R +/Encoding 368 0 R +/ToUnicode 399 0 R >> endobj -408 0 obj +400 0 obj << /Length 654 >> @@ -3790,657 +3815,649 @@ end %%EOF endstream endobj -114 0 obj +113 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 386 0 R +/FontDescriptor 378 0 R /FirstChar 32 /LastChar 32 -/Widths 381 0 R -/ToUnicode 408 0 R +/Widths 373 0 R +/ToUnicode 400 0 R >> endobj -116 0 obj +115 0 obj << /Type /Pages /Count 6 -/Parent 409 0 R -/Kids [21 0 R 142 0 R 150 0 R 183 0 R 190 0 R 201 0 R] +/Parent 401 0 R +/Kids [21 0 R 141 0 R 148 0 R 181 0 R 187 0 R 198 0 R] >> endobj -223 0 obj +219 0 obj << /Type /Pages /Count 6 -/Parent 409 0 R -/Kids [208 0 R 227 0 R 238 0 R 254 0 R 261 0 R 277 0 R] +/Parent 401 0 R +/Kids [204 0 R 223 0 R 234 0 R 250 0 R 256 0 R 272 0 R] >> endobj -292 0 obj +286 0 obj << /Type /Pages /Count 5 -/Parent 409 0 R -/Kids [284 0 R 294 0 R 302 0 R 318 0 R 325 0 R] +/Parent 401 0 R +/Kids [278 0 R 288 0 R 295 0 R 311 0 R 317 0 R] >> endobj -409 0 obj +401 0 obj << /Type /Pages /Count 17 -/Kids [116 0 R 223 0 R 292 0 R] +/Kids [115 0 R 219 0 R 286 0 R] >> endobj -410 0 obj +402 0 obj << /Type /Outlines -/First 336 0 R -/Last 363 0 R +/First 328 0 R +/Last 355 0 R /Count 3 >> endobj -369 0 obj +361 0 obj << -/Title 370 0 R -/A 368 0 R -/Parent 363 0 R -/Prev 366 0 R +/Title 362 0 R +/A 360 0 R +/Parent 355 0 R +/Prev 358 0 R >> endobj -366 0 obj +358 0 obj << -/Title 367 0 R -/A 365 0 R -/Parent 363 0 R -/Next 369 0 R +/Title 359 0 R +/A 357 0 R +/Parent 355 0 R +/Next 361 0 R >> endobj -363 0 obj +355 0 obj << -/Title 364 0 R -/A 362 0 R -/Parent 410 0 R -/Prev 339 0 R -/First 366 0 R -/Last 369 0 R +/Title 356 0 R +/A 354 0 R +/Parent 402 0 R +/Prev 331 0 R +/First 358 0 R +/Last 361 0 R /Count -2 >> endobj -360 0 obj +352 0 obj << -/Title 361 0 R -/A 359 0 R -/Parent 339 0 R -/Prev 357 0 R +/Title 353 0 R +/A 351 0 R +/Parent 331 0 R +/Prev 349 0 R >> endobj -357 0 obj +349 0 obj << -/Title 358 0 R -/A 356 0 R -/Parent 339 0 R -/Prev 342 0 R -/Next 360 0 R +/Title 350 0 R +/A 348 0 R +/Parent 331 0 R +/Prev 334 0 R +/Next 352 0 R >> endobj -354 0 obj +346 0 obj << -/Title 355 0 R -/A 353 0 R -/Parent 348 0 R -/Prev 351 0 R +/Title 347 0 R +/A 345 0 R +/Parent 340 0 R +/Prev 343 0 R >> endobj -351 0 obj +343 0 obj << -/Title 352 0 R -/A 350 0 R -/Parent 348 0 R -/Next 354 0 R +/Title 344 0 R +/A 342 0 R +/Parent 340 0 R +/Next 346 0 R >> endobj -348 0 obj +340 0 obj << -/Title 349 0 R -/A 347 0 R -/Parent 342 0 R -/Prev 345 0 R -/First 351 0 R -/Last 354 0 R +/Title 341 0 R +/A 339 0 R +/Parent 334 0 R +/Prev 337 0 R +/First 343 0 R +/Last 346 0 R /Count -2 >> endobj -345 0 obj +337 0 obj << -/Title 346 0 R -/A 344 0 R -/Parent 342 0 R -/Next 348 0 R +/Title 338 0 R +/A 336 0 R +/Parent 334 0 R +/Next 340 0 R >> endobj -342 0 obj +334 0 obj << -/Title 343 0 R -/A 341 0 R -/Parent 339 0 R -/Next 357 0 R -/First 345 0 R -/Last 348 0 R +/Title 335 0 R +/A 333 0 R +/Parent 331 0 R +/Next 349 0 R +/First 337 0 R +/Last 340 0 R /Count -2 >> endobj -339 0 obj +331 0 obj << -/Title 340 0 R -/A 338 0 R -/Parent 410 0 R -/Prev 336 0 R -/Next 363 0 R -/First 342 0 R -/Last 360 0 R +/Title 332 0 R +/A 330 0 R +/Parent 402 0 R +/Prev 328 0 R +/Next 355 0 R +/First 334 0 R +/Last 352 0 R /Count -3 >> endobj -336 0 obj +328 0 obj << -/Title 337 0 R -/A 335 0 R -/Parent 410 0 R -/Next 339 0 R +/Title 329 0 R +/A 327 0 R +/Parent 402 0 R +/Next 331 0 R >> endobj -411 0 obj +403 0 obj << -/Names [(Doc-Start) 107 0 R (chapter*.1) 109 0 R (chapter*.2) 174 0 R (chapter.1) 117 0 R (chapter.2) 121 0 R (chapter.3) 131 0 R] +/Names [(Doc-Start) 106 0 R (chapter*.1) 108 0 R (chapter*.2) 172 0 R (chapter.1) 116 0 R (chapter.2) 120 0 R (chapter.3) 130 0 R] /Limits [(Doc-Start) (chapter.3)] >> endobj -412 0 obj +404 0 obj << -/Names [(chapter.4) 133 0 R (chapter.5) 137 0 R (chapter.6) 139 0 R (figure.struct.118) 178 0 R (figure.struct.136) 180 0 R (figure.struct.89) 176 0 R] -/Limits [(chapter.4) (figure.struct.89)] +/Names [(chapter.4) 132 0 R (chapter.5) 136 0 R (chapter.6) 138 0 R (figure.struct.113) 176 0 R (figure.struct.129) 178 0 R (figure.struct.85) 174 0 R] +/Limits [(chapter.4) (figure.struct.85)] >> endobj -413 0 obj +405 0 obj << -/Names [(page.1) 105 0 R (page.10) 256 0 R (page.11) 274 0 R (page.12) 279 0 R (page.13) 290 0 R (page.14) 296 0 R] +/Names [(page.1) 104 0 R (page.10) 252 0 R (page.11) 269 0 R (page.12) 274 0 R (page.13) 284 0 R (page.14) 290 0 R] /Limits [(page.1) (page.14)] >> endobj -414 0 obj +406 0 obj << -/Names [(page.15) 315 0 R (page.16) 320 0 R (page.17) 332 0 R (page.2) 144 0 R (page.3) 172 0 R (page.4) 185 0 R] +/Names [(page.15) 308 0 R (page.16) 313 0 R (page.17) 324 0 R (page.2) 143 0 R (page.3) 170 0 R (page.4) 183 0 R] /Limits [(page.15) (page.4)] >> endobj -415 0 obj +407 0 obj << -/Names [(page.5) 197 0 R (page.6) 203 0 R (page.7) 221 0 R (page.8) 232 0 R (page.9) 251 0 R (part.1) 119 0 R] +/Names [(page.5) 194 0 R (page.6) 200 0 R (page.7) 217 0 R (page.8) 228 0 R (page.9) 247 0 R (part.1) 118 0 R] /Limits [(page.5) (part.1)] >> endobj -416 0 obj +408 0 obj << -/Names [(part.2) 135 0 R (section.2.1) 123 0 R (section.2.2) 125 0 R (subsection.2.2.1) 127 0 R (subsection.2.2.2) 129 0 R] +/Names [(part.2) 134 0 R (section.2.1) 122 0 R (section.2.2) 124 0 R (subsection.2.2.1) 126 0 R (subsection.2.2.2) 128 0 R] /Limits [(part.2) (subsection.2.2.2)] >> endobj -417 0 obj +409 0 obj << -/Kids [411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R] +/Kids [403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R] /Limits [(Doc-Start) (subsection.2.2.2)] >> endobj -418 0 obj +410 0 obj << -/Dests 417 0 R +/Dests 409 0 R >> endobj -419 0 obj +411 0 obj << /Type /Catalog -/Pages 409 0 R -/Outlines 410 0 R -/Names 418 0 R -/MarkInfo 334 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 329 0 R +/Pages 401 0 R +/Outlines 402 0 R +/Names 410 0 R +/MarkInfo 326 0 R/PageMode /UseOutlines/OpenAction <>/Lang (en)/PageLabels <>]>>/StructTreeRoot 5 0 R/Metadata 321 0 R >> endobj -420 0 obj +412 0 obj << /Producer (pdfTeX)/Creator /CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 421 +0 413 0000000010 65535 f -0000051662 00000 n -0000051709 00000 n -0000051731 00000 n -0000051753 00000 n -0000081156 00000 n -0000053489 00000 n -0000057555 00000 n -0000059913 00000 n -0000058433 00000 n +0000052367 00000 n +0000052414 00000 n +0000052436 00000 n +0000052458 00000 n +0000081402 00000 n +0000054194 00000 n +0000058197 00000 n +0000060771 00000 n +0000059139 00000 n 0000000012 00000 f -0000058501 00000 n +0000059207 00000 n 0000000014 00000 f -0000058571 00000 n +0000059277 00000 n 0000000020 00000 f -0000059451 00000 n -0000058652 00000 n -0000059724 00000 n -0000059553 00000 n -0000059826 00000 n +0000060309 00000 n +0000059358 00000 n +0000060582 00000 n +0000060411 00000 n +0000060684 00000 n 0000000000 00000 f -0000011055 00000 n -0000059974 00000 n -0000060114 00000 n -0000060232 00000 n -0000060322 00000 n -0000060427 00000 n -0000060568 00000 n -0000060706 00000 n -0000060852 00000 n -0000061022 00000 n -0000061223 00000 n -0000011290 00000 n -0000061394 00000 n +0000011057 00000 n +0000060832 00000 n +0000060972 00000 n +0000061090 00000 n +0000061180 00000 n +0000061285 00000 n +0000061452 00000 n +0000061598 00000 n +0000061768 00000 n +0000061969 00000 n +0000011291 00000 n +0000062140 00000 n 0000000015 00000 n -0000061515 00000 n -0000061657 00000 n -0000061859 00000 n -0000011492 00000 n +0000062261 00000 n +0000062403 00000 n +0000062605 00000 n +0000011493 00000 n 0000000069 00000 n -0000061990 00000 n -0000062107 00000 n -0000062273 00000 n -0000062477 00000 n -0000011691 00000 n -0000062650 00000 n +0000062736 00000 n +0000062853 00000 n +0000063019 00000 n +0000063223 00000 n +0000011692 00000 n +0000063396 00000 n 0000000123 00000 n -0000062772 00000 n -0000062882 00000 n -0000063056 00000 n -0000063260 00000 n -0000011892 00000 n -0000063433 00000 n +0000063518 00000 n +0000063628 00000 n +0000063802 00000 n +0000064006 00000 n +0000011893 00000 n +0000064179 00000 n 0000000177 00000 n -0000063555 00000 n -0000063705 00000 n -0000063909 00000 n -0000012096 00000 n -0000064082 00000 n +0000064301 00000 n +0000064451 00000 n +0000064655 00000 n +0000012097 00000 n +0000064828 00000 n 0000000231 00000 n -0000064204 00000 n -0000064307 00000 n -0000064493 00000 n -0000064697 00000 n -0000012299 00000 n -0000064870 00000 n +0000064950 00000 n +0000065053 00000 n +0000065239 00000 n +0000065443 00000 n +0000012300 00000 n +0000065616 00000 n 0000000285 00000 n -0000064992 00000 n -0000065134 00000 n -0000065338 00000 n -0000012508 00000 n -0000065511 00000 n +0000065738 00000 n +0000065880 00000 n +0000066084 00000 n +0000012509 00000 n +0000066257 00000 n 0000000339 00000 n -0000065633 00000 n -0000065807 00000 n -0000066011 00000 n -0000012717 00000 n -0000066184 00000 n +0000066379 00000 n +0000066553 00000 n +0000066757 00000 n +0000012718 00000 n +0000066930 00000 n 0000000393 00000 n -0000066306 00000 n -0000066472 00000 n -0000066676 00000 n -0000012918 00000 n -0000066849 00000 n +0000067052 00000 n +0000067218 00000 n +0000067422 00000 n +0000012919 00000 n +0000067595 00000 n 0000000447 00000 n -0000066971 00000 n -0000067113 00000 n -0000067317 00000 n -0000013119 00000 n +0000067717 00000 n +0000067859 00000 n +0000068063 00000 n +0000013120 00000 n 0000000501 00000 n -0000067449 00000 n -0000067552 00000 n -0000067722 00000 n -0000067926 00000 n -0000013318 00000 n -0000068099 00000 n +0000068195 00000 n +0000068298 00000 n +0000068468 00000 n +0000068672 00000 n +0000013319 00000 n +0000068845 00000 n 0000000555 00000 n -0000068221 00000 n -0000068383 00000 n -0000068587 00000 n -0000013520 00000 n -0000068762 00000 n +0000068967 00000 n +0000069129 00000 n +0000069333 00000 n +0000013521 00000 n +0000069508 00000 n 0000000609 00000 n 0000014061 00000 n -0000000665 00000 n +0000000664 00000 n 0000013722 00000 n 0000013783 00000 n 0000013835 00000 n 0000013896 00000 n 0000013948 00000 n 0000014009 00000 n -0000206223 00000 n -0000197131 00000 n -0000199404 00000 n -0000211665 00000 n -0000208496 00000 n -0000211833 00000 n -0000023626 00000 n -0000023688 00000 n -0000023741 00000 n -0000023803 00000 n -0000026480 00000 n -0000026542 00000 n -0000027775 00000 n -0000027837 00000 n -0000029522 00000 n -0000029584 00000 n -0000029637 00000 n -0000029699 00000 n -0000029752 00000 n -0000029814 00000 n -0000032513 00000 n -0000032575 00000 n -0000034426 00000 n -0000034488 00000 n -0000037231 00000 n -0000037293 00000 n -0000037346 00000 n -0000037408 00000 n -0000051442 00000 n -0000051504 00000 n +0000206469 00000 n +0000197377 00000 n +0000199650 00000 n +0000211911 00000 n +0000208742 00000 n +0000212079 00000 n +0000023693 00000 n +0000023755 00000 n +0000023808 00000 n +0000023870 00000 n +0000026611 00000 n +0000026673 00000 n +0000027984 00000 n +0000028046 00000 n +0000029971 00000 n +0000030033 00000 n +0000030086 00000 n +0000030148 00000 n +0000030201 00000 n +0000030263 00000 n +0000033026 00000 n +0000033088 00000 n +0000035003 00000 n +0000035065 00000 n +0000037872 00000 n +0000037934 00000 n +0000037987 00000 n +0000038049 00000 n +0000052147 00000 n +0000052209 00000 n 0000014664 00000 n 0000014411 00000 n 0000014179 00000 n 0000014550 00000 n 0000014612 00000 n -0000210769 00000 n -0000068885 00000 n -0000068993 00000 n -0000069165 00000 n -0000020915 00000 n -0000069306 00000 n -0000069443 00000 n -0000069652 00000 n -0000069859 00000 n -0000021090 00000 n -0000070036 00000 n +0000211015 00000 n +0000069631 00000 n +0000069739 00000 n +0000020918 00000 n +0000069937 00000 n +0000070074 00000 n +0000070283 00000 n +0000070490 00000 n +0000021093 00000 n +0000070667 00000 n 0000014756 00000 n -0000070160 00000 n -0000070377 00000 n -0000070586 00000 n -0000021300 00000 n -0000070764 00000 n +0000070791 00000 n +0000071008 00000 n +0000071217 00000 n +0000021303 00000 n +0000071395 00000 n 0000014813 00000 n -0000070888 00000 n -0000071073 00000 n -0000071283 00000 n -0000021511 00000 n -0000071462 00000 n +0000071519 00000 n +0000071704 00000 n +0000071914 00000 n +0000021514 00000 n +0000072093 00000 n 0000014870 00000 n -0000021952 00000 n +0000021955 00000 n 0000014927 00000 n -0000021722 00000 n -0000021784 00000 n -0000021837 00000 n -0000021899 00000 n -0000026595 00000 n -0000026657 00000 n -0000032628 00000 n -0000032690 00000 n -0000037461 00000 n -0000037523 00000 n -0000022625 00000 n -0000022371 00000 n -0000022044 00000 n -0000022510 00000 n -0000022572 00000 n -0000071587 00000 n -0000071695 00000 n -0000071865 00000 n -0000023372 00000 n -0000072006 00000 n -0000072147 00000 n -0000072255 00000 n -0000072398 00000 n -0000023856 00000 n -0000022717 00000 n -0000023511 00000 n -0000023573 00000 n -0000203950 00000 n -0000024553 00000 n -0000024299 00000 n -0000023961 00000 n -0000024438 00000 n -0000024500 00000 n -0000072514 00000 n -0000072639 00000 n -0000072805 00000 n -0000025996 00000 n -0000072946 00000 n -0000073087 00000 n -0000073195 00000 n -0000073382 00000 n -0000026155 00000 n -0000024645 00000 n -0000073517 00000 n -0000073616 00000 n -0000073728 00000 n -0000073852 00000 n -0000026710 00000 n -0000024702 00000 n -0000026365 00000 n -0000026427 00000 n -0000211949 00000 n -0000073995 00000 n -0000074104 00000 n -0000074304 00000 n -0000027521 00000 n -0000074439 00000 n -0000074547 00000 n -0000027890 00000 n -0000026815 00000 n -0000027660 00000 n -0000027722 00000 n -0000201677 00000 n -0000074690 00000 n -0000074807 00000 n -0000074983 00000 n -0000029268 00000 n -0000075118 00000 n -0000075227 00000 n -0000075442 00000 n -0000075577 00000 n -0000075685 00000 n -0000075828 00000 n -0000075937 00000 n -0000076108 00000 n -0000076243 00000 n -0000076351 00000 n -0000029867 00000 n -0000027995 00000 n -0000029407 00000 n -0000029469 00000 n -0000030625 00000 n -0000030371 00000 n -0000029985 00000 n -0000030510 00000 n -0000030572 00000 n -0000076494 00000 n -0000076603 00000 n -0000076777 00000 n -0000032027 00000 n -0000076918 00000 n -0000077059 00000 n -0000077167 00000 n -0000077354 00000 n -0000032187 00000 n -0000030717 00000 n -0000077489 00000 n -0000077588 00000 n -0000077700 00000 n -0000077824 00000 n -0000032743 00000 n -0000030774 00000 n -0000032398 00000 n -0000032460 00000 n -0000033491 00000 n -0000033236 00000 n -0000032848 00000 n -0000033376 00000 n -0000033438 00000 n -0000077967 00000 n -0000078076 00000 n -0000078242 00000 n -0000034172 00000 n -0000078383 00000 n -0000078524 00000 n -0000078632 00000 n -0000034541 00000 n -0000033583 00000 n -0000034312 00000 n -0000034374 00000 n -0000212066 00000 n -0000035286 00000 n -0000035032 00000 n -0000034646 00000 n -0000035172 00000 n -0000035234 00000 n -0000078775 00000 n -0000078883 00000 n -0000078992 00000 n -0000079162 00000 n -0000036745 00000 n +0000021725 00000 n +0000021787 00000 n +0000021840 00000 n +0000021902 00000 n +0000026726 00000 n +0000026788 00000 n +0000033141 00000 n +0000033203 00000 n +0000038102 00000 n +0000038164 00000 n +0000022628 00000 n +0000022374 00000 n +0000022047 00000 n +0000022513 00000 n +0000022575 00000 n +0000072218 00000 n +0000072326 00000 n +0000023439 00000 n +0000072556 00000 n +0000072691 00000 n +0000072799 00000 n +0000072942 00000 n +0000023923 00000 n +0000022720 00000 n +0000023578 00000 n +0000023640 00000 n +0000204196 00000 n +0000024620 00000 n +0000024366 00000 n +0000024028 00000 n +0000024505 00000 n +0000024567 00000 n +0000073058 00000 n +0000073183 00000 n +0000026127 00000 n +0000073409 00000 n +0000073544 00000 n +0000073652 00000 n +0000073839 00000 n +0000026286 00000 n +0000024712 00000 n +0000073974 00000 n +0000074073 00000 n +0000074185 00000 n +0000074309 00000 n +0000026841 00000 n +0000024769 00000 n +0000026496 00000 n +0000026558 00000 n +0000212195 00000 n +0000074452 00000 n +0000074561 00000 n +0000074795 00000 n +0000027730 00000 n +0000074930 00000 n +0000075038 00000 n +0000028099 00000 n +0000026946 00000 n +0000027869 00000 n +0000027931 00000 n +0000201923 00000 n +0000075181 00000 n +0000075298 00000 n +0000075508 00000 n +0000029717 00000 n +0000075643 00000 n +0000075752 00000 n +0000076001 00000 n +0000076136 00000 n +0000076244 00000 n +0000076387 00000 n +0000076496 00000 n +0000076701 00000 n +0000076836 00000 n +0000076944 00000 n +0000030316 00000 n +0000028204 00000 n +0000029856 00000 n +0000029918 00000 n +0000031074 00000 n +0000030820 00000 n +0000030434 00000 n +0000030959 00000 n +0000031021 00000 n +0000077088 00000 n +0000077197 00000 n +0000032540 00000 n +0000077431 00000 n +0000077566 00000 n +0000077674 00000 n +0000077861 00000 n +0000032700 00000 n +0000031166 00000 n +0000077996 00000 n +0000078095 00000 n +0000078207 00000 n +0000078331 00000 n +0000033256 00000 n +0000031223 00000 n +0000032911 00000 n +0000032973 00000 n +0000034004 00000 n +0000033749 00000 n +0000033361 00000 n +0000033889 00000 n +0000033951 00000 n +0000078474 00000 n +0000078583 00000 n +0000034749 00000 n +0000078809 00000 n +0000078944 00000 n +0000079052 00000 n +0000035118 00000 n +0000034096 00000 n +0000034889 00000 n +0000034951 00000 n +0000212312 00000 n +0000035863 00000 n +0000035609 00000 n +0000035223 00000 n +0000035749 00000 n +0000035811 00000 n +0000079195 00000 n 0000079303 00000 n -0000079444 00000 n -0000079552 00000 n -0000079739 00000 n -0000036905 00000 n -0000035378 00000 n -0000079874 00000 n -0000079973 00000 n -0000080085 00000 n -0000080209 00000 n -0000037576 00000 n -0000035435 00000 n -0000037116 00000 n -0000037178 00000 n -0000038323 00000 n -0000038068 00000 n -0000037681 00000 n -0000038208 00000 n -0000038270 00000 n -0000080352 00000 n -0000080461 00000 n -0000080623 00000 n -0000051188 00000 n -0000080764 00000 n -0000080905 00000 n -0000081013 00000 n -0000038415 00000 n -0000051557 00000 n -0000050601 00000 n -0000051328 00000 n -0000051390 00000 n -0000051775 00000 n -0000051812 00000 n -0000213383 00000 n -0000051871 00000 n -0000051959 00000 n -0000213251 00000 n -0000052015 00000 n -0000052068 00000 n -0000213133 00000 n -0000052127 00000 n -0000052213 00000 n -0000213054 00000 n -0000052274 00000 n -0000052370 00000 n -0000212936 00000 n -0000052431 00000 n -0000052494 00000 n -0000212857 00000 n -0000052560 00000 n -0000052671 00000 n -0000212778 00000 n -0000052737 00000 n -0000052790 00000 n -0000212685 00000 n -0000052849 00000 n -0000052945 00000 n -0000212606 00000 n -0000053004 00000 n -0000053090 00000 n -0000212488 00000 n -0000053146 00000 n +0000079412 00000 n +0000037386 00000 n +0000079642 00000 n +0000079777 00000 n +0000079885 00000 n +0000080072 00000 n +0000037546 00000 n +0000035955 00000 n +0000080207 00000 n +0000080306 00000 n +0000080418 00000 n +0000080542 00000 n +0000038217 00000 n +0000036012 00000 n +0000037757 00000 n +0000037819 00000 n +0000038964 00000 n +0000038709 00000 n +0000038322 00000 n +0000038849 00000 n +0000038911 00000 n +0000080685 00000 n +0000080794 00000 n +0000051893 00000 n +0000081016 00000 n +0000081151 00000 n +0000081259 00000 n +0000039056 00000 n +0000052262 00000 n +0000051242 00000 n +0000052033 00000 n +0000052095 00000 n +0000052480 00000 n +0000052517 00000 n +0000213629 00000 n +0000052576 00000 n +0000052664 00000 n +0000213497 00000 n +0000052720 00000 n +0000052773 00000 n +0000213379 00000 n +0000052832 00000 n +0000052918 00000 n +0000213300 00000 n +0000052979 00000 n +0000053075 00000 n +0000213182 00000 n +0000053136 00000 n 0000053199 00000 n -0000212409 00000 n -0000053258 00000 n -0000053349 00000 n -0000212330 00000 n -0000053408 00000 n -0000054778 00000 n -0000055690 00000 n -0000056646 00000 n -0000057500 00000 n -0000058227 00000 n -0000194778 00000 n -0000081295 00000 n -0000081728 00000 n -0000082149 00000 n -0000082415 00000 n -0000083707 00000 n -0000083730 00000 n -0000084179 00000 n -0000084620 00000 n -0000084954 00000 n -0000087619 00000 n -0000087839 00000 n -0000105329 00000 n -0000105630 00000 n -0000119188 00000 n -0000119459 00000 n -0000130827 00000 n -0000131089 00000 n -0000142819 00000 n -0000143082 00000 n -0000158055 00000 n -0000158330 00000 n -0000177988 00000 n -0000178357 00000 n -0000194485 00000 n -0000195041 00000 n -0000197314 00000 n -0000199587 00000 n -0000201860 00000 n -0000204133 00000 n -0000206406 00000 n -0000208679 00000 n -0000210951 00000 n -0000212175 00000 n -0000212253 00000 n -0000213462 00000 n -0000213650 00000 n -0000213866 00000 n -0000214034 00000 n -0000214200 00000 n -0000214362 00000 n -0000214547 00000 n -0000214667 00000 n -0000214705 00000 n -0000214968 00000 n +0000213103 00000 n +0000053265 00000 n +0000053376 00000 n +0000213024 00000 n +0000053442 00000 n +0000053495 00000 n +0000212931 00000 n +0000053554 00000 n +0000053650 00000 n +0000212852 00000 n +0000053709 00000 n +0000053795 00000 n +0000212734 00000 n +0000053851 00000 n +0000053904 00000 n +0000212655 00000 n +0000053963 00000 n +0000054054 00000 n +0000212576 00000 n +0000054113 00000 n +0000055563 00000 n +0000056475 00000 n +0000057432 00000 n +0000058142 00000 n +0000058976 00000 n +0000195024 00000 n +0000081541 00000 n +0000081974 00000 n +0000082395 00000 n +0000082661 00000 n +0000083953 00000 n +0000083976 00000 n +0000084425 00000 n +0000084866 00000 n +0000085200 00000 n +0000087865 00000 n +0000088085 00000 n +0000105575 00000 n +0000105876 00000 n +0000119434 00000 n +0000119705 00000 n +0000131073 00000 n +0000131335 00000 n +0000143065 00000 n +0000143328 00000 n +0000158301 00000 n +0000158576 00000 n +0000178234 00000 n +0000178603 00000 n +0000194731 00000 n +0000195287 00000 n +0000197560 00000 n +0000199833 00000 n +0000202106 00000 n +0000204379 00000 n +0000206652 00000 n +0000208925 00000 n +0000211197 00000 n +0000212421 00000 n +0000212499 00000 n +0000213708 00000 n +0000213896 00000 n +0000214112 00000 n +0000214280 00000 n +0000214446 00000 n +0000214608 00000 n +0000214793 00000 n +0000214913 00000 n +0000214951 00000 n +0000215214 00000 n trailer -<< /Size 421 -/Root 419 0 R -/Info 420 0 R +<< /Size 413 +/Root 411 0 R +/Info 412 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -215178 +215424 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.luatex.tpf index 126818a55..205038d36 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.luatex.tpf @@ -1,12 +1,12 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ -69 0 obj -<< /Length 5132 >> +68 0 obj +<< /Length 5135 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Con)31(ten)31(ts)]TJ @@ -282,13 +282,13 @@ EMC EMC endstream endobj -68 0 obj -<< /Type /Page /Contents 69 0 R /Resources 67 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 74 0 R >> -endobj 67 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F17 71 0 R /F15 72 0 R /F16 73 0 R >> >> +<< /Type /Page /Contents 68 0 R /Resources 66 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 73 0 R >> endobj -77 0 obj +66 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F17 70 0 R /F15 71 0 R /F16 72 0 R >> >> +endobj +76 0 obj << /Length 182 >> stream /opacity1 gs @@ -306,19 +306,19 @@ EMC EMC endstream endobj -76 0 obj -<< /Type /Page /Contents 77 0 R /Resources 75 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 74 0 R >> -endobj 75 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R >> >> +<< /Type /Page /Contents 76 0 R /Resources 74 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 73 0 R >> endobj -94 0 obj -<< /Length 3181 >> +74 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R >> >> +endobj +92 0 obj +<< /Length 3184 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(List)]TJ @@ -462,13 +462,13 @@ EMC EMC endstream endobj -93 0 obj -<< /Type /Page /Contents 94 0 R /Resources 92 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 74 0 R >> +91 0 obj +<< /Type /Page /Contents 92 0 R /Resources 90 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 73 0 R >> endobj -92 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +90 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -97 0 obj +95 0 obj << /Length 395 >> stream /opacity1 gs @@ -494,29 +494,33 @@ EMC EMC endstream endobj -96 0 obj -<< /Type /Page /Contents 97 0 R /Resources 95 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 74 0 R >> +94 0 obj +<< /Type /Page /Contents 95 0 R /Resources 93 0 R /MediaBox [ 0 0 612 792 ] /StructParents 3/Tabs /S /Parent 73 0 R >> endobj -95 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +93 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -107 0 obj -<< /Length 886 >> +104 0 obj +<< /Length 943 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(In)31(tro)-31(duction)]TJ @@ -524,7 +528,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Some)]TJ @@ -554,13 +558,13 @@ EMC EMC endstream endobj -106 0 obj -<< /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 74 0 R >> +103 0 obj +<< /Type /Page /Contents 104 0 R /Resources 102 0 R /MediaBox [ 0 0 612 792 ] /StructParents 4/Tabs /S /Parent 73 0 R >> endobj -105 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +102 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -110 0 obj +107 0 obj << /Length 416 >> stream /opacity1 gs @@ -586,29 +590,33 @@ EMC EMC endstream endobj -109 0 obj -<< /Type /Page /Contents 110 0 R /Resources 108 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 74 0 R >> +106 0 obj +<< /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [ 0 0 612 792 ] /StructParents 5/Tabs /S /Parent 73 0 R >> endobj -108 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +105 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -123 0 obj -<< /Length 1975 >> +119 0 obj +<< /Length 2032 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(2)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Swiss)]TJ @@ -620,7 +628,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(A)]TJ @@ -648,7 +656,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 206.316 443.082 Tm [(Figure)]TJ @@ -660,7 +668,7 @@ BT 1 0 0 1 253.251 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 257.679 443.082 Tm [(Image)]TJ @@ -694,14 +702,14 @@ EMC EMC endstream endobj -122 0 obj -<< /Type /Page /Contents 123 0 R /Resources 121 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 74 0 R >> +118 0 obj +<< /Type /Page /Contents 119 0 R /Resources 117 0 R /MediaBox [ 0 0 612 792 ] /StructParents 6/Tabs /S /Parent 73 0 R >> endobj -121 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +117 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -131 0 obj -<< /Length 992 >> +127 0 obj +<< /Length 1037 >> stream /opacity1 gs /Artifact BMC @@ -728,16 +736,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 160.667 658.164 Tm [(2.1)]TJ -/F15 9.96264 Tf -1 0 0 1 181.29 658.164 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 181.29 658.164 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 197.43 658.164 Tm [(Living)]TJ /F15 9.96264 Tf @@ -748,7 +760,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 160.667 636.343 Tm [(Switzerland)]TJ @@ -758,14 +770,14 @@ EMC EMC endstream endobj -130 0 obj -<< /Type /Page /Contents 131 0 R /Resources 129 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 74 0 R >> +126 0 obj +<< /Type /Page /Contents 127 0 R /Resources 125 0 R /MediaBox [ 0 0 612 792 ] /StructParents 7/Tabs /S /Parent 73 0 R >> endobj -129 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R /F19 70 0 R >> >> +125 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R /F19 69 0 R >> >> endobj -147 0 obj -<< /Length 1845 >> +143 0 obj +<< /Length 1987 >> stream /opacity1 gs /Artifact BMC @@ -784,31 +796,39 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 106.869 658.164 Tm [(2.2)]TJ -/F15 9.96264 Tf -1 0 0 1 127.492 658.164 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 127.492 658.164 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 143.631 658.164 Tm [(Hobbies)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 634.351 Tm [(2.2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 634.351 Tm [<0067>]TJ +1 0 0 1 134.516 634.351 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 634.351 Tm [(Music)]TJ @@ -820,21 +840,25 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 615.962 Tm [(Albhorn)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 106.869 588.073 Tm [(2.2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 134.516 588.073 Tm [<0067>]TJ +1 0 0 1 134.516 588.073 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 147.965 588.073 Tm [(Bo)-31(oks)]TJ @@ -842,7 +866,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 569.684 Tm [(Oh,)]TJ @@ -868,13 +892,13 @@ EMC EMC endstream endobj -146 0 obj -<< /Type /Page /Contents 147 0 R /Resources 145 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 74 0 R >> +142 0 obj +<< /Type /Page /Contents 143 0 R /Resources 141 0 R /MediaBox [ 0 0 612 792 ] /StructParents 8/Tabs /S /Parent 73 0 R >> endobj -145 0 obj -<< /ExtGState 1 0 R /Font << /F33 78 0 R /F15 72 0 R /F16 73 0 R /F19 70 0 R >> >> +141 0 obj +<< /ExtGState 1 0 R /Font << /F33 77 0 R /F15 71 0 R /F16 72 0 R /F19 69 0 R >> >> endobj -150 0 obj +146 0 obj << /Length 513 >> stream /opacity1 gs @@ -904,29 +928,33 @@ EMC EMC endstream endobj -149 0 obj -<< /Type /Page /Contents 150 0 R /Resources 148 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 74 0 R >> +145 0 obj +<< /Type /Page /Contents 146 0 R /Resources 144 0 R /MediaBox [ 0 0 612 792 ] /StructParents 9/Tabs /S /Parent 73 0 R >> endobj -148 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +144 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -163 0 obj -<< /Length 1885 >> +158 0 obj +<< /Length 1942 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(3)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Italian)]TJ @@ -938,7 +966,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Italian)]TJ @@ -962,7 +990,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 202.939 443.082 Tm [(Figure)]TJ @@ -974,7 +1002,7 @@ BT 1 0 0 1 249.875 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 254.302 443.082 Tm [(Image)]TJ @@ -1008,13 +1036,13 @@ EMC EMC endstream endobj -162 0 obj -<< /Type /Page /Contents 163 0 R /Resources 161 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 164 0 R >> +157 0 obj +<< /Type /Page /Contents 158 0 R /Resources 156 0 R /MediaBox [ 0 0 612 792 ] /StructParents 10/Tabs /S /Parent 159 0 R >> endobj -161 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +156 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -167 0 obj +162 0 obj << /Length 520 >> stream /opacity1 gs @@ -1044,29 +1072,33 @@ EMC EMC endstream endobj -166 0 obj -<< /Type /Page /Contents 167 0 R /Resources 165 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 164 0 R >> +161 0 obj +<< /Type /Page /Contents 162 0 R /Resources 160 0 R /MediaBox [ 0 0 612 792 ] /StructParents 11/Tabs /S /Parent 159 0 R >> endobj -165 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +160 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -176 0 obj -<< /Length 771 >> +170 0 obj +<< /Length 828 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(4)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Mask)31(ed)]TJ @@ -1078,7 +1110,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Mask)27(ed)]TJ @@ -1100,13 +1132,13 @@ EMC EMC endstream endobj -175 0 obj -<< /Type /Page /Contents 176 0 R /Resources 174 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 164 0 R >> +169 0 obj +<< /Type /Page /Contents 170 0 R /Resources 168 0 R /MediaBox [ 0 0 612 792 ] /StructParents 12/Tabs /S /Parent 159 0 R >> endobj -174 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +168 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -179 0 obj +173 0 obj << /Length 515 >> stream /opacity1 gs @@ -1136,29 +1168,33 @@ EMC EMC endstream endobj -178 0 obj -<< /Type /Page /Contents 179 0 R /Resources 177 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 164 0 R >> +172 0 obj +<< /Type /Page /Contents 173 0 R /Resources 171 0 R /MediaBox [ 0 0 612 792 ] /StructParents 13/Tabs /S /Parent 159 0 R >> endobj -177 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +171 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -193 0 obj -<< /Length 1995 >> +186 0 obj +<< /Length 2052 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(5)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Hugging)]TJ @@ -1170,7 +1206,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Duc)27(k)]TJ @@ -1202,7 +1238,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 218.174 443.082 Tm [(Figure)]TJ @@ -1214,7 +1250,7 @@ BT 1 0 0 1 265.109 443.082 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 269.537 443.082 Tm [(Image)]TJ @@ -1244,13 +1280,13 @@ EMC EMC endstream endobj -192 0 obj -<< /Type /Page /Contents 193 0 R /Resources 191 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 164 0 R >> +185 0 obj +<< /Type /Page /Contents 186 0 R /Resources 184 0 R /MediaBox [ 0 0 612 792 ] /StructParents 14/Tabs /S /Parent 159 0 R >> endobj -191 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +184 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -196 0 obj +189 0 obj << /Length 517 >> stream /opacity1 gs @@ -1280,29 +1316,33 @@ EMC EMC endstream endobj -195 0 obj -<< /Type /Page /Contents 196 0 R /Resources 194 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 164 0 R >> +188 0 obj +<< /Type /Page /Contents 189 0 R /Resources 187 0 R /MediaBox [ 0 0 612 792 ] /StructParents 15/Tabs /S /Parent 159 0 R >> endobj -194 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +187 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -206 0 obj -<< /Length 767 >> +198 0 obj +<< /Length 824 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 106.869 583.445 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 189.926 583.445 Tm [<0067>]TJ +1 0 0 1 189.926 583.445 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 197.674 583.445 Tm [(6)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 533.631 Tm [(Witc)31(h)]TJ @@ -1314,7 +1354,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 106.869 481.826 Tm [(Witc)27(h)]TJ @@ -1336,11 +1376,11 @@ EMC EMC endstream endobj -205 0 obj -<< /Type /Page /Contents 206 0 R /Resources 204 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 164 0 R >> +197 0 obj +<< /Type /Page /Contents 198 0 R /Resources 196 0 R /MediaBox [ 0 0 612 792 ] /StructParents 16/Tabs /S /Parent 159 0 R >> endobj -204 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +196 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj 1 0 obj << /opacity1 <> >> @@ -1354,47 +1394,46 @@ endobj 4 0 obj << >> endobj -207 0 obj +199 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 27 0 R 31 0 R 30 0 R 30 0 R 33 0 R 33 0 R 37 0 R 36 0 R 36 0 R 41 0 R 40 0 R 40 0 R 44 0 R 43 0 R 43 0 R 48 0 R 47 0 R 47 0 R 51 0 R 50 0 R 50 0 R 54 0 R 53 0 R 53 0 R 57 0 R 56 0 R 56 0 R 59 0 R 59 0 R 63 0 R 62 0 R 62 0 R 66 0 R 65 0 R 65 0 R] +<< /Nums [0 [ 26 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 36 0 R 35 0 R 35 0 R 40 0 R 39 0 R 39 0 R 43 0 R 42 0 R 42 0 R 47 0 R 46 0 R 46 0 R 50 0 R 49 0 R 49 0 R 53 0 R 52 0 R 52 0 R 56 0 R 55 0 R 55 0 R 58 0 R 58 0 R 62 0 R 61 0 R 61 0 R 65 0 R 64 0 R 64 0 R] 1 [] -2 [ 81 0 R 85 0 R 84 0 R 84 0 R 88 0 R 87 0 R 87 0 R 91 0 R 90 0 R 90 0 R] +2 [ 79 0 R 83 0 R 82 0 R 82 0 R 86 0 R 85 0 R 85 0 R 89 0 R 88 0 R 88 0 R] 3 [] -4 [ 100 0 R 101 0 R 103 0 R] +4 [ 97 0 R 98 0 R 97 0 R 100 0 R] 5 [] -6 [ 113 0 R 114 0 R 116 0 R 119 0 R 120 0 R] -7 [ 126 0 R 125 0 R 128 0 R] -8 [ 134 0 R 133 0 R 137 0 R 136 0 R 139 0 R 142 0 R 141 0 R 144 0 R] +6 [ 109 0 R 110 0 R 109 0 R 112 0 R 115 0 R 116 0 R] +7 [ 122 0 R 121 0 R 121 0 R 124 0 R] +8 [ 130 0 R 129 0 R 129 0 R 133 0 R 132 0 R 132 0 R 135 0 R 138 0 R 137 0 R 137 0 R 140 0 R] 9 [] -10 [ 153 0 R 154 0 R 156 0 R 159 0 R 160 0 R] +10 [ 148 0 R 149 0 R 148 0 R 151 0 R 154 0 R 155 0 R] 11 [] -12 [ 170 0 R 171 0 R 173 0 R] +12 [ 164 0 R 165 0 R 164 0 R 167 0 R] 13 [] -14 [ 183 0 R 184 0 R 186 0 R 189 0 R 190 0 R] +14 [ 176 0 R 177 0 R 176 0 R 179 0 R 182 0 R 183 0 R] 15 [] -16 [ 199 0 R 200 0 R 202 0 R] +16 [ 191 0 R 192 0 R 191 0 R 194 0 R] ] >> endobj -208 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 27 0 R (ID.0009) 28 0 R (ID.0010) 29 0 R (ID.0011) 30 0 R (ID.0012) 31 0 R (ID.0013) 32 0 R (ID.0014) 33 0 R (ID.0015) 34 0 R (ID.0016) 35 0 R (ID.0017) 36 0 R (ID.0018) 37 0 R (ID.0019) 38 0 R (ID.0020) 39 0 R (ID.0021) 40 0 R (ID.0022) 41 0 R (ID.0023) 42 0 R (ID.0024) 43 0 R (ID.0025) 44 0 R (ID.0026) 45 0 R (ID.0027) 46 0 R (ID.0028) 47 0 R (ID.0029) 48 0 R (ID.0030) 49 0 R (ID.0031) 50 0 R (ID.0032) 51 0 R (ID.0033) 52 0 R (ID.0034) 53 0 R (ID.0035) 54 0 R (ID.0036) 55 0 R (ID.0037) 56 0 R (ID.0038) 57 0 R (ID.0039) 58 0 R (ID.0040) 59 0 R (ID.0041) 60 0 R (ID.0042) 61 0 R (ID.0043) 62 0 R (ID.0044) 63 0 R (ID.0045) 64 0 R (ID.0046) 65 0 R (ID.0047) 66 0 R (ID.0048) 79 0 R (ID.0049) 80 0 R (ID.0050) 81 0 R (ID.0051) 82 0 R ] >> +200 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 27 0 R (ID.0009) 28 0 R (ID.0010) 29 0 R (ID.0011) 30 0 R (ID.0012) 31 0 R (ID.0013) 32 0 R (ID.0014) 33 0 R (ID.0015) 34 0 R (ID.0016) 35 0 R (ID.0017) 36 0 R (ID.0018) 37 0 R (ID.0019) 38 0 R (ID.0020) 39 0 R (ID.0021) 40 0 R (ID.0022) 41 0 R (ID.0023) 42 0 R (ID.0024) 43 0 R (ID.0025) 44 0 R (ID.0026) 45 0 R (ID.0027) 46 0 R (ID.0028) 47 0 R (ID.0029) 48 0 R (ID.0030) 49 0 R (ID.0031) 50 0 R (ID.0032) 51 0 R (ID.0033) 52 0 R (ID.0034) 53 0 R (ID.0035) 54 0 R (ID.0036) 55 0 R (ID.0037) 56 0 R (ID.0038) 57 0 R (ID.0039) 58 0 R (ID.0040) 59 0 R (ID.0041) 60 0 R (ID.0042) 61 0 R (ID.0043) 62 0 R (ID.0044) 63 0 R (ID.0045) 64 0 R (ID.0046) 65 0 R (ID.0047) 78 0 R (ID.0048) 79 0 R (ID.0049) 80 0 R (ID.0050) 81 0 R (ID.0051) 82 0 R ] >> endobj -209 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 83 0 R (ID.0053) 84 0 R (ID.0054) 85 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 89 0 R (ID.0059) 90 0 R (ID.0060) 91 0 R (ID.0061) 98 0 R (ID.0062) 99 0 R (ID.0063) 100 0 R (ID.0064) 101 0 R (ID.0065) 102 0 R (ID.0066) 103 0 R (ID.0067) 104 0 R (ID.0068) 111 0 R (ID.0069) 112 0 R (ID.0070) 113 0 R (ID.0071) 114 0 R (ID.0072) 115 0 R (ID.0073) 116 0 R (ID.0074) 117 0 R (ID.0075) 118 0 R (ID.0076) 119 0 R (ID.0077) 120 0 R (ID.0078) 124 0 R (ID.0079) 125 0 R (ID.0080) 126 0 R (ID.0081) 127 0 R (ID.0082) 128 0 R (ID.0083) 132 0 R (ID.0084) 133 0 R (ID.0085) 134 0 R (ID.0086) 135 0 R (ID.0087) 136 0 R (ID.0088) 137 0 R (ID.0089) 138 0 R (ID.0090) 139 0 R (ID.0091) 140 0 R (ID.0092) 141 0 R (ID.0093) 142 0 R (ID.0094) 143 0 R (ID.0095) 144 0 R (ID.0096) 151 0 R (ID.0097) 152 0 R (ID.0098) 153 0 R (ID.0099) 154 0 R (ID.0100) 155 0 R (ID.0101) 156 0 R ] >> +201 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 83 0 R (ID.0053) 84 0 R (ID.0054) 85 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 89 0 R (ID.0059) 96 0 R (ID.0060) 97 0 R (ID.0061) 98 0 R (ID.0062) 99 0 R (ID.0063) 100 0 R (ID.0064) 101 0 R (ID.0065) 108 0 R (ID.0066) 109 0 R (ID.0067) 110 0 R (ID.0068) 111 0 R (ID.0069) 112 0 R (ID.0070) 113 0 R (ID.0071) 114 0 R (ID.0072) 115 0 R (ID.0073) 116 0 R (ID.0074) 120 0 R (ID.0075) 121 0 R (ID.0076) 122 0 R (ID.0077) 123 0 R (ID.0078) 124 0 R (ID.0079) 128 0 R (ID.0080) 129 0 R (ID.0081) 130 0 R (ID.0082) 131 0 R (ID.0083) 132 0 R (ID.0084) 133 0 R (ID.0085) 134 0 R (ID.0086) 135 0 R (ID.0087) 136 0 R (ID.0088) 137 0 R (ID.0089) 138 0 R (ID.0090) 139 0 R (ID.0091) 140 0 R (ID.0092) 147 0 R (ID.0093) 148 0 R (ID.0094) 149 0 R (ID.0095) 150 0 R (ID.0096) 151 0 R (ID.0097) 152 0 R (ID.0098) 153 0 R (ID.0099) 154 0 R (ID.0100) 155 0 R (ID.0101) 163 0 R ] >> endobj -210 0 obj -<< /Limits [(ID.0102) (ID.0128)]/Names [(ID.0102) 157 0 R (ID.0103) 158 0 R (ID.0104) 159 0 R (ID.0105) 160 0 R (ID.0106) 168 0 R (ID.0107) 169 0 R (ID.0108) 170 0 R (ID.0109) 171 0 R (ID.0110) 172 0 R (ID.0111) 173 0 R (ID.0112) 180 0 R (ID.0113) 181 0 R (ID.0114) 182 0 R (ID.0115) 183 0 R (ID.0116) 184 0 R (ID.0117) 185 0 R (ID.0118) 186 0 R (ID.0119) 187 0 R (ID.0120) 188 0 R (ID.0121) 189 0 R (ID.0122) 190 0 R (ID.0123) 197 0 R (ID.0124) 198 0 R (ID.0125) 199 0 R (ID.0126) 200 0 R (ID.0127) 201 0 R (ID.0128) 202 0 R ] >> +202 0 obj +<< /Limits [(ID.0102) (ID.0120)]/Names [(ID.0102) 164 0 R (ID.0103) 165 0 R (ID.0104) 166 0 R (ID.0105) 167 0 R (ID.0106) 174 0 R (ID.0107) 175 0 R (ID.0108) 176 0 R (ID.0109) 177 0 R (ID.0110) 178 0 R (ID.0111) 179 0 R (ID.0112) 180 0 R (ID.0113) 181 0 R (ID.0114) 182 0 R (ID.0115) 183 0 R (ID.0116) 190 0 R (ID.0117) 191 0 R (ID.0118) 192 0 R (ID.0119) 193 0 R (ID.0120) 194 0 R ] >> endobj -211 0 obj -<< /Kids [208 0 R 209 0 R 210 0 R] >> +203 0 obj +<< /Kids [200 0 R 201 0 R 202 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -212 0 obj -<< /raggedright <> -/justify <> +204 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1410,7 +1449,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1428,390 +1467,366 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 79 0 R 98 0 R 104 0 R 180 0 R 23 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 78 0 R 96 0 R 101 0 R 174 0 R 23 0 R] /ID (ID.0002) >> endobj 22 0 obj << /Type /StructElem /S /Artifact /NS 11 0 R /P 21 0 R /ID (ID.0003) >> endobj 23 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [117 0 R 157 0 R 187 0 R] /ID (ID.0004) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [113 0 R 152 0 R 180 0 R] /ID (ID.0004) >> endobj 24 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.0005) >> endobj 25 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 28 0 R] /ID (ID.0006) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 27 0 R] /ID (ID.0006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K 27 0 R /ID (ID.0007) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K <> /ID (ID.0007) >> endobj 27 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 26 0 R /K <> /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 31 0 R 33 0 R 57 0 R 59 0 R] /ID (ID.0008) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [29 0 R 32 0 R 34 0 R 58 0 R 60 0 R] /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 97 0 R ] /K 29 0 R /ID (ID.0009) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 99 0 R ] /K 30 0 R /ID (ID.0010) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [ 30 0 R <> <> ] /ID (ID.0010) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R <> <> ] /ID (ID.0011) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 29 0 R /K <> /ID (ID.0011) >> endobj 31 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 30 0 R /K <> /ID (ID.0012) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 101 0 R ] /K 32 0 R /ID (ID.0012) >> endobj 32 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 104 0 R ] /K 33 0 R /ID (ID.0013) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <> ] /ID (ID.0013) >> endobj 33 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [<> <> ] /ID (ID.0014) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 51 0 R 54 0 R] /ID (ID.0014) >> endobj 34 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [35 0 R 38 0 R 52 0 R 55 0 R] /ID (ID.0015) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 109 0 R ] /K 35 0 R /ID (ID.0015) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 112 0 R ] /K 36 0 R /ID (ID.0016) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [ 36 0 R <> <> ] /ID (ID.0016) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [ 37 0 R <> <> ] /ID (ID.0017) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 35 0 R /K <> /ID (ID.0017) >> endobj 37 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.0018) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R 44 0 R] /ID (ID.0018) >> endobj 38 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 34 0 R /K [39 0 R 42 0 R 45 0 R] /ID (ID.0019) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 121 0 R ] /K 39 0 R /ID (ID.0019) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 126 0 R ] /K 40 0 R /ID (ID.0020) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [ 40 0 R <> <> ] /ID (ID.0020) >> endobj 40 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [ 41 0 R <> <> ] /ID (ID.0021) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0021) >> endobj 41 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 40 0 R /K <> /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 129 0 R ] /K 42 0 R /ID (ID.0022) >> endobj 42 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 134 0 R ] /K 43 0 R /ID (ID.0023) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [ 43 0 R <> <> ] /ID (ID.0023) >> endobj 43 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 42 0 R /K [ 44 0 R <> <> ] /ID (ID.0024) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0024) >> endobj 44 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 43 0 R /K <> /ID (ID.0025) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 37 0 R /K [45 0 R 48 0 R] /ID (ID.0025) >> endobj 45 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [46 0 R 49 0 R] /ID (ID.0026) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 132 0 R ] /K 46 0 R /ID (ID.0026) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 137 0 R ] /K 47 0 R /ID (ID.0027) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [ 47 0 R <> <> ] /ID (ID.0027) >> endobj 47 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [ 48 0 R <> <> ] /ID (ID.0028) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.0028) >> endobj 48 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0029) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 137 0 R ] /K 49 0 R /ID (ID.0029) >> endobj 49 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 142 0 R ] /K 50 0 R /ID (ID.0030) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 48 0 R /K [ 50 0 R <> <> ] /ID (ID.0030) >> endobj 50 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 49 0 R /K [ 51 0 R <> <> ] /ID (ID.0031) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0031) >> endobj 51 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 50 0 R /K <> /ID (ID.0032) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 148 0 R ] /K 52 0 R /ID (ID.0032) >> endobj 52 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 152 0 R ] /K 53 0 R /ID (ID.0033) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [ 53 0 R <> <> ] /ID (ID.0033) >> endobj 53 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 52 0 R /K [ 54 0 R <> <> ] /ID (ID.0034) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0034) >> endobj 54 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 53 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 164 0 R ] /K 55 0 R /ID (ID.0035) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 169 0 R ] /K 56 0 R /ID (ID.0036) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 54 0 R /K [ 56 0 R <> <> ] /ID (ID.0036) >> endobj 56 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [ 57 0 R <> <> ] /ID (ID.0037) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0037) >> endobj 57 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 56 0 R /K <> /ID (ID.0038) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 174 0 R ] /K 58 0 R /ID (ID.0038) >> endobj 58 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 180 0 R ] /K 59 0 R /ID (ID.0039) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 57 0 R /K [<> <> ] /ID (ID.0039) >> endobj 59 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 58 0 R /K [<> <> ] /ID (ID.0040) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [60 0 R 63 0 R] /ID (ID.0040) >> endobj 60 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [61 0 R 64 0 R] /ID (ID.0041) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 176 0 R ] /K 61 0 R /ID (ID.0041) >> endobj 61 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 182 0 R ] /K 62 0 R /ID (ID.0042) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [ 62 0 R <> <> ] /ID (ID.0042) >> endobj 62 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [ 63 0 R <> <> ] /ID (ID.0043) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.0043) >> endobj 63 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 62 0 R /K <> /ID (ID.0044) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 191 0 R ] /K 64 0 R /ID (ID.0044) >> endobj 64 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 198 0 R ] /K 65 0 R /ID (ID.0045) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 63 0 R /K [ 65 0 R <> <> ] /ID (ID.0045) >> endobj 65 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 64 0 R /K [ 66 0 R <> <> ] /ID (ID.0046) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 64 0 R /K <> /ID (ID.0046) >> endobj -66 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 65 0 R /K <> /ID (ID.0047) >> +78 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [79 0 R 80 0 R] /ID (ID.0047) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [80 0 R 82 0 R] /ID (ID.0048) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 78 0 R /K <> /ID (ID.0048) >> endobj 80 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 79 0 R /K 81 0 R /ID (ID.0049) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 78 0 R /K [81 0 R 84 0 R 87 0 R] /ID (ID.0049) >> endobj 81 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 80 0 R /K <> /ID (ID.0050) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 113 0 R ] /K 82 0 R /ID (ID.0050) >> endobj 82 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 79 0 R /K [83 0 R 86 0 R 89 0 R] /ID (ID.0051) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 81 0 R /K [ 83 0 R <> <> ] /ID (ID.0051) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 117 0 R ] /K 84 0 R /ID (ID.0052) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 82 0 R /K <> /ID (ID.0052) >> endobj 84 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 83 0 R /K [ 85 0 R <> <> ] /ID (ID.0053) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 152 0 R ] /K 85 0 R /ID (ID.0053) >> endobj 85 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 84 0 R /K <> /ID (ID.0054) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 84 0 R /K [ 86 0 R <> <> ] /ID (ID.0054) >> endobj 86 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 157 0 R ] /K 87 0 R /ID (ID.0055) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 85 0 R /K <> /ID (ID.0055) >> endobj 87 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 86 0 R /K [ 88 0 R <> <> ] /ID (ID.0056) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 180 0 R ] /K 88 0 R /ID (ID.0056) >> endobj 88 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 87 0 R /K <> /ID (ID.0057) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 87 0 R /K [ 89 0 R <> <> ] /ID (ID.0057) >> endobj 89 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 187 0 R ] /K 90 0 R /ID (ID.0058) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 88 0 R /K <> /ID (ID.0058) >> endobj -90 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 89 0 R /K [ 91 0 R <> <> ] /ID (ID.0059) >> +96 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [97 0 R 99 0 R] /ID (ID.0059) >> endobj -91 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 90 0 R /K <> /ID (ID.0060) >> +97 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 96 0 R /K [<> 98 0 R <> ] /ID (ID.0060) >> endobj 98 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [99 0 R 102 0 R] /ID (ID.0061) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 97 0 R /K <> /ID (ID.0061) >> endobj 99 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 98 0 R /K [100 0 R 101 0 R] /ID (ID.0062) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 96 0 R /K 100 0 R /ID (ID.0062) >> endobj 100 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0063) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 99 0 R /K <> /ID (ID.0063) >> endobj 101 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0064) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [108 0 R 147 0 R 163 0 R] /ID (ID.0064) >> endobj -102 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 98 0 R /K 103 0 R /ID (ID.0065) >> +108 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [109 0 R 111 0 R 120 0 R 128 0 R] /ID (ID.0065) >> endobj -103 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 102 0 R /K <> /ID (ID.0066) >> +109 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 108 0 R /K [<> 110 0 R <> ] /ID (ID.0066) >> endobj -104 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [111 0 R 151 0 R 168 0 R] /ID (ID.0067) >> +110 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 109 0 R /K <> /ID (ID.0067) >> endobj 111 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [112 0 R 115 0 R 124 0 R 132 0 R] /ID (ID.0068) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 108 0 R /K 112 0 R /ID (ID.0068) >> endobj 112 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 111 0 R /K [113 0 R 114 0 R] /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 111 0 R /K <> /ID (ID.0069) >> endobj 113 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 112 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 114 0 R /ID (ID.0070) >> endobj 114 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 112 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 113 0 R /K [115 0 R 116 0 R] /ID (ID.0071) >> endobj 115 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 111 0 R /K 116 0 R /ID (ID.0072) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 114 0 R /K <> /ID (ID.0072) >> endobj 116 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 115 0 R /K <> /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 114 0 R /K <> /ID (ID.0073) >> endobj -117 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 118 0 R /ID (ID.0074) >> +120 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 108 0 R /K [121 0 R 123 0 R] /ID (ID.0074) >> endobj -118 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 117 0 R /K [119 0 R 120 0 R] /ID (ID.0075) >> +121 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 120 0 R /K [122 0 R <> <> ] /ID (ID.0075) >> endobj -119 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 118 0 R /K <> /ID (ID.0076) >> +122 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 121 0 R /K <> /ID (ID.0076) >> endobj -120 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 118 0 R /K <> /ID (ID.0077) >> +123 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 120 0 R /K 124 0 R /ID (ID.0077) >> endobj 124 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 111 0 R /K [125 0 R 127 0 R] /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 123 0 R /K <> /ID (ID.0078) >> endobj -125 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 124 0 R /K [126 0 R <> ] /ID (ID.0079) >> +128 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 108 0 R /K [129 0 R 131 0 R 136 0 R] /ID (ID.0079) >> endobj -126 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 125 0 R /K <> /ID (ID.0080) >> +129 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 128 0 R /K [130 0 R <> <> ] /ID (ID.0080) >> endobj -127 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 124 0 R /K 128 0 R /ID (ID.0081) >> +130 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 129 0 R /K <> /ID (ID.0081) >> endobj -128 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 127 0 R /K <> /ID (ID.0082) >> +131 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 128 0 R /K [132 0 R 134 0 R] /ID (ID.0082) >> endobj 132 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 111 0 R /K [133 0 R 135 0 R 140 0 R] /ID (ID.0083) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 131 0 R /K [133 0 R <> <> ] /ID (ID.0083) >> endobj 133 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 132 0 R /K [134 0 R <> ] /ID (ID.0084) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 132 0 R /K <> /ID (ID.0084) >> endobj 134 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 131 0 R /K 135 0 R /ID (ID.0085) >> endobj 135 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 132 0 R /K [136 0 R 138 0 R] /ID (ID.0086) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 134 0 R /K <> /ID (ID.0086) >> endobj 136 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 135 0 R /K [137 0 R <> ] /ID (ID.0087) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 128 0 R /K [137 0 R 139 0 R] /ID (ID.0087) >> endobj 137 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 136 0 R /K [138 0 R <> <> ] /ID (ID.0088) >> endobj 138 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 135 0 R /K 139 0 R /ID (ID.0089) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 137 0 R /K <> /ID (ID.0089) >> endobj 139 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 138 0 R /K <> /ID (ID.0090) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 136 0 R /K 140 0 R /ID (ID.0090) >> endobj 140 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 132 0 R /K [141 0 R 143 0 R] /ID (ID.0091) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 139 0 R /K <> /ID (ID.0091) >> endobj -141 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 140 0 R /K [142 0 R <> ] /ID (ID.0092) >> +147 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [148 0 R 150 0 R] /ID (ID.0092) >> endobj -142 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 141 0 R /K <> /ID (ID.0093) >> +148 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 147 0 R /K [<> 149 0 R <> ] /ID (ID.0093) >> endobj -143 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 140 0 R /K 144 0 R /ID (ID.0094) >> +149 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 148 0 R /K <> /ID (ID.0094) >> endobj -144 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 143 0 R /K <> /ID (ID.0095) >> +150 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 147 0 R /K 151 0 R /ID (ID.0095) >> endobj 151 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [152 0 R 155 0 R] /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 150 0 R /K <> /ID (ID.0096) >> endobj 152 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 151 0 R /K [153 0 R 154 0 R] /ID (ID.0097) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 153 0 R /ID (ID.0097) >> endobj 153 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 152 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 152 0 R /K [154 0 R 155 0 R] /ID (ID.0098) >> endobj 154 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 152 0 R /K <> /ID (ID.0099) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 153 0 R /K <> /ID (ID.0099) >> endobj 155 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 151 0 R /K 156 0 R /ID (ID.0100) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 153 0 R /K <> /ID (ID.0100) >> endobj -156 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 155 0 R /K <> /ID (ID.0101) >> +163 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [164 0 R 166 0 R] /ID (ID.0101) >> endobj -157 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 158 0 R /ID (ID.0102) >> +164 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 163 0 R /K [<> 165 0 R <> ] /ID (ID.0102) >> endobj -158 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 157 0 R /K [159 0 R 160 0 R] /ID (ID.0103) >> +165 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 164 0 R /K <> /ID (ID.0103) >> endobj -159 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 158 0 R /K <> /ID (ID.0104) >> +166 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 163 0 R /K 167 0 R /ID (ID.0104) >> endobj -160 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 158 0 R /K <> /ID (ID.0105) >> +167 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 166 0 R /K <> /ID (ID.0105) >> endobj -168 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [169 0 R 172 0 R] /ID (ID.0106) >> +174 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [175 0 R 190 0 R] /ID (ID.0106) >> endobj -169 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 168 0 R /K [170 0 R 171 0 R] /ID (ID.0107) >> +175 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 174 0 R /K [176 0 R 178 0 R] /ID (ID.0107) >> endobj -170 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 169 0 R /K <> /ID (ID.0108) >> +176 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 175 0 R /K [<> 177 0 R <> ] /ID (ID.0108) >> endobj -171 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 169 0 R /K <> /ID (ID.0109) >> +177 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 176 0 R /K <> /ID (ID.0109) >> endobj -172 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 168 0 R /K 173 0 R /ID (ID.0110) >> +178 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 175 0 R /K 179 0 R /ID (ID.0110) >> endobj -173 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 172 0 R /K <> /ID (ID.0111) >> +179 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 178 0 R /K <> /ID (ID.0111) >> endobj 180 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [181 0 R 197 0 R] /ID (ID.0112) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 181 0 R /ID (ID.0112) >> endobj 181 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 180 0 R /K [182 0 R 185 0 R] /ID (ID.0113) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 180 0 R /K [182 0 R 183 0 R] /ID (ID.0113) >> endobj 182 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 181 0 R /K [183 0 R 184 0 R] /ID (ID.0114) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 181 0 R /K <> /ID (ID.0114) >> endobj 183 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 182 0 R /K <> /ID (ID.0115) >> -endobj -184 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 182 0 R /K <> /ID (ID.0116) >> -endobj -185 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 181 0 R /K 186 0 R /ID (ID.0117) >> -endobj -186 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 185 0 R /K <> /ID (ID.0118) >> -endobj -187 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 188 0 R /ID (ID.0119) >> -endobj -188 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 187 0 R /K [189 0 R 190 0 R] /ID (ID.0120) >> -endobj -189 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 188 0 R /K <> /ID (ID.0121) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 181 0 R /K <> /ID (ID.0115) >> endobj 190 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 188 0 R /K <> /ID (ID.0122) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 174 0 R /K [191 0 R 193 0 R] /ID (ID.0116) >> endobj -197 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 180 0 R /K [198 0 R 201 0 R] /ID (ID.0123) >> -endobj -198 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 197 0 R /K [199 0 R 200 0 R] /ID (ID.0124) >> -endobj -199 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 198 0 R /K <> /ID (ID.0125) >> +191 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 190 0 R /K [<> 192 0 R <> ] /ID (ID.0117) >> endobj -200 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 198 0 R /K <> /ID (ID.0126) >> +192 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 191 0 R /K <> /ID (ID.0118) >> endobj -201 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 197 0 R /K 202 0 R /ID (ID.0127) >> +193 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 190 0 R /K 194 0 R /ID (ID.0119) >> endobj -202 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 201 0 R /K <> /ID (ID.0128) >> +194 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 193 0 R /K <> /ID (ID.0120) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 211 0 R /ClassMap 212 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 203 0 R /ClassMap 204 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -203 0 obj +195 0 obj << /Type /Metadata /Subtype /XML /Length 12085 >> stream @@ -2051,23 +2066,23 @@ stream endstream endobj -213 0 obj +205 0 obj [277.8 0 0 500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 0 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 0 777.8 625 916.7 750 777.8 680.6 0 736.1 555.6 722.2 750 0 1027.8 ] endobj -214 0 obj +206 0 obj [555.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.8 0 277.8 0 500 500 500 500 500 500 500 500 500 500 277.8 0 0 0 0 0 0 750 708.3 0 763.9 0 652.8 0 750 361.1 0 0 625 916.7 0 777.8 680.6 0 0 555.6 0 0 0 1027.8 0 0 0 0 0 0 0 0 0 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 0 527.8 277.8 833.3 555.6 500 0 0 391.7 394.4 388.9 555.6 527.8 722.2 0 0 444.4 ] endobj -215 0 obj +207 0 obj [ 103 [ 333 ] ] endobj -217 0 obj +209 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -216 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 217 0 R >> +208 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 209 0 R >> endobj -218 0 obj +210 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2101,47 +2116,47 @@ end %%EOF endstream endobj -72 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 219 0 R ] /ToUnicode 218 0 R >> +71 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 211 0 R ] /ToUnicode 210 0 R >> endobj -219 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 216 0 R /W 215 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +211 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 208 0 R /W 207 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -220 0 obj +212 0 obj [575 575 575 575 575 575 575 0 0 0 0 0 0 0 0 0 0 818.1 0 0 0 0 0 900 436.1 0 0 0 1091.7 0 0 0 0 0 638.9 0 0 0 1188.9 0 0 0 0 0 0 0 0 0 559 638.9 511.1 638.9 527.1 0 575 638.9 319.4 0 606.9 319.4 0 638.9 575 0 0 473.6 453.6 447.2 638.9 0 830.6 ] endobj -221 0 obj +213 0 obj [312.5 0 0 562.5 562.5 562.5 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 799.8 812.5 862.3 0 707.2 0 879.6 419 0 0 675.9 1067.1 0 0 0 0 0 625 0 0 0 1162 0 0 0 0 0 0 0 0 0 546.9 625 500 625 513.3 343.7 562.5 625 312.5 0 593.7 312.5 937.5 625 562.5 625 0 459.5 443.8 437.5 625 593.7 812.5 ] endobj -223 0 obj +215 0 obj << /Length1 1831 /Length2 13349 /Length3 0 /Length 15180 >> [BINARY STREAM] endobj -222 0 obj -<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 223 0 R >> +214 0 obj +<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 215 0 R >> endobj -225 0 obj +217 0 obj << /Length1 1948 /Length2 12653 /Length3 0 /Length 14601 >> [BINARY STREAM] endobj -224 0 obj -<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 225 0 R >> +216 0 obj +<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 217 0 R >> endobj -227 0 obj +219 0 obj << /Length1 2091 /Length2 16814 /Length3 0 /Length 18905 >> [BINARY STREAM] endobj -226 0 obj -<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 227 0 R >> +218 0 obj +<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 219 0 R >> endobj -229 0 obj +221 0 obj << /Length1 1766 /Length2 11604 /Length3 0 /Length 13370 >> [BINARY STREAM] endobj -228 0 obj -<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 229 0 R >> +220 0 obj +<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 221 0 R >> endobj -230 0 obj +222 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2261,10 +2276,10 @@ end %%EOF endstream endobj -71 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 222 0 R /FirstChar 49 /LastChar 119 /Widths 220 0 R /ToUnicode 230 0 R >> +70 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 214 0 R /FirstChar 49 /LastChar 119 /Widths 212 0 R /ToUnicode 222 0 R >> endobj -231 0 obj +223 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2384,10 +2399,10 @@ end %%EOF endstream endobj -70 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 224 0 R /FirstChar 46 /LastChar 119 /Widths 221 0 R /ToUnicode 231 0 R >> +69 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 216 0 R /FirstChar 46 /LastChar 119 /Widths 213 0 R /ToUnicode 223 0 R >> endobj -232 0 obj +224 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2507,10 +2522,10 @@ end %%EOF endstream endobj -73 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 226 0 R /FirstChar 12 /LastChar 122 /Widths 214 0 R /ToUnicode 232 0 R >> +72 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 218 0 R /FirstChar 12 /LastChar 122 /Widths 206 0 R /ToUnicode 224 0 R >> endobj -233 0 obj +225 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2630,265 +2645,257 @@ end %%EOF endstream endobj -78 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 228 0 R /FirstChar 46 /LastChar 87 /Widths 213 0 R /ToUnicode 233 0 R >> +77 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 220 0 R /FirstChar 46 /LastChar 87 /Widths 205 0 R /ToUnicode 225 0 R >> endobj -74 0 obj -<< /Type /Pages /Parent 234 0 R /Count 10 /Kids [ 68 0 R 76 0 R 93 0 R 96 0 R 106 0 R 109 0 R 122 0 R 130 0 R 146 0 R 149 0 R ] >> +73 0 obj +<< /Type /Pages /Parent 226 0 R /Count 10 /Kids [ 67 0 R 75 0 R 91 0 R 94 0 R 103 0 R 106 0 R 118 0 R 126 0 R 142 0 R 145 0 R ] >> endobj -164 0 obj -<< /Type /Pages /Parent 234 0 R /Count 7 /Kids [ 162 0 R 166 0 R 175 0 R 178 0 R 192 0 R 195 0 R 205 0 R ] >> +159 0 obj +<< /Type /Pages /Parent 226 0 R /Count 7 /Kids [ 157 0 R 161 0 R 169 0 R 172 0 R 185 0 R 188 0 R 197 0 R ] >> endobj -234 0 obj -<< /Type /Pages /Count 17 /Kids [ 74 0 R 164 0 R ] >> +226 0 obj +<< /Type /Pages /Count 17 /Kids [ 73 0 R 159 0 R ] >> endobj -235 0 obj -<< /Type /Catalog /Pages 234 0 R /MarkInfo 207 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 203 0 R >> +227 0 obj +<< /Type /Catalog /Pages 226 0 R /MarkInfo 199 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 195 0 R >> endobj -236 0 obj +228 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 237 +0 229 0000000010 65535 f -0000027404 00000 n -0000027451 00000 n -0000027473 00000 n -0000027495 00000 n -0000050956 00000 n -0000027554 00000 n -0000030747 00000 n -0000033105 00000 n -0000031625 00000 n +0000027939 00000 n +0000027986 00000 n +0000028008 00000 n +0000028030 00000 n +0000051047 00000 n +0000028089 00000 n +0000031215 00000 n +0000033789 00000 n +0000032157 00000 n 0000000012 00000 f -0000031693 00000 n +0000032225 00000 n 0000000014 00000 f -0000031763 00000 n +0000032295 00000 n 0000000020 00000 f -0000032643 00000 n -0000031844 00000 n -0000032916 00000 n -0000032745 00000 n -0000033018 00000 n +0000033327 00000 n +0000032376 00000 n +0000033600 00000 n +0000033429 00000 n +0000033702 00000 n 0000000000 00000 f -0000033166 00000 n -0000033304 00000 n -0000033394 00000 n -0000033512 00000 n -0000033602 00000 n -0000033707 00000 n -0000033848 00000 n +0000033850 00000 n 0000033988 00000 n -0000034134 00000 n -0000034303 00000 n -0000034476 00000 n -0000034599 00000 n -0000034741 00000 n -0000034906 00000 n -0000035023 00000 n -0000035189 00000 n -0000035362 00000 n -0000035485 00000 n +0000034078 00000 n +0000034196 00000 n +0000034286 00000 n +0000034391 00000 n +0000034560 00000 n +0000034706 00000 n +0000034875 00000 n +0000035048 00000 n +0000035171 00000 n +0000035313 00000 n +0000035478 00000 n 0000035595 00000 n -0000035769 00000 n -0000035944 00000 n -0000036067 00000 n -0000036217 00000 n -0000036392 00000 n +0000035761 00000 n +0000035934 00000 n +0000036057 00000 n +0000036167 00000 n +0000036341 00000 n 0000036516 00000 n -0000036619 00000 n -0000036805 00000 n -0000036980 00000 n -0000037104 00000 n -0000037246 00000 n -0000037421 00000 n -0000037545 00000 n -0000037719 00000 n -0000037894 00000 n -0000038018 00000 n -0000038184 00000 n -0000038359 00000 n -0000038483 00000 n -0000038625 00000 n -0000038792 00000 n -0000038895 00000 n -0000039065 00000 n -0000039240 00000 n +0000036639 00000 n +0000036789 00000 n +0000036964 00000 n +0000037088 00000 n +0000037191 00000 n +0000037377 00000 n +0000037552 00000 n +0000037676 00000 n +0000037818 00000 n +0000037993 00000 n +0000038117 00000 n +0000038291 00000 n +0000038466 00000 n +0000038590 00000 n +0000038756 00000 n +0000038931 00000 n +0000039055 00000 n +0000039197 00000 n 0000039364 00000 n -0000039526 00000 n -0000039701 00000 n -0000005347 00000 n -0000005212 00000 n +0000039467 00000 n +0000039637 00000 n +0000039812 00000 n +0000039936 00000 n +0000040098 00000 n +0000040273 00000 n +0000005350 00000 n +0000005215 00000 n 0000000020 00000 n -0000133392 00000 n -0000131440 00000 n -0000065433 00000 n -0000135339 00000 n -0000137451 00000 n -0000005823 00000 n -0000005688 00000 n -0000005446 00000 n -0000137290 00000 n -0000039825 00000 n -0000039930 00000 n -0000040099 00000 n -0000040239 00000 n -0000040371 00000 n -0000040577 00000 n -0000040750 00000 n -0000040873 00000 n -0000041087 00000 n -0000041260 00000 n -0000041383 00000 n -0000041565 00000 n -0000041738 00000 n -0000009274 00000 n -0000009139 00000 n -0000005898 00000 n -0000009951 00000 n -0000009816 00000 n -0000009361 00000 n -0000041861 00000 n -0000041967 00000 n -0000042135 00000 n -0000042277 00000 n -0000042419 00000 n -0000042526 00000 n -0000042671 00000 n -0000011123 00000 n -0000010985 00000 n -0000010038 00000 n -0000011826 00000 n -0000011688 00000 n -0000011211 00000 n -0000042787 00000 n -0000042912 00000 n -0000043078 00000 n -0000043221 00000 n -0000043364 00000 n -0000043472 00000 n -0000043617 00000 n -0000043716 00000 n -0000043828 00000 n -0000043954 00000 n -0000014088 00000 n -0000013950 00000 n -0000011914 00000 n -0000044099 00000 n -0000044208 00000 n -0000044410 00000 n -0000044547 00000 n -0000044655 00000 n -0000015367 00000 n -0000015229 00000 n -0000014176 00000 n -0000044800 00000 n -0000044917 00000 n -0000045095 00000 n -0000045232 00000 n -0000045341 00000 n -0000045558 00000 n -0000045695 00000 n -0000045803 00000 n -0000045948 00000 n -0000046057 00000 n -0000046230 00000 n -0000046367 00000 n -0000046475 00000 n -0000017511 00000 n -0000017373 00000 n -0000015467 00000 n -0000018323 00000 n -0000018185 00000 n -0000017611 00000 n -0000046620 00000 n -0000046729 00000 n -0000046903 00000 n -0000047046 00000 n -0000047189 00000 n -0000047297 00000 n -0000047442 00000 n -0000047541 00000 n -0000047653 00000 n -0000047779 00000 n -0000020497 00000 n -0000020357 00000 n -0000018411 00000 n -0000137598 00000 n -0000021306 00000 n -0000021166 00000 n -0000020585 00000 n -0000047924 00000 n -0000048033 00000 n -0000048199 00000 n -0000048342 00000 n -0000048485 00000 n -0000048593 00000 n -0000022366 00000 n -0000022226 00000 n -0000021394 00000 n -0000023170 00000 n -0000023030 00000 n -0000022454 00000 n -0000048738 00000 n -0000048846 00000 n -0000048955 00000 n -0000049125 00000 n -0000049268 00000 n -0000049411 00000 n -0000049519 00000 n -0000049664 00000 n -0000049763 00000 n -0000049875 00000 n -0000050001 00000 n -0000025454 00000 n -0000025314 00000 n -0000023258 00000 n -0000026260 00000 n -0000026120 00000 n -0000025542 00000 n -0000050146 00000 n -0000050255 00000 n -0000050417 00000 n -0000050560 00000 n -0000050703 00000 n -0000050811 00000 n -0000051095 00000 n -0000027316 00000 n -0000027176 00000 n -0000026348 00000 n -0000027517 00000 n -0000028281 00000 n -0000029193 00000 n -0000030144 00000 n -0000030692 00000 n -0000031419 00000 n -0000063271 00000 n -0000063460 00000 n -0000063859 00000 n -0000064483 00000 n -0000063892 00000 n -0000064706 00000 n -0000065589 00000 n -0000065792 00000 n -0000066054 00000 n -0000081637 00000 n -0000066356 00000 n -0000096548 00000 n -0000081846 00000 n -0000115763 00000 n -0000096757 00000 n -0000129441 00000 n -0000115970 00000 n -0000129650 00000 n -0000131602 00000 n -0000133554 00000 n -0000135500 00000 n -0000137725 00000 n -0000137797 00000 n -0000137916 00000 n +0000133483 00000 n +0000131531 00000 n +0000065524 00000 n +0000135430 00000 n +0000137542 00000 n +0000005826 00000 n +0000005691 00000 n +0000005449 00000 n +0000137381 00000 n +0000040397 00000 n +0000040502 00000 n +0000040699 00000 n +0000040831 00000 n +0000041037 00000 n +0000041210 00000 n +0000041333 00000 n +0000041547 00000 n +0000041720 00000 n +0000041843 00000 n +0000042025 00000 n +0000042198 00000 n +0000009280 00000 n +0000009145 00000 n +0000005901 00000 n +0000009957 00000 n +0000009822 00000 n +0000009367 00000 n +0000042321 00000 n +0000042426 00000 n +0000042657 00000 n +0000042792 00000 n +0000042898 00000 n +0000043042 00000 n +0000011186 00000 n +0000011048 00000 n +0000010044 00000 n +0000011889 00000 n +0000011751 00000 n +0000011274 00000 n +0000043158 00000 n +0000043283 00000 n +0000043513 00000 n +0000043650 00000 n +0000043758 00000 n +0000043903 00000 n +0000044002 00000 n +0000044114 00000 n +0000044240 00000 n +0000014208 00000 n +0000014070 00000 n +0000011977 00000 n +0000044385 00000 n +0000044494 00000 n +0000044732 00000 n +0000044869 00000 n +0000044977 00000 n +0000015532 00000 n +0000015394 00000 n +0000014296 00000 n +0000045122 00000 n +0000045239 00000 n +0000045453 00000 n +0000045590 00000 n +0000045699 00000 n +0000045952 00000 n +0000046089 00000 n +0000046197 00000 n +0000046342 00000 n +0000046451 00000 n +0000046660 00000 n +0000046797 00000 n +0000046905 00000 n +0000017818 00000 n +0000017680 00000 n +0000015632 00000 n +0000018630 00000 n +0000018492 00000 n +0000017918 00000 n +0000047051 00000 n +0000047160 00000 n +0000047398 00000 n +0000047535 00000 n +0000047643 00000 n +0000047788 00000 n +0000047887 00000 n +0000047999 00000 n +0000048125 00000 n +0000020861 00000 n +0000020721 00000 n +0000018718 00000 n +0000137689 00000 n +0000021670 00000 n +0000021530 00000 n +0000020949 00000 n +0000048270 00000 n +0000048379 00000 n +0000048609 00000 n +0000048746 00000 n +0000048854 00000 n +0000022787 00000 n +0000022647 00000 n +0000021758 00000 n +0000023591 00000 n +0000023451 00000 n +0000022875 00000 n +0000048999 00000 n +0000049107 00000 n +0000049216 00000 n +0000049450 00000 n +0000049587 00000 n +0000049695 00000 n +0000049840 00000 n +0000049939 00000 n +0000050051 00000 n +0000050177 00000 n +0000025932 00000 n +0000025792 00000 n +0000023679 00000 n +0000026738 00000 n +0000026598 00000 n +0000026020 00000 n +0000050322 00000 n +0000050431 00000 n +0000050657 00000 n +0000050794 00000 n +0000050902 00000 n +0000051186 00000 n +0000027851 00000 n +0000027711 00000 n +0000026826 00000 n +0000028052 00000 n +0000028893 00000 n +0000029805 00000 n +0000030756 00000 n +0000031160 00000 n +0000031994 00000 n +0000063362 00000 n +0000063551 00000 n +0000063950 00000 n +0000064574 00000 n +0000063983 00000 n +0000064797 00000 n +0000065680 00000 n +0000065883 00000 n +0000066145 00000 n +0000081728 00000 n +0000066447 00000 n +0000096639 00000 n +0000081937 00000 n +0000115854 00000 n +0000096848 00000 n +0000129532 00000 n +0000116061 00000 n +0000129741 00000 n +0000131693 00000 n +0000133645 00000 n +0000135591 00000 n +0000137816 00000 n +0000137888 00000 n +0000138007 00000 n trailer -<< /Size 237 /Root 235 0 R /Info 236 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 229 /Root 227 0 R /Info 228 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -138049 +138140 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.tpf index af1539f99..77379fca4 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-no-hyperref.tpf @@ -1,14 +1,14 @@ %PDF-2.0 %ÐÔÅØ -68 0 obj +67 0 obj << -/Length 9648 +/Length 9651 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Con)29(ten)29(ts)]TJ ET @@ -230,23 +230,23 @@ ET EMC endstream endobj -27 0 obj +26 0 obj << /Type /Page -/Contents 68 0 R -/Resources 67 0 R +/Contents 67 0 R +/Resources 66 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 74 0 R +/Parent 73 0 R >> endobj -67 0 obj +66 0 obj << /ExtGState 1 0 R -/Font << /F48 69 0 R /F46 70 0 R /F50 71 0 R /F53 72 0 R /F45 73 0 R >> +/Font << /F48 68 0 R /F46 69 0 R /F50 70 0 R /F53 71 0 R /F45 72 0 R >> >> endobj -77 0 obj +76 0 obj << /Length 172 >> @@ -261,31 +261,31 @@ EMC EMC endstream endobj -76 0 obj +75 0 obj << /Type /Page -/Contents 77 0 R -/Resources 75 0 R +/Contents 76 0 R +/Resources 74 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 74 0 R +/Parent 73 0 R >> endobj -75 0 obj +74 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F54 78 0 R /F53 72 0 R >> +/Font << /F45 72 0 R /F54 77 0 R /F53 71 0 R >> >> endobj -94 0 obj +92 0 obj << -/Length 5760 +/Length 5763 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(List)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 51.767 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 29.559 0 Td [(Figures)]TJ ET @@ -363,23 +363,23 @@ ET EMC endstream endobj -82 0 obj +80 0 obj << /Type /Page -/Contents 94 0 R -/Resources 93 0 R +/Contents 92 0 R +/Resources 91 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 74 0 R +/Parent 73 0 R >> endobj -93 0 obj +91 0 obj << /ExtGState 1 0 R -/Font << /F48 69 0 R /F53 72 0 R /F45 73 0 R >> +/Font << /F48 68 0 R /F53 71 0 R /F45 72 0 R >> >> endobj -97 0 obj +95 0 obj << /Length 267 >> @@ -394,41 +394,46 @@ EMC EMC endstream endobj -96 0 obj +94 0 obj << /Type /Page -/Contents 97 0 R -/Resources 95 0 R +/Contents 95 0 R +/Resources 93 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 3 -/Parent 74 0 R +/Parent 73 0 R >> endobj -95 0 obj +93 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -107 0 obj +104 0 obj << -/Length 595 +/Length 659 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(1)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 192.617 583.445 Td [(1)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(In)29(tro)-29(duction)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Some)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(collection)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 44.267 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(.)-167(.)-166(.)]TJ ET @@ -440,23 +445,23 @@ ET EMC endstream endobj -101 0 obj +98 0 obj << /Type /Page -/Contents 107 0 R -/Resources 106 0 R +/Contents 104 0 R +/Resources 103 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 4 -/Parent 74 0 R +/Parent 73 0 R >> endobj -106 0 obj +103 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -111 0 obj +108 0 obj << /Length 278 >> @@ -471,51 +476,56 @@ EMC EMC endstream endobj -110 0 obj +107 0 obj << /Type /Page -/Contents 111 0 R -/Resources 109 0 R +/Contents 108 0 R +/Resources 106 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 5 -/Parent 74 0 R +/Parent 73 0 R >> endobj -109 0 obj +106 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -124 0 obj +120 0 obj << -/Length 1179 +/Length 1243 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(2)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(2)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 69.501 0 Td [(Bears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.79 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.067 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(2.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 206.333 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(2.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 257.684 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.301 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ ET @@ -527,25 +537,25 @@ ET EMC endstream endobj -115 0 obj +111 0 obj << /Type /Page -/Contents 124 0 R -/Resources 123 0 R +/Contents 120 0 R +/Resources 119 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 6 -/Parent 125 0 R +/Parent 121 0 R >> endobj -123 0 obj +119 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -133 0 obj +129 0 obj << -/Length 646 +/Length 724 >> stream /opacity1 gs @@ -554,17 +564,22 @@ BT /F45 9.9626 Tf 160.667 686.127 Td [(8)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 206.759 0 Td [(CHAPTER)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 53.536 0 Td [(2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 15.493 0 Td [(SWISS)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 33.755 0 Td [(BEARS)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 160.667 658.164 Td [(2.1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 196.604 658.164 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 196.604 658.164 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F56 14.3462 Tf 48.48 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 160.667 636.346 Td [(Switzerland)]TJ ET @@ -573,25 +588,25 @@ EMC EMC endstream endobj -129 0 obj +125 0 obj << /Type /Page -/Contents 133 0 R -/Resources 132 0 R +/Contents 129 0 R +/Resources 128 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 7 -/Parent 125 0 R +/Parent 121 0 R >> endobj -132 0 obj +128 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R /F56 134 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R /F56 130 0 R >> >> endobj -150 0 obj +146 0 obj << -/Length 1213 +/Length 1453 >> stream /opacity1 gs @@ -600,42 +615,57 @@ BT /F54 9.9626 Tf 106.869 686.127 Td [(2.2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 23.241 0 Td [(HOBBIES)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 315.49 0 Td [(9)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 106.869 658.164 Td [(2.2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 142.806 658.164 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 142.806 658.164 Td [(Hobbies)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 106.869 634.353 Td [(2.2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 147.955 634.353 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 147.955 634.353 Td [(Music)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 39.722 0 Td [(instrumen)31(t)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 615.966 Td [(Albhorn)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 106.869 588.08 Td [(2.2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 147.955 588.08 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 147.955 588.08 Td [(Bo)-31(oks)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 569.693 Td [(Oh,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 19.367 0 Td [(wie)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.707 0 Td [(sc)28(h\366n)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.446 0 Td [(ist)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 13.889 0 Td [(P)28(anama)]TJ ET @@ -644,23 +674,23 @@ EMC EMC endstream endobj -138 0 obj +134 0 obj << /Type /Page -/Contents 150 0 R -/Resources 149 0 R +/Contents 146 0 R +/Resources 145 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 8 -/Parent 125 0 R +/Parent 121 0 R >> endobj -149 0 obj +145 0 obj << /ExtGState 1 0 R -/Font << /F54 78 0 R /F53 72 0 R /F45 73 0 R /F56 134 0 R /F50 71 0 R >> +/Font << /F54 77 0 R /F53 71 0 R /F45 72 0 R /F56 130 0 R /F50 70 0 R >> >> endobj -153 0 obj +149 0 obj << /Length 326 >> @@ -675,51 +705,56 @@ EMC EMC endstream endobj -152 0 obj +148 0 obj << /Type /Page -/Contents 153 0 R -/Resources 151 0 R +/Contents 149 0 R +/Resources 147 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 9 -/Parent 125 0 R +/Parent 121 0 R >> endobj -151 0 obj +147 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -166 0 obj +161 0 obj << -/Length 1138 +/Length 1202 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(3)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(3)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 83.024 0 Td [(b)-29(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.204 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(3.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 202.958 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(3.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 254.308 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.817 0 Td [(b)-28(ear)]TJ ET @@ -731,23 +766,23 @@ ET EMC endstream endobj -157 0 obj +152 0 obj << /Type /Page -/Contents 166 0 R -/Resources 165 0 R +/Contents 161 0 R +/Resources 160 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 10 -/Parent 125 0 R +/Parent 121 0 R >> endobj -165 0 obj +160 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -169 0 obj +164 0 obj << /Length 328 >> @@ -762,41 +797,46 @@ EMC EMC endstream endobj -168 0 obj +163 0 obj << /Type /Page -/Contents 169 0 R -/Resources 167 0 R +/Contents 164 0 R +/Resources 162 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 11 -/Parent 125 0 R +/Parent 121 0 R >> endobj -167 0 obj +162 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -178 0 obj +172 0 obj << -/Length 529 +/Length 593 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(4)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(4)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Mask)29(ed)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 95.581 0 Td [(b)-29(ear)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -808,23 +848,23 @@ ET EMC endstream endobj -173 0 obj +167 0 obj << /Type /Page -/Contents 178 0 R -/Resources 177 0 R +/Contents 172 0 R +/Resources 171 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 12 -/Parent 179 0 R +/Parent 173 0 R >> endobj -177 0 obj +171 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -182 0 obj +176 0 obj << /Length 326 >> @@ -839,51 +879,56 @@ EMC EMC endstream endobj -181 0 obj +175 0 obj << /Type /Page -/Contents 182 0 R -/Resources 180 0 R +/Contents 176 0 R +/Resources 174 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 13 -/Parent 179 0 R +/Parent 173 0 R >> endobj -180 0 obj +174 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -196 0 obj +189 0 obj << -/Length 1196 +/Length 1260 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(5)]TJ +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 192.617 583.445 Td [(5)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 103.915 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.694 0 Td [(5.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 218.189 443.14 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(5.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 269.539 443.14 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(duc)28(k)]TJ ET @@ -895,23 +940,23 @@ ET EMC endstream endobj -187 0 obj +180 0 obj << /Type /Page -/Contents 196 0 R -/Resources 195 0 R +/Contents 189 0 R +/Resources 188 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 14 -/Parent 179 0 R +/Parent 173 0 R >> endobj -195 0 obj +188 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -199 0 obj +192 0 obj << /Length 327 >> @@ -926,23 +971,23 @@ EMC EMC endstream endobj -198 0 obj +191 0 obj << /Type /Page -/Contents 199 0 R -/Resources 197 0 R +/Contents 192 0 R +/Resources 190 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 15 -/Parent 179 0 R +/Parent 173 0 R >> endobj -197 0 obj +190 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -207 0 obj +199 0 obj << /Type /Metadata /Subtype /XML /Length 12083 @@ -1185,25 +1230,30 @@ stream endstream endobj -209 0 obj +201 0 obj << -/Length 527 +/Length 591 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 106.869 583.445 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.748 0 Td [(6)]TJ +/F47 20.6625 Tf 192.617 583.445 Td [(6)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 533.631 Td [(Witc)29(h)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 77.978 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 106.869 481.826 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1215,20 +1265,20 @@ ET EMC endstream endobj -203 0 obj +195 0 obj << /Type /Page -/Contents 209 0 R -/Resources 208 0 R +/Contents 201 0 R +/Resources 200 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 16 -/Parent 179 0 R +/Parent 173 0 R >> endobj -208 0 obj +200 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj 1 0 obj @@ -1243,47 +1293,46 @@ endobj 4 0 obj << >> endobj -210 0 obj +202 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 26 0 R 30 0 R 31 0 R 30 0 R 30 0 R 33 0 R 33 0 R 36 0 R 37 0 R 36 0 R 36 0 R 40 0 R 41 0 R 40 0 R 40 0 R 43 0 R 44 0 R 43 0 R 43 0 R 47 0 R 48 0 R 47 0 R 47 0 R 50 0 R 51 0 R 50 0 R 50 0 R 53 0 R 54 0 R 53 0 R 53 0 R 56 0 R 57 0 R 56 0 R 56 0 R 59 0 R 59 0 R 62 0 R 63 0 R 62 0 R 62 0 R 65 0 R 66 0 R 65 0 R 65 0 R ] +<< /Nums [0 [ 25 0 R 29 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 35 0 R 36 0 R 35 0 R 35 0 R 39 0 R 40 0 R 39 0 R 39 0 R 42 0 R 43 0 R 42 0 R 42 0 R 46 0 R 47 0 R 46 0 R 46 0 R 49 0 R 50 0 R 49 0 R 49 0 R 52 0 R 53 0 R 52 0 R 52 0 R 55 0 R 56 0 R 55 0 R 55 0 R 58 0 R 58 0 R 61 0 R 62 0 R 61 0 R 61 0 R 64 0 R 65 0 R 64 0 R 64 0 R ] 1 [ ] -2 [ 81 0 R 85 0 R 86 0 R 85 0 R 85 0 R 88 0 R 89 0 R 88 0 R 88 0 R 91 0 R 92 0 R 91 0 R 91 0 R ] +2 [ 79 0 R 83 0 R 84 0 R 83 0 R 83 0 R 86 0 R 87 0 R 86 0 R 86 0 R 89 0 R 90 0 R 89 0 R 89 0 R ] 3 [ ] -4 [ 100 0 R 102 0 R 104 0 R ] +4 [ 97 0 R 99 0 R 97 0 R 101 0 R ] 5 [ ] -6 [ 114 0 R 116 0 R 118 0 R 121 0 R 122 0 R ] -7 [ 128 0 R 127 0 R 131 0 R ] -8 [ 137 0 R 136 0 R 141 0 R 140 0 R 143 0 R 146 0 R 145 0 R 148 0 R ] +6 [ 110 0 R 112 0 R 110 0 R 114 0 R 117 0 R 118 0 R ] +7 [ 124 0 R 123 0 R 123 0 R 127 0 R ] +8 [ 133 0 R 132 0 R 132 0 R 137 0 R 136 0 R 136 0 R 139 0 R 142 0 R 141 0 R 141 0 R 144 0 R ] 9 [ ] -10 [ 156 0 R 158 0 R 160 0 R 163 0 R 164 0 R ] +10 [ 151 0 R 153 0 R 151 0 R 155 0 R 158 0 R 159 0 R ] 11 [ ] -12 [ 172 0 R 174 0 R 176 0 R ] +12 [ 166 0 R 168 0 R 166 0 R 170 0 R ] 13 [ ] -14 [ 186 0 R 188 0 R 190 0 R 193 0 R 194 0 R ] +14 [ 179 0 R 181 0 R 179 0 R 183 0 R 186 0 R 187 0 R ] 15 [ ] -16 [ 202 0 R 204 0 R 206 0 R ] +16 [ 194 0 R 196 0 R 194 0 R 198 0 R ] ] >> endobj -211 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 32 0 R (ID.0013) 33 0 R (ID.0014) 34 0 R (ID.0015) 35 0 R (ID.0016) 36 0 R (ID.0017) 37 0 R (ID.0018) 38 0 R (ID.0019) 39 0 R (ID.0020) 40 0 R (ID.0021) 41 0 R (ID.0022) 42 0 R (ID.0023) 43 0 R (ID.0024) 44 0 R (ID.0025) 45 0 R (ID.0026) 46 0 R (ID.0027) 47 0 R (ID.0028) 48 0 R (ID.0029) 49 0 R (ID.0030) 50 0 R (ID.0031) 51 0 R (ID.0032) 52 0 R (ID.0033) 53 0 R (ID.0034) 54 0 R (ID.0035) 55 0 R (ID.0036) 56 0 R (ID.0037) 57 0 R (ID.0038) 58 0 R (ID.0039) 59 0 R (ID.0040) 60 0 R (ID.0041) 61 0 R (ID.0042) 62 0 R (ID.0043) 63 0 R (ID.0044) 64 0 R (ID.0045) 65 0 R (ID.0046) 66 0 R (ID.0047) 79 0 R (ID.0048) 80 0 R (ID.0049) 81 0 R (ID.0050) 83 0 R (ID.0051) 84 0 R ] >> +203 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 32 0 R (ID.0013) 33 0 R (ID.0014) 34 0 R (ID.0015) 35 0 R (ID.0016) 36 0 R (ID.0017) 37 0 R (ID.0018) 38 0 R (ID.0019) 39 0 R (ID.0020) 40 0 R (ID.0021) 41 0 R (ID.0022) 42 0 R (ID.0023) 43 0 R (ID.0024) 44 0 R (ID.0025) 45 0 R (ID.0026) 46 0 R (ID.0027) 47 0 R (ID.0028) 48 0 R (ID.0029) 49 0 R (ID.0030) 50 0 R (ID.0031) 51 0 R (ID.0032) 52 0 R (ID.0033) 53 0 R (ID.0034) 54 0 R (ID.0035) 55 0 R (ID.0036) 56 0 R (ID.0037) 57 0 R (ID.0038) 58 0 R (ID.0039) 59 0 R (ID.0040) 60 0 R (ID.0041) 61 0 R (ID.0042) 62 0 R (ID.0043) 63 0 R (ID.0044) 64 0 R (ID.0045) 65 0 R (ID.0046) 78 0 R (ID.0047) 79 0 R (ID.0048) 81 0 R (ID.0049) 82 0 R (ID.0050) 83 0 R (ID.0051) 84 0 R ] >> endobj -212 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 85 0 R (ID.0053) 86 0 R (ID.0054) 87 0 R (ID.0055) 88 0 R (ID.0056) 89 0 R (ID.0057) 90 0 R (ID.0058) 91 0 R (ID.0059) 92 0 R (ID.0060) 98 0 R (ID.0061) 99 0 R (ID.0062) 100 0 R (ID.0063) 102 0 R (ID.0064) 103 0 R (ID.0065) 104 0 R (ID.0066) 105 0 R (ID.0067) 112 0 R (ID.0068) 113 0 R (ID.0069) 114 0 R (ID.0070) 116 0 R (ID.0071) 117 0 R (ID.0072) 118 0 R (ID.0073) 119 0 R (ID.0074) 120 0 R (ID.0075) 121 0 R (ID.0076) 122 0 R (ID.0077) 126 0 R (ID.0078) 127 0 R (ID.0079) 128 0 R (ID.0080) 130 0 R (ID.0081) 131 0 R (ID.0082) 135 0 R (ID.0083) 136 0 R (ID.0084) 137 0 R (ID.0085) 139 0 R (ID.0086) 140 0 R (ID.0087) 141 0 R (ID.0088) 142 0 R (ID.0089) 143 0 R (ID.0090) 144 0 R (ID.0091) 145 0 R (ID.0092) 146 0 R (ID.0093) 147 0 R (ID.0094) 148 0 R (ID.0095) 154 0 R (ID.0096) 155 0 R (ID.0097) 156 0 R (ID.0098) 158 0 R (ID.0099) 159 0 R (ID.0100) 160 0 R (ID.0101) 161 0 R ] >> +204 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 85 0 R (ID.0053) 86 0 R (ID.0054) 87 0 R (ID.0055) 88 0 R (ID.0056) 89 0 R (ID.0057) 90 0 R (ID.0058) 96 0 R (ID.0059) 97 0 R (ID.0060) 99 0 R (ID.0061) 100 0 R (ID.0062) 101 0 R (ID.0063) 102 0 R (ID.0064) 109 0 R (ID.0065) 110 0 R (ID.0066) 112 0 R (ID.0067) 113 0 R (ID.0068) 114 0 R (ID.0069) 115 0 R (ID.0070) 116 0 R (ID.0071) 117 0 R (ID.0072) 118 0 R (ID.0073) 122 0 R (ID.0074) 123 0 R (ID.0075) 124 0 R (ID.0076) 126 0 R (ID.0077) 127 0 R (ID.0078) 131 0 R (ID.0079) 132 0 R (ID.0080) 133 0 R (ID.0081) 135 0 R (ID.0082) 136 0 R (ID.0083) 137 0 R (ID.0084) 138 0 R (ID.0085) 139 0 R (ID.0086) 140 0 R (ID.0087) 141 0 R (ID.0088) 142 0 R (ID.0089) 143 0 R (ID.0090) 144 0 R (ID.0091) 150 0 R (ID.0092) 151 0 R (ID.0093) 153 0 R (ID.0094) 154 0 R (ID.0095) 155 0 R (ID.0096) 156 0 R (ID.0097) 157 0 R (ID.0098) 158 0 R (ID.0099) 159 0 R (ID.0100) 165 0 R (ID.0101) 166 0 R ] >> endobj -213 0 obj -<< /Limits [(ID.0102) (ID.0127)]/Names [(ID.0102) 162 0 R (ID.0103) 163 0 R (ID.0104) 164 0 R (ID.0105) 170 0 R (ID.0106) 171 0 R (ID.0107) 172 0 R (ID.0108) 174 0 R (ID.0109) 175 0 R (ID.0110) 176 0 R (ID.0111) 183 0 R (ID.0112) 184 0 R (ID.0113) 185 0 R (ID.0114) 186 0 R (ID.0115) 188 0 R (ID.0116) 189 0 R (ID.0117) 190 0 R (ID.0118) 191 0 R (ID.0119) 192 0 R (ID.0120) 193 0 R (ID.0121) 194 0 R (ID.0122) 200 0 R (ID.0123) 201 0 R (ID.0124) 202 0 R (ID.0125) 204 0 R (ID.0126) 205 0 R (ID.0127) 206 0 R ] >> +205 0 obj +<< /Limits [(ID.0102) (ID.0119)]/Names [(ID.0102) 168 0 R (ID.0103) 169 0 R (ID.0104) 170 0 R (ID.0105) 177 0 R (ID.0106) 178 0 R (ID.0107) 179 0 R (ID.0108) 181 0 R (ID.0109) 182 0 R (ID.0110) 183 0 R (ID.0111) 184 0 R (ID.0112) 185 0 R (ID.0113) 186 0 R (ID.0114) 187 0 R (ID.0115) 193 0 R (ID.0116) 194 0 R (ID.0117) 196 0 R (ID.0118) 197 0 R (ID.0119) 198 0 R ] >> endobj -214 0 obj -<< /Kids [211 0 R 212 0 R 213 0 R] >> +206 0 obj +<< /Kids [203 0 R 204 0 R 205 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -215 0 obj -<< /raggedright <> -/justify <> +207 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1299,7 +1348,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1317,411 +1366,387 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 79 0 R 98 0 R 105 0 R 183 0 R 22 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 78 0 R 96 0 R 102 0 R 177 0 R 22 0 R] /ID (ID.0002) >> endobj 22 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [119 0 R 161 0 R 191 0 R] /ID (ID.0003) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [115 0 R 156 0 R 184 0 R] /ID (ID.0003) >> endobj 23 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.0004) >> endobj 24 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 28 0 R] /ID (ID.0005) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 27 0 R] /ID (ID.0005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K 26 0 R /ID (ID.0006) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K <> /ID (ID.0006) >> endobj -26 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 25 0 R /K <> /ID (ID.0007) >> +27 0 obj +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [28 0 R 31 0 R 33 0 R 57 0 R 59 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [29 0 R 32 0 R 34 0 R 58 0 R 60 0 R] /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 97 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 99 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.0009) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [<> 31 0 R <> <>] /ID (ID.0010) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 29 0 R /K <> /ID (ID.0010) >> endobj 31 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 30 0 R /K <> /ID (ID.0011) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 102 0 R ] /K 32 0 R /ID (ID.0011) >> endobj 32 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 105 0 R ] /K 33 0 R /ID (ID.0012) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <>] /ID (ID.0012) >> endobj 33 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [<> <>] /ID (ID.0013) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 51 0 R 54 0 R] /ID (ID.0013) >> endobj 34 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [35 0 R 38 0 R 52 0 R 55 0 R] /ID (ID.0014) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 110 0 R ] /K 35 0 R /ID (ID.0014) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 113 0 R ] /K 36 0 R /ID (ID.0015) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [<> 36 0 R <> <>] /ID (ID.0015) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [<> 37 0 R <> <>] /ID (ID.0016) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 35 0 R /K <> /ID (ID.0016) >> endobj 37 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.0017) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R 44 0 R] /ID (ID.0017) >> endobj 38 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 34 0 R /K [39 0 R 42 0 R 45 0 R] /ID (ID.0018) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 123 0 R ] /K 39 0 R /ID (ID.0018) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 128 0 R ] /K 40 0 R /ID (ID.0019) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [<> 40 0 R <> <>] /ID (ID.0019) >> endobj 40 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [<> 41 0 R <> <>] /ID (ID.0020) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0020) >> endobj 41 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 40 0 R /K <> /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 132 0 R ] /K 42 0 R /ID (ID.0021) >> endobj 42 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 137 0 R ] /K 43 0 R /ID (ID.0022) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [<> 43 0 R <> <>] /ID (ID.0022) >> endobj 43 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 42 0 R /K [<> 44 0 R <> <>] /ID (ID.0023) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0023) >> endobj 44 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 43 0 R /K <> /ID (ID.0024) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 37 0 R /K [45 0 R 48 0 R] /ID (ID.0024) >> endobj 45 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [46 0 R 49 0 R] /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 136 0 R ] /K 46 0 R /ID (ID.0025) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 141 0 R ] /K 47 0 R /ID (ID.0026) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [<> 47 0 R <> <>] /ID (ID.0026) >> endobj 47 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [<> 48 0 R <> <>] /ID (ID.0027) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.0027) >> endobj 48 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0028) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 141 0 R ] /K 49 0 R /ID (ID.0028) >> endobj 49 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 146 0 R ] /K 50 0 R /ID (ID.0029) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 48 0 R /K [<> 50 0 R <> <>] /ID (ID.0029) >> endobj 50 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 49 0 R /K [<> 51 0 R <> <>] /ID (ID.0030) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0030) >> endobj 51 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 50 0 R /K <> /ID (ID.0031) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 151 0 R ] /K 52 0 R /ID (ID.0031) >> endobj 52 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 155 0 R ] /K 53 0 R /ID (ID.0032) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [<> 53 0 R <> <>] /ID (ID.0032) >> endobj 53 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 52 0 R /K [<> 54 0 R <> <>] /ID (ID.0033) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0033) >> endobj 54 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 53 0 R /K <> /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 166 0 R ] /K 55 0 R /ID (ID.0034) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 171 0 R ] /K 56 0 R /ID (ID.0035) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 54 0 R /K [<> 56 0 R <> <>] /ID (ID.0035) >> endobj 56 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [<> 57 0 R <> <>] /ID (ID.0036) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0036) >> endobj 57 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 56 0 R /K <> /ID (ID.0037) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 177 0 R ] /K 58 0 R /ID (ID.0037) >> endobj 58 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 183 0 R ] /K 59 0 R /ID (ID.0038) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 57 0 R /K [<> <>] /ID (ID.0038) >> endobj 59 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 58 0 R /K [<> <>] /ID (ID.0039) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [60 0 R 63 0 R] /ID (ID.0039) >> endobj 60 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [61 0 R 64 0 R] /ID (ID.0040) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 179 0 R ] /K 61 0 R /ID (ID.0040) >> endobj 61 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 185 0 R ] /K 62 0 R /ID (ID.0041) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [<> 62 0 R <> <>] /ID (ID.0041) >> endobj 62 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [<> 63 0 R <> <>] /ID (ID.0042) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.0042) >> endobj 63 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 62 0 R /K <> /ID (ID.0043) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 194 0 R ] /K 64 0 R /ID (ID.0043) >> endobj 64 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 201 0 R ] /K 65 0 R /ID (ID.0044) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 63 0 R /K [<> 65 0 R <> <>] /ID (ID.0044) >> endobj 65 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 64 0 R /K [<> 66 0 R <> <>] /ID (ID.0045) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 64 0 R /K <> /ID (ID.0045) >> endobj -66 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 65 0 R /K <> /ID (ID.0046) >> +78 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [79 0 R 81 0 R] /ID (ID.0046) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [80 0 R 83 0 R] /ID (ID.0047) >> -endobj -80 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 79 0 R /K 81 0 R /ID (ID.0048) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 78 0 R /K <> /ID (ID.0047) >> endobj 81 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 80 0 R /K <> /ID (ID.0049) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 78 0 R /K [82 0 R 85 0 R 88 0 R] /ID (ID.0048) >> +endobj +82 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 115 0 R ] /K 83 0 R /ID (ID.0049) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 79 0 R /K [84 0 R 87 0 R 90 0 R] /ID (ID.0050) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 82 0 R /K [<> 84 0 R <> <>] /ID (ID.0050) >> endobj 84 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 119 0 R ] /K 85 0 R /ID (ID.0051) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 83 0 R /K <> /ID (ID.0051) >> endobj 85 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 84 0 R /K [<> 86 0 R <> <>] /ID (ID.0052) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 156 0 R ] /K 86 0 R /ID (ID.0052) >> endobj 86 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 85 0 R /K <> /ID (ID.0053) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 85 0 R /K [<> 87 0 R <> <>] /ID (ID.0053) >> endobj 87 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 161 0 R ] /K 88 0 R /ID (ID.0054) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 86 0 R /K <> /ID (ID.0054) >> endobj 88 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 87 0 R /K [<> 89 0 R <> <>] /ID (ID.0055) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 184 0 R ] /K 89 0 R /ID (ID.0055) >> endobj 89 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 88 0 R /K <> /ID (ID.0056) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 88 0 R /K [<> 90 0 R <> <>] /ID (ID.0056) >> endobj 90 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 191 0 R ] /K 91 0 R /ID (ID.0057) >> -endobj -91 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 90 0 R /K [<> 92 0 R <> <>] /ID (ID.0058) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 89 0 R /K <> /ID (ID.0057) >> endobj -92 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 91 0 R /K <> /ID (ID.0059) >> +96 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [97 0 R 100 0 R] /ID (ID.0058) >> endobj -98 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [99 0 R 103 0 R] /ID (ID.0060) >> +97 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 96 0 R /K [<> 99 0 R <>] /ID (ID.0059) >> endobj 99 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 98 0 R /K [100 0 R 102 0 R] /ID (ID.0061) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 97 0 R /K <> /ID (ID.0060) >> endobj 100 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0062) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 96 0 R /K 101 0 R /ID (ID.0061) >> endobj -102 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0063) >> +101 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 100 0 R /K <> /ID (ID.0062) >> endobj -103 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 98 0 R /K 104 0 R /ID (ID.0064) >> +102 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [109 0 R 150 0 R 165 0 R] /ID (ID.0063) >> endobj -104 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 103 0 R /K <> /ID (ID.0065) >> +109 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [110 0 R 113 0 R 122 0 R 131 0 R] /ID (ID.0064) >> endobj -105 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [112 0 R 154 0 R 170 0 R] /ID (ID.0066) >> +110 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 109 0 R /K [<> 112 0 R <>] /ID (ID.0065) >> endobj 112 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [113 0 R 117 0 R 126 0 R 135 0 R] /ID (ID.0067) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 110 0 R /K <> /ID (ID.0066) >> endobj 113 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 112 0 R /K [114 0 R 116 0 R] /ID (ID.0068) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 109 0 R /K 114 0 R /ID (ID.0067) >> endobj 114 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 113 0 R /K <> /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 113 0 R /K <> /ID (ID.0068) >> +endobj +115 0 obj +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 116 0 R /ID (ID.0069) >> endobj 116 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 113 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 115 0 R /K [117 0 R 118 0 R] /ID (ID.0070) >> endobj 117 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 112 0 R /K 118 0 R /ID (ID.0071) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 116 0 R /K <> /ID (ID.0071) >> endobj 118 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 117 0 R /K <> /ID (ID.0072) >> -endobj -119 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 120 0 R /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 116 0 R /K <> /ID (ID.0072) >> endobj -120 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 119 0 R /K [121 0 R 122 0 R] /ID (ID.0074) >> +122 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 109 0 R /K [123 0 R 126 0 R] /ID (ID.0073) >> endobj -121 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 120 0 R /K <> /ID (ID.0075) >> +123 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 122 0 R /K [124 0 R <> <>] /ID (ID.0074) >> endobj -122 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 120 0 R /K <> /ID (ID.0076) >> +124 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 123 0 R /K <> /ID (ID.0075) >> endobj 126 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 112 0 R /K [127 0 R 130 0 R] /ID (ID.0077) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 122 0 R /K 127 0 R /ID (ID.0076) >> endobj 127 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 126 0 R /K [128 0 R <>] /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 126 0 R /K <> /ID (ID.0077) >> endobj -128 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 127 0 R /K <> /ID (ID.0079) >> +131 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 109 0 R /K [132 0 R 135 0 R 140 0 R] /ID (ID.0078) >> endobj -130 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 126 0 R /K 131 0 R /ID (ID.0080) >> +132 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 131 0 R /K [133 0 R <> <>] /ID (ID.0079) >> endobj -131 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 130 0 R /K <> /ID (ID.0081) >> +133 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 132 0 R /K <> /ID (ID.0080) >> endobj 135 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 112 0 R /K [136 0 R 139 0 R 144 0 R] /ID (ID.0082) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [136 0 R 138 0 R] /ID (ID.0081) >> endobj 136 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 135 0 R /K [137 0 R <>] /ID (ID.0083) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 135 0 R /K [137 0 R <> <>] /ID (ID.0082) >> endobj 137 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0084) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0083) >> +endobj +138 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 135 0 R /K 139 0 R /ID (ID.0084) >> endobj 139 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 135 0 R /K [140 0 R 142 0 R] /ID (ID.0085) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 138 0 R /K <> /ID (ID.0085) >> endobj 140 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 139 0 R /K [141 0 R <>] /ID (ID.0086) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [141 0 R 143 0 R] /ID (ID.0086) >> endobj 141 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 140 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 140 0 R /K [142 0 R <> <>] /ID (ID.0087) >> endobj 142 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 139 0 R /K 143 0 R /ID (ID.0088) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 141 0 R /K <> /ID (ID.0088) >> endobj 143 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 142 0 R /K <> /ID (ID.0089) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 140 0 R /K 144 0 R /ID (ID.0089) >> endobj 144 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 135 0 R /K [145 0 R 147 0 R] /ID (ID.0090) >> -endobj -145 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 144 0 R /K [146 0 R <>] /ID (ID.0091) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 143 0 R /K <> /ID (ID.0090) >> endobj -146 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 145 0 R /K <> /ID (ID.0092) >> +150 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [151 0 R 154 0 R] /ID (ID.0091) >> endobj -147 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 144 0 R /K 148 0 R /ID (ID.0093) >> +151 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 150 0 R /K [<> 153 0 R <>] /ID (ID.0092) >> endobj -148 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 147 0 R /K <> /ID (ID.0094) >> +153 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 151 0 R /K <> /ID (ID.0093) >> endobj 154 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [155 0 R 159 0 R] /ID (ID.0095) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 150 0 R /K 155 0 R /ID (ID.0094) >> endobj 155 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 154 0 R /K [156 0 R 158 0 R] /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 154 0 R /K <> /ID (ID.0095) >> endobj 156 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 155 0 R /K <> /ID (ID.0097) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 157 0 R /ID (ID.0096) >> +endobj +157 0 obj +<< /Type /StructElem /S /Caption /NS 11 0 R /P 156 0 R /K [158 0 R 159 0 R] /ID (ID.0097) >> endobj 158 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 155 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 157 0 R /K <> /ID (ID.0098) >> endobj 159 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 154 0 R /K 160 0 R /ID (ID.0099) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 157 0 R /K <> /ID (ID.0099) >> endobj -160 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 159 0 R /K <> /ID (ID.0100) >> -endobj -161 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 162 0 R /ID (ID.0101) >> +165 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [166 0 R 169 0 R] /ID (ID.0100) >> endobj -162 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 161 0 R /K [163 0 R 164 0 R] /ID (ID.0102) >> +166 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 165 0 R /K [<> 168 0 R <>] /ID (ID.0101) >> endobj -163 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 162 0 R /K <> /ID (ID.0103) >> +168 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 166 0 R /K <> /ID (ID.0102) >> endobj -164 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 162 0 R /K <> /ID (ID.0104) >> +169 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 170 0 R /ID (ID.0103) >> endobj 170 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [171 0 R 175 0 R] /ID (ID.0105) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 169 0 R /K <> /ID (ID.0104) >> endobj -171 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 170 0 R /K [172 0 R 174 0 R] /ID (ID.0106) >> +177 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [178 0 R 193 0 R] /ID (ID.0105) >> endobj -172 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 171 0 R /K <> /ID (ID.0107) >> +178 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 177 0 R /K [179 0 R 182 0 R] /ID (ID.0106) >> endobj -174 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 171 0 R /K <> /ID (ID.0108) >> +179 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 178 0 R /K [<> 181 0 R <>] /ID (ID.0107) >> endobj -175 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 170 0 R /K 176 0 R /ID (ID.0109) >> +181 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 179 0 R /K <> /ID (ID.0108) >> endobj -176 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 175 0 R /K <> /ID (ID.0110) >> +182 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 178 0 R /K 183 0 R /ID (ID.0109) >> endobj 183 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [184 0 R 200 0 R] /ID (ID.0111) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0110) >> endobj 184 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 183 0 R /K [185 0 R 189 0 R] /ID (ID.0112) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 185 0 R /ID (ID.0111) >> endobj 185 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 184 0 R /K [186 0 R 188 0 R] /ID (ID.0113) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 184 0 R /K [186 0 R 187 0 R] /ID (ID.0112) >> endobj 186 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 185 0 R /K <> /ID (ID.0114) >> -endobj -188 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 185 0 R /K <> /ID (ID.0115) >> -endobj -189 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 190 0 R /ID (ID.0116) >> -endobj -190 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 189 0 R /K <> /ID (ID.0117) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 185 0 R /K <> /ID (ID.0113) >> endobj -191 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 192 0 R /ID (ID.0118) >> -endobj -192 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 191 0 R /K [193 0 R 194 0 R] /ID (ID.0119) >> +187 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 185 0 R /K <> /ID (ID.0114) >> endobj 193 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 192 0 R /K <> /ID (ID.0120) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 177 0 R /K [194 0 R 197 0 R] /ID (ID.0115) >> endobj 194 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 192 0 R /K <> /ID (ID.0121) >> -endobj -200 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 183 0 R /K [201 0 R 205 0 R] /ID (ID.0122) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 193 0 R /K [<> 196 0 R <>] /ID (ID.0116) >> endobj -201 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 200 0 R /K [202 0 R 204 0 R] /ID (ID.0123) >> -endobj -202 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 201 0 R /K <> /ID (ID.0124) >> -endobj -204 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 201 0 R /K <> /ID (ID.0125) >> +196 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0117) >> endobj -205 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 200 0 R /K 206 0 R /ID (ID.0126) >> +197 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 193 0 R /K 198 0 R /ID (ID.0118) >> endobj -206 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 205 0 R /K <> /ID (ID.0127) >> +198 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K <> /ID (ID.0119) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 214 0 R /ClassMap 215 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 206 0 R /ClassMap 207 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -217 0 obj +209 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4] endobj -218 0 obj +210 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -219 0 obj +211 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5] endobj -220 0 obj +212 0 obj [555.4 555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9 499.9 722 444.3 444.3 444.3 444.3 444.3 277.7 277.7 277.7 333.3 499.9 555.4 499.9 499.9 499.9 499.9 499.9] endobj -221 0 obj +213 0 obj [333] endobj -222 0 obj +214 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -223 0 obj +215 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4] endobj -224 0 obj +216 0 obj [744 756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2 581.7 552.6 756.2] endobj -225 0 obj +217 0 obj << /Length1 1144 /Length2 1422 @@ -1730,7 +1755,7 @@ endobj >> [BINARY STREAM] endobj -226 0 obj +218 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -1743,10 +1768,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 225 0 R +/FontFile 217 0 R >> endobj -227 0 obj +219 0 obj << /Length1 727 /Length2 16664 @@ -1755,7 +1780,7 @@ endobj >> [BINARY STREAM] endobj -228 0 obj +220 0 obj << /Type /FontDescriptor /FontName /SCBPYL+SFBX1000 @@ -1768,10 +1793,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/H/I/M/S/W/a/b/c/d/e/five/four/g/h/i/k/l/n/o/one/r/s/seven/six/t/three/two/u/w) -/FontFile 227 0 R +/FontFile 219 0 R >> endobj -229 0 obj +221 0 obj << /Length1 727 /Length2 12732 @@ -1780,7 +1805,7 @@ endobj >> [BINARY STREAM] endobj -230 0 obj +222 0 obj << /Type /FontDescriptor /FontName /JELTFA+SFBX1200 @@ -1793,10 +1818,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/D/M/a/c/e/five/i/k/m/n/o/one/period/r/s/t/two/u) -/FontFile 229 0 R +/FontFile 221 0 R >> endobj -231 0 obj +223 0 obj << /Length1 727 /Length2 10542 @@ -1805,7 +1830,7 @@ endobj >> [BINARY STREAM] endobj -232 0 obj +224 0 obj << /Type /FontDescriptor /FontName /KEYWTP+SFBX1440 @@ -1818,10 +1843,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/L/b/d/e/g/i/n/o/one/period/r/s/two/u/v) -/FontFile 231 0 R +/FontFile 223 0 R >> endobj -233 0 obj +225 0 obj << /Length1 727 /Length2 10904 @@ -1830,7 +1855,7 @@ endobj >> [BINARY STREAM] endobj -234 0 obj +226 0 obj << /Type /FontDescriptor /FontName /QIXKFB+SFBX2074 @@ -1843,10 +1868,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/five/four/h/one/p/r/six/t/three/two) -/FontFile 233 0 R +/FontFile 225 0 R >> endobj -235 0 obj +227 0 obj << /Length1 727 /Length2 14147 @@ -1855,7 +1880,7 @@ endobj >> [BINARY STREAM] endobj -236 0 obj +228 0 obj << /Type /FontDescriptor /FontName /YTDFFC+SFBX2488 @@ -1868,10 +1893,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/C/F/H/I/L/M/S/W/a/b/c/d/e/f/g/h/i/k/l/n/o/r/s/t/u/w) -/FontFile 235 0 R +/FontFile 227 0 R >> endobj -237 0 obj +229 0 obj << /Length1 721 /Length2 18838 @@ -1880,7 +1905,7 @@ endobj >> [BINARY STREAM] endobj -238 0 obj +230 0 obj << /Type /FontDescriptor /FontName /VGLJTX+SFRM1000 @@ -1893,10 +1918,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/D/F/H/I/L/M/O/P/S/W/a/b/c/colon/comma/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/nine/o/odieresis/one/period/r/s/seven/six/t/three/two/u/v/w/z/zero) -/FontFile 237 0 R +/FontFile 229 0 R >> endobj -239 0 obj +231 0 obj << /Length1 727 /Length2 15302 @@ -1905,7 +1930,7 @@ endobj >> [BINARY STREAM] endobj -240 0 obj +232 0 obj << /Type /FontDescriptor /FontName /KTFFPK+SFSL1000 @@ -1918,16 +1943,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/W/five/four/one/period/three/two) -/FontFile 239 0 R +/FontFile 231 0 R >> endobj -216 0 obj +208 0 obj << /Type /Encoding /Differences [28/fi 44/comma 46/period 48/zero/one/two/three/four/five/six/seven/eight/nine/colon 65/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U 87/W 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u/v/w 122/z 246/odieresis] >> endobj -241 0 obj +233 0 obj << /Length 2030 >> @@ -2071,20 +2096,20 @@ end %%EOF endstream endobj -70 0 obj +69 0 obj << /Type /Font /Subtype /Type1 /BaseFont /SCBPYL+SFBX1000 -/FontDescriptor 228 0 R +/FontDescriptor 220 0 R /FirstChar 49 /LastChar 119 -/Widths 223 0 R -/Encoding 216 0 R -/ToUnicode 241 0 R +/Widths 215 0 R +/Encoding 208 0 R +/ToUnicode 233 0 R >> endobj -242 0 obj +234 0 obj << /Length 2030 >> @@ -2228,20 +2253,20 @@ end %%EOF endstream endobj -71 0 obj +70 0 obj << /Type /Font /Subtype /Type1 /BaseFont /JELTFA+SFBX1200 -/FontDescriptor 230 0 R +/FontDescriptor 222 0 R /FirstChar 46 /LastChar 117 -/Widths 222 0 R -/Encoding 216 0 R -/ToUnicode 242 0 R +/Widths 214 0 R +/Encoding 208 0 R +/ToUnicode 234 0 R >> endobj -243 0 obj +235 0 obj << /Length 2030 >> @@ -2385,20 +2410,20 @@ end %%EOF endstream endobj -134 0 obj +130 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KEYWTP+SFBX1440 -/FontDescriptor 232 0 R +/FontDescriptor 224 0 R /FirstChar 46 /LastChar 118 -/Widths 217 0 R -/Encoding 216 0 R -/ToUnicode 243 0 R +/Widths 209 0 R +/Encoding 208 0 R +/ToUnicode 235 0 R >> endobj -244 0 obj +236 0 obj << /Length 2030 >> @@ -2542,20 +2567,20 @@ end %%EOF endstream endobj -108 0 obj +105 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QIXKFB+SFBX2074 -/FontDescriptor 234 0 R +/FontDescriptor 226 0 R /FirstChar 49 /LastChar 116 -/Widths 218 0 R -/Encoding 216 0 R -/ToUnicode 244 0 R +/Widths 210 0 R +/Encoding 208 0 R +/ToUnicode 236 0 R >> endobj -245 0 obj +237 0 obj << /Length 2030 >> @@ -2699,20 +2724,20 @@ end %%EOF endstream endobj -69 0 obj +68 0 obj << /Type /Font /Subtype /Type1 /BaseFont /YTDFFC+SFBX2488 -/FontDescriptor 236 0 R +/FontDescriptor 228 0 R /FirstChar 66 /LastChar 119 -/Widths 224 0 R -/Encoding 216 0 R -/ToUnicode 245 0 R +/Widths 216 0 R +/Encoding 208 0 R +/ToUnicode 237 0 R >> endobj -246 0 obj +238 0 obj << /Length 2030 >> @@ -2856,20 +2881,20 @@ end %%EOF endstream endobj -73 0 obj +72 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VGLJTX+SFRM1000 -/FontDescriptor 238 0 R +/FontDescriptor 230 0 R /FirstChar 28 /LastChar 246 -/Widths 220 0 R -/Encoding 216 0 R -/ToUnicode 246 0 R +/Widths 212 0 R +/Encoding 208 0 R +/ToUnicode 238 0 R >> endobj -247 0 obj +239 0 obj << /Length 2030 >> @@ -3013,20 +3038,20 @@ end %%EOF endstream endobj -78 0 obj +77 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KTFFPK+SFSL1000 -/FontDescriptor 240 0 R +/FontDescriptor 232 0 R /FirstChar 46 /LastChar 87 -/Widths 219 0 R -/Encoding 216 0 R -/ToUnicode 247 0 R +/Widths 211 0 R +/Encoding 208 0 R +/ToUnicode 239 0 R >> endobj -248 0 obj +240 0 obj << /Length 654 >> @@ -3064,321 +3089,313 @@ end %%EOF endstream endobj -72 0 obj +71 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 226 0 R +/FontDescriptor 218 0 R /FirstChar 32 /LastChar 32 -/Widths 221 0 R -/ToUnicode 248 0 R +/Widths 213 0 R +/ToUnicode 240 0 R >> endobj -74 0 obj +73 0 obj << /Type /Pages /Count 6 -/Parent 249 0 R -/Kids [27 0 R 76 0 R 82 0 R 96 0 R 101 0 R 110 0 R] +/Parent 241 0 R +/Kids [26 0 R 75 0 R 80 0 R 94 0 R 98 0 R 107 0 R] >> endobj -125 0 obj +121 0 obj << /Type /Pages /Count 6 -/Parent 249 0 R -/Kids [115 0 R 129 0 R 138 0 R 152 0 R 157 0 R 168 0 R] +/Parent 241 0 R +/Kids [111 0 R 125 0 R 134 0 R 148 0 R 152 0 R 163 0 R] >> endobj -179 0 obj +173 0 obj << /Type /Pages /Count 5 -/Parent 249 0 R -/Kids [173 0 R 181 0 R 187 0 R 198 0 R 203 0 R] +/Parent 241 0 R +/Kids [167 0 R 175 0 R 180 0 R 191 0 R 195 0 R] >> endobj -249 0 obj +241 0 obj << /Type /Pages /Count 17 -/Kids [74 0 R 125 0 R 179 0 R] +/Kids [73 0 R 121 0 R 173 0 R] >> endobj -250 0 obj +242 0 obj << /Type /Catalog -/Pages 249 0 R -/MarkInfo 210 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 207 0 R +/Pages 241 0 R +/MarkInfo 202 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 199 0 R >> endobj -251 0 obj +243 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 252 +0 244 0000000010 65535 f -0000041660 00000 n -0000041707 00000 n -0000041729 00000 n -0000041751 00000 n -0000065472 00000 n -0000041810 00000 n -0000045084 00000 n -0000047442 00000 n -0000045962 00000 n +0000042367 00000 n +0000042414 00000 n +0000042436 00000 n +0000042458 00000 n +0000065715 00000 n +0000042517 00000 n +0000045725 00000 n +0000048299 00000 n +0000046667 00000 n 0000000012 00000 f -0000046030 00000 n +0000046735 00000 n 0000000014 00000 f -0000046100 00000 n +0000046805 00000 n 0000000020 00000 f -0000046980 00000 n -0000046181 00000 n -0000047253 00000 n -0000047082 00000 n -0000047355 00000 n +0000047837 00000 n +0000046886 00000 n +0000048110 00000 n +0000047939 00000 n +0000048212 00000 n 0000000000 00000 f -0000047503 00000 n -0000047641 00000 n -0000047759 00000 n -0000047849 00000 n -0000047954 00000 n -0000048095 00000 n -0000009722 00000 n -0000048233 00000 n -0000048379 00000 n -0000048548 00000 n -0000048749 00000 n -0000048870 00000 n -0000049012 00000 n -0000049173 00000 n -0000049290 00000 n -0000049456 00000 n -0000049658 00000 n -0000049779 00000 n -0000049889 00000 n -0000050063 00000 n -0000050267 00000 n -0000050389 00000 n -0000050539 00000 n -0000050743 00000 n -0000050865 00000 n -0000050968 00000 n -0000051154 00000 n -0000051358 00000 n -0000051480 00000 n -0000051622 00000 n -0000051826 00000 n -0000051948 00000 n -0000052122 00000 n -0000052326 00000 n -0000052448 00000 n -0000052614 00000 n -0000052818 00000 n -0000052940 00000 n -0000053082 00000 n -0000053245 00000 n -0000053348 00000 n -0000053518 00000 n -0000053722 00000 n -0000053844 00000 n -0000054006 00000 n -0000054210 00000 n -0000009857 00000 n +0000048360 00000 n +0000048498 00000 n +0000048616 00000 n +0000048706 00000 n +0000048811 00000 n +0000009725 00000 n +0000048978 00000 n +0000049124 00000 n +0000049293 00000 n +0000049494 00000 n +0000049615 00000 n +0000049757 00000 n +0000049918 00000 n +0000050035 00000 n +0000050201 00000 n +0000050403 00000 n +0000050524 00000 n +0000050634 00000 n +0000050808 00000 n +0000051012 00000 n +0000051134 00000 n +0000051284 00000 n +0000051488 00000 n +0000051610 00000 n +0000051713 00000 n +0000051899 00000 n +0000052103 00000 n +0000052225 00000 n +0000052367 00000 n +0000052571 00000 n +0000052693 00000 n +0000052867 00000 n +0000053071 00000 n +0000053193 00000 n +0000053359 00000 n +0000053563 00000 n +0000053685 00000 n +0000053827 00000 n +0000053990 00000 n +0000054093 00000 n +0000054263 00000 n +0000054467 00000 n +0000054589 00000 n +0000054751 00000 n +0000054955 00000 n +0000009860 00000 n 0000000015 00000 n -0000190537 00000 n -0000181447 00000 n -0000183719 00000 n -0000195976 00000 n -0000192809 00000 n -0000196143 00000 n -0000010335 00000 n -0000010200 00000 n -0000009969 00000 n -0000195081 00000 n -0000054332 00000 n -0000054437 00000 n -0000054606 00000 n -0000016242 00000 n -0000054744 00000 n -0000054876 00000 n -0000055082 00000 n -0000055283 00000 n -0000055404 00000 n -0000055618 00000 n -0000055819 00000 n -0000055940 00000 n -0000056122 00000 n -0000056325 00000 n -0000016377 00000 n -0000010423 00000 n -0000016926 00000 n -0000016791 00000 n -0000016465 00000 n -0000056447 00000 n -0000056553 00000 n -0000056721 00000 n -0000017669 00000 n -0000056861 00000 n -0000057001 00000 n -0000057108 00000 n -0000057251 00000 n -0000017807 00000 n -0000017014 00000 n -0000188264 00000 n -0000018385 00000 n -0000018247 00000 n -0000017909 00000 n -0000057367 00000 n -0000057492 00000 n -0000057658 00000 n -0000019713 00000 n -0000057799 00000 n -0000057940 00000 n -0000058048 00000 n -0000058191 00000 n -0000058290 00000 n -0000058402 00000 n -0000058526 00000 n -0000019852 00000 n -0000018474 00000 n -0000196255 00000 n -0000058669 00000 n -0000058778 00000 n -0000058978 00000 n -0000020660 00000 n -0000059113 00000 n -0000059221 00000 n -0000020799 00000 n -0000019954 00000 n -0000185991 00000 n -0000059364 00000 n -0000059481 00000 n -0000059657 00000 n -0000022174 00000 n -0000059792 00000 n -0000059901 00000 n -0000060116 00000 n -0000060251 00000 n -0000060359 00000 n -0000060502 00000 n -0000060611 00000 n -0000060782 00000 n -0000060917 00000 n -0000061025 00000 n -0000022313 00000 n -0000020901 00000 n -0000022952 00000 n -0000022813 00000 n -0000022427 00000 n -0000061168 00000 n -0000061277 00000 n -0000061451 00000 n -0000024239 00000 n -0000061592 00000 n -0000061733 00000 n -0000061841 00000 n -0000061984 00000 n -0000062083 00000 n -0000062195 00000 n -0000062319 00000 n -0000024379 00000 n -0000023041 00000 n -0000025009 00000 n -0000024869 00000 n -0000024481 00000 n -0000062462 00000 n -0000062571 00000 n -0000062737 00000 n -0000025687 00000 n -0000062878 00000 n -0000063019 00000 n -0000063127 00000 n -0000025827 00000 n -0000025098 00000 n -0000196372 00000 n -0000026455 00000 n -0000026315 00000 n -0000025929 00000 n -0000063270 00000 n -0000063378 00000 n -0000063487 00000 n -0000063657 00000 n -0000027800 00000 n -0000063798 00000 n -0000063939 00000 n -0000064047 00000 n -0000064190 00000 n -0000064289 00000 n -0000064401 00000 n -0000064525 00000 n -0000027940 00000 n -0000026544 00000 n -0000028569 00000 n -0000028429 00000 n -0000028042 00000 n -0000064668 00000 n -0000064777 00000 n -0000064939 00000 n -0000041418 00000 n -0000065080 00000 n -0000065221 00000 n +0000190780 00000 n +0000181690 00000 n +0000183962 00000 n +0000196219 00000 n +0000193052 00000 n +0000196386 00000 n +0000010338 00000 n +0000010203 00000 n +0000009972 00000 n +0000195324 00000 n +0000055077 00000 n +0000055182 00000 n +0000016248 00000 n +0000055377 00000 n +0000055509 00000 n +0000055715 00000 n +0000055916 00000 n +0000056037 00000 n +0000056251 00000 n +0000056452 00000 n +0000056573 00000 n +0000056755 00000 n +0000056958 00000 n +0000016383 00000 n +0000010426 00000 n +0000016932 00000 n +0000016797 00000 n +0000016471 00000 n +0000057080 00000 n +0000057186 00000 n +0000017739 00000 n +0000057411 00000 n +0000057543 00000 n +0000057650 00000 n +0000057792 00000 n +0000017876 00000 n +0000017020 00000 n +0000188507 00000 n +0000018454 00000 n +0000018316 00000 n +0000017978 00000 n +0000057908 00000 n +0000058033 00000 n +0000019846 00000 n +0000058259 00000 n +0000058394 00000 n +0000058502 00000 n +0000058645 00000 n +0000058744 00000 n +0000058856 00000 n +0000058980 00000 n +0000019985 00000 n +0000018543 00000 n +0000196497 00000 n +0000059123 00000 n +0000059232 00000 n +0000059466 00000 n +0000020871 00000 n +0000059601 00000 n +0000059709 00000 n +0000021010 00000 n +0000020087 00000 n +0000186234 00000 n +0000059852 00000 n +0000059969 00000 n +0000060179 00000 n +0000022625 00000 n +0000060314 00000 n +0000060423 00000 n +0000060672 00000 n +0000060807 00000 n +0000060915 00000 n +0000061058 00000 n +0000061167 00000 n +0000061372 00000 n +0000061507 00000 n +0000061615 00000 n +0000022764 00000 n +0000021112 00000 n +0000023403 00000 n +0000023264 00000 n +0000022878 00000 n +0000061759 00000 n +0000061868 00000 n +0000024754 00000 n +0000062102 00000 n +0000062237 00000 n +0000062345 00000 n +0000062488 00000 n +0000062587 00000 n +0000062699 00000 n +0000062823 00000 n +0000024894 00000 n +0000023492 00000 n +0000025524 00000 n +0000025384 00000 n +0000024996 00000 n +0000062966 00000 n +0000063075 00000 n +0000026266 00000 n +0000063301 00000 n +0000063436 00000 n +0000063544 00000 n +0000026406 00000 n +0000025613 00000 n +0000196614 00000 n +0000027034 00000 n +0000026894 00000 n +0000026508 00000 n +0000063687 00000 n +0000063795 00000 n +0000063904 00000 n +0000028443 00000 n +0000064134 00000 n +0000064269 00000 n +0000064377 00000 n +0000064520 00000 n +0000064619 00000 n +0000064731 00000 n +0000064855 00000 n +0000028583 00000 n +0000027123 00000 n +0000029212 00000 n +0000029072 00000 n +0000028685 00000 n +0000064998 00000 n +0000065107 00000 n +0000042125 00000 n 0000065329 00000 n -0000028658 00000 n -0000041558 00000 n -0000040831 00000 n -0000041773 00000 n -0000042635 00000 n -0000043547 00000 n -0000044499 00000 n -0000045029 00000 n -0000045756 00000 n -0000179094 00000 n -0000065611 00000 n -0000066044 00000 n -0000066465 00000 n -0000066731 00000 n -0000068023 00000 n -0000068046 00000 n -0000068495 00000 n -0000068936 00000 n -0000069270 00000 n -0000071935 00000 n -0000072155 00000 n -0000089645 00000 n -0000089946 00000 n -0000103504 00000 n -0000103775 00000 n -0000115143 00000 n -0000115405 00000 n -0000127135 00000 n -0000127398 00000 n -0000142371 00000 n -0000142646 00000 n -0000162304 00000 n -0000162673 00000 n -0000178801 00000 n -0000179357 00000 n -0000181629 00000 n -0000183901 00000 n -0000186174 00000 n -0000188447 00000 n -0000190719 00000 n -0000192991 00000 n -0000195262 00000 n -0000196481 00000 n -0000196558 00000 n -0000196677 00000 n +0000065464 00000 n +0000065572 00000 n +0000029301 00000 n +0000042265 00000 n +0000041474 00000 n +0000042480 00000 n +0000043419 00000 n +0000044331 00000 n +0000045284 00000 n +0000045670 00000 n +0000046504 00000 n +0000179337 00000 n +0000065854 00000 n +0000066287 00000 n +0000066708 00000 n +0000066974 00000 n +0000068266 00000 n +0000068289 00000 n +0000068738 00000 n +0000069179 00000 n +0000069513 00000 n +0000072178 00000 n +0000072398 00000 n +0000089888 00000 n +0000090189 00000 n +0000103747 00000 n +0000104018 00000 n +0000115386 00000 n +0000115648 00000 n +0000127378 00000 n +0000127641 00000 n +0000142614 00000 n +0000142889 00000 n +0000162547 00000 n +0000162916 00000 n +0000179044 00000 n +0000179600 00000 n +0000181872 00000 n +0000184144 00000 n +0000186417 00000 n +0000188690 00000 n +0000190962 00000 n +0000193234 00000 n +0000195505 00000 n +0000196723 00000 n +0000196800 00000 n +0000196919 00000 n trailer -<< /Size 252 -/Root 250 0 R -/Info 251 0 R +<< /Size 244 +/Root 242 0 R +/Info 243 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -196810 +197052 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.luatex.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.luatex.tpf index cc307312c..8a1ec4f0b 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.luatex.tpf @@ -1,12 +1,12 @@ %PDF-2.0 %ÌÕÁÔÅØÐÄÆ -69 0 obj -<< /Length 5126 >> +68 0 obj +<< /Length 5129 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 627.357 Tm [(Con)31(ten)31(ts)]TJ @@ -282,13 +282,13 @@ EMC EMC endstream endobj -68 0 obj -<< /Type /Page /Contents 69 0 R /Resources 67 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 0/Tabs /S /Parent 74 0 R >> -endobj 67 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F17 71 0 R /F15 72 0 R /F16 73 0 R >> >> +<< /Type /Page /Contents 68 0 R /Resources 66 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 0/Tabs /S /Parent 73 0 R >> endobj -77 0 obj +66 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F17 70 0 R /F15 71 0 R /F16 72 0 R >> >> +endobj +76 0 obj << /Length 182 >> stream /opacity1 gs @@ -306,19 +306,19 @@ EMC EMC endstream endobj -76 0 obj -<< /Type /Page /Contents 77 0 R /Resources 75 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 1/Tabs /S /Parent 74 0 R >> -endobj 75 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R >> >> +<< /Type /Page /Contents 76 0 R /Resources 74 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 1/Tabs /S /Parent 73 0 R >> endobj -94 0 obj -<< /Length 3178 >> +74 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R >> >> +endobj +92 0 obj +<< /Length 3181 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 627.357 Tm [(List)]TJ @@ -462,13 +462,13 @@ EMC EMC endstream endobj -93 0 obj -<< /Type /Page /Contents 94 0 R /Resources 92 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 2/Tabs /S /Parent 74 0 R >> +91 0 obj +<< /Type /Page /Contents 92 0 R /Resources 90 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 2/Tabs /S /Parent 73 0 R >> endobj -92 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +90 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -97 0 obj +95 0 obj << /Length 395 >> stream /opacity1 gs @@ -494,29 +494,33 @@ EMC EMC endstream endobj -96 0 obj -<< /Type /Page /Contents 97 0 R /Resources 95 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 3/Tabs /S /Parent 74 0 R >> +94 0 obj +<< /Type /Page /Contents 95 0 R /Resources 93 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 3/Tabs /S /Parent 73 0 R >> endobj -95 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +93 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -107 0 obj -<< /Length 880 >> +104 0 obj +<< /Length 937 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(1)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(In)31(tro)-31(duction)]TJ @@ -524,7 +528,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(Some)]TJ @@ -554,13 +558,13 @@ EMC EMC endstream endobj -106 0 obj -<< /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 4/Tabs /S /Parent 74 0 R >> +103 0 obj +<< /Type /Page /Contents 104 0 R /Resources 102 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 4/Tabs /S /Parent 73 0 R >> endobj -105 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +102 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -110 0 obj +107 0 obj << /Length 417 >> stream /opacity1 gs @@ -586,29 +590,33 @@ EMC EMC endstream endobj -109 0 obj -<< /Type /Page /Contents 110 0 R /Resources 108 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 5/Tabs /S /Parent 74 0 R >> +106 0 obj +<< /Type /Page /Contents 107 0 R /Resources 105 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 5/Tabs /S /Parent 73 0 R >> endobj -108 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +105 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -123 0 obj -<< /Length 1969 >> +119 0 obj +<< /Length 2026 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(2)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(Swiss)]TJ @@ -620,7 +628,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(A)]TJ @@ -648,7 +656,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 199.342 491.976 Tm [(Figure)]TJ @@ -660,7 +668,7 @@ BT 1 0 0 1 246.277 491.976 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 250.705 491.976 Tm [(Image)]TJ @@ -694,14 +702,14 @@ EMC EMC endstream endobj -122 0 obj -<< /Type /Page /Contents 123 0 R /Resources 121 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 6/Tabs /S /Parent 74 0 R >> +118 0 obj +<< /Type /Page /Contents 119 0 R /Resources 117 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 6/Tabs /S /Parent 73 0 R >> endobj -121 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +117 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -131 0 obj -<< /Length 997 >> +127 0 obj +<< /Length 1042 >> stream /opacity1 gs /Artifact BMC @@ -728,16 +736,20 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 150.705 707.058 Tm [(2.1)]TJ -/F15 9.96264 Tf -1 0 0 1 171.327 707.058 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 171.327 707.058 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 187.467 707.058 Tm [(Living)]TJ /F15 9.96264 Tf @@ -748,7 +760,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 150.705 685.237 Tm [(Switzerland)]TJ @@ -758,14 +770,14 @@ EMC EMC endstream endobj -130 0 obj -<< /Type /Page /Contents 131 0 R /Resources 129 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 7/Tabs /S /Parent 74 0 R >> +126 0 obj +<< /Type /Page /Contents 127 0 R /Resources 125 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 7/Tabs /S /Parent 73 0 R >> endobj -129 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R /F19 70 0 R >> >> +125 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R /F19 69 0 R >> >> endobj -147 0 obj -<< /Length 1838 >> +143 0 obj +<< /Length 1980 >> stream /opacity1 gs /Artifact BMC @@ -784,31 +796,39 @@ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 14.3462 Tf 1 0 0 1 99.895 707.058 Tm [(2.2)]TJ -/F15 9.96264 Tf -1 0 0 1 120.518 707.058 Tm [<0067>]TJ ET EMC /section<> BDC BT +/F15 9.96264 Tf +1 0 0 1 120.518 707.058 Tm [<0067>-1287<0067>]TJ +ET +EMC +/section<> BDC +BT /F19 14.3462 Tf 1 0 0 1 136.657 707.058 Tm [(Hobbies)]TJ ET EMC /Artifact BMC EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 99.895 683.244 Tm [(2.2.1)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 127.542 683.244 Tm [<0067>]TJ +1 0 0 1 127.542 683.244 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 140.991 683.244 Tm [(Music)]TJ @@ -820,21 +840,25 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 664.855 Tm [(Albhorn)]TJ ET EMC -/section-number<> BDC +/heading-number<> BDC BT /F19 11.95517 Tf 1 0 0 1 99.895 636.967 Tm [(2.2.2)]TJ +ET +EMC +/subsection<> BDC +BT /F15 9.96264 Tf -1 0 0 1 127.542 636.967 Tm [<0067>]TJ +1 0 0 1 127.542 636.967 Tm [<0067>-1017<0067>]TJ ET EMC -/subsection<> BDC +/subsection<> BDC BT /F19 11.95517 Tf 1 0 0 1 140.991 636.967 Tm [(Bo)-31(oks)]TJ @@ -842,7 +866,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 618.577 Tm [(Oh,)]TJ @@ -868,13 +892,13 @@ EMC EMC endstream endobj -146 0 obj -<< /Type /Page /Contents 147 0 R /Resources 145 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 8/Tabs /S /Parent 74 0 R >> +142 0 obj +<< /Type /Page /Contents 143 0 R /Resources 141 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 8/Tabs /S /Parent 73 0 R >> endobj -145 0 obj -<< /ExtGState 1 0 R /Font << /F33 78 0 R /F15 72 0 R /F16 73 0 R /F19 70 0 R >> >> +141 0 obj +<< /ExtGState 1 0 R /Font << /F33 77 0 R /F15 71 0 R /F16 72 0 R /F19 69 0 R >> >> endobj -150 0 obj +146 0 obj << /Length 516 >> stream /opacity1 gs @@ -904,29 +928,33 @@ EMC EMC endstream endobj -149 0 obj -<< /Type /Page /Contents 150 0 R /Resources 148 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 9/Tabs /S /Parent 74 0 R >> +145 0 obj +<< /Type /Page /Contents 146 0 R /Resources 144 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 9/Tabs /S /Parent 73 0 R >> endobj -148 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +144 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -163 0 obj -<< /Length 1875 >> +158 0 obj +<< /Length 1932 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(3)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(Italian)]TJ @@ -938,7 +966,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(Italian)]TJ @@ -962,7 +990,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 195.966 491.976 Tm [(Figure)]TJ @@ -974,7 +1002,7 @@ BT 1 0 0 1 242.901 491.976 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 247.329 491.976 Tm [(Image)]TJ @@ -1008,13 +1036,13 @@ EMC EMC endstream endobj -162 0 obj -<< /Type /Page /Contents 163 0 R /Resources 161 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 10/Tabs /S /Parent 164 0 R >> +157 0 obj +<< /Type /Page /Contents 158 0 R /Resources 156 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 10/Tabs /S /Parent 159 0 R >> endobj -161 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +156 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -167 0 obj +162 0 obj << /Length 522 >> stream /opacity1 gs @@ -1044,29 +1072,33 @@ EMC EMC endstream endobj -166 0 obj -<< /Type /Page /Contents 167 0 R /Resources 165 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 11/Tabs /S /Parent 164 0 R >> +161 0 obj +<< /Type /Page /Contents 162 0 R /Resources 160 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 11/Tabs /S /Parent 159 0 R >> endobj -165 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +160 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -176 0 obj -<< /Length 765 >> +170 0 obj +<< /Length 822 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(4)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(Mask)31(ed)]TJ @@ -1078,7 +1110,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(Mask)27(ed)]TJ @@ -1100,13 +1132,13 @@ EMC EMC endstream endobj -175 0 obj -<< /Type /Page /Contents 176 0 R /Resources 174 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 12/Tabs /S /Parent 164 0 R >> +169 0 obj +<< /Type /Page /Contents 170 0 R /Resources 168 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 12/Tabs /S /Parent 159 0 R >> endobj -174 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +168 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -179 0 obj +173 0 obj << /Length 516 >> stream /opacity1 gs @@ -1136,29 +1168,33 @@ EMC EMC endstream endobj -178 0 obj -<< /Type /Page /Contents 179 0 R /Resources 177 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 13/Tabs /S /Parent 164 0 R >> +172 0 obj +<< /Type /Page /Contents 173 0 R /Resources 171 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 13/Tabs /S /Parent 159 0 R >> endobj -177 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +171 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -193 0 obj -<< /Length 1987 >> +186 0 obj +<< /Length 2044 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(5)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(Hugging)]TJ @@ -1170,7 +1206,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(Duc)27(k)]TJ @@ -1202,7 +1238,7 @@ ET EMC /Artifact BMC EMC -/Lbl<> BDC +/Lbl<> BDC BT /F16 9.96264 Tf 1 0 0 1 211.2 491.976 Tm [(Figure)]TJ @@ -1214,7 +1250,7 @@ BT 1 0 0 1 258.135 491.976 Tm [<0067>]TJ ET EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 262.563 491.976 Tm [(Image)]TJ @@ -1244,13 +1280,13 @@ EMC EMC endstream endobj -192 0 obj -<< /Type /Page /Contents 193 0 R /Resources 191 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 14/Tabs /S /Parent 164 0 R >> +185 0 obj +<< /Type /Page /Contents 186 0 R /Resources 184 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 14/Tabs /S /Parent 159 0 R >> endobj -191 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +184 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj -196 0 obj +189 0 obj << /Length 516 >> stream /opacity1 gs @@ -1280,29 +1316,33 @@ EMC EMC endstream endobj -195 0 obj -<< /Type /Page /Contents 196 0 R /Resources 194 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 15/Tabs /S /Parent 164 0 R >> +188 0 obj +<< /Type /Page /Contents 189 0 R /Resources 187 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 15/Tabs /S /Parent 159 0 R >> endobj -194 0 obj -<< /ExtGState 1 0 R /Font << /F16 73 0 R /F33 78 0 R /F15 72 0 R >> >> +187 0 obj +<< /ExtGState 1 0 R /Font << /F16 72 0 R /F33 77 0 R /F15 71 0 R >> >> endobj -206 0 obj -<< /Length 759 >> +198 0 obj +<< /Length 816 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 20.66252 Tf 1 0 0 1 99.895 632.338 Tm [(Chapter)]TJ /F15 9.96264 Tf -1 0 0 1 182.952 632.338 Tm [<0067>]TJ +1 0 0 1 182.952 632.338 Tm [<0067>-444<0067>]TJ +ET +EMC +/heading-number<> BDC +BT /F19 20.66252 Tf 1 0 0 1 190.7 632.338 Tm [(6)]TJ ET EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 99.895 582.525 Tm [(Witc)31(h)]TJ @@ -1314,7 +1354,7 @@ ET EMC /Artifact BMC EMC -/text-block<> BDC +/text-block<> BDC BT /F16 9.96264 Tf 1 0 0 1 99.895 530.719 Tm [(Witc)27(h)]TJ @@ -1336,11 +1376,11 @@ EMC EMC endstream endobj -205 0 obj -<< /Type /Page /Contents 206 0 R /Resources 204 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 16/Tabs /S /Parent 164 0 R >> +197 0 obj +<< /Type /Page /Contents 198 0 R /Resources 196 0 R /MediaBox [ 0 0 595.276 841.89 ] /StructParents 16/Tabs /S /Parent 159 0 R >> endobj -204 0 obj -<< /ExtGState 1 0 R /Font << /F19 70 0 R /F15 72 0 R /F16 73 0 R >> >> +196 0 obj +<< /ExtGState 1 0 R /Font << /F19 69 0 R /F15 71 0 R /F16 72 0 R >> >> endobj 1 0 obj << /opacity1 <> >> @@ -1354,47 +1394,46 @@ endobj 4 0 obj << >> endobj -207 0 obj +199 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 27 0 R 31 0 R 30 0 R 30 0 R 33 0 R 33 0 R 37 0 R 36 0 R 36 0 R 41 0 R 40 0 R 40 0 R 44 0 R 43 0 R 43 0 R 48 0 R 47 0 R 47 0 R 51 0 R 50 0 R 50 0 R 54 0 R 53 0 R 53 0 R 57 0 R 56 0 R 56 0 R 59 0 R 59 0 R 63 0 R 62 0 R 62 0 R 66 0 R 65 0 R 65 0 R] +<< /Nums [0 [ 26 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 36 0 R 35 0 R 35 0 R 40 0 R 39 0 R 39 0 R 43 0 R 42 0 R 42 0 R 47 0 R 46 0 R 46 0 R 50 0 R 49 0 R 49 0 R 53 0 R 52 0 R 52 0 R 56 0 R 55 0 R 55 0 R 58 0 R 58 0 R 62 0 R 61 0 R 61 0 R 65 0 R 64 0 R 64 0 R] 1 [] -2 [ 81 0 R 85 0 R 84 0 R 84 0 R 88 0 R 87 0 R 87 0 R 91 0 R 90 0 R 90 0 R] +2 [ 79 0 R 83 0 R 82 0 R 82 0 R 86 0 R 85 0 R 85 0 R 89 0 R 88 0 R 88 0 R] 3 [] -4 [ 100 0 R 101 0 R 103 0 R] +4 [ 97 0 R 98 0 R 97 0 R 100 0 R] 5 [] -6 [ 113 0 R 114 0 R 116 0 R 119 0 R 120 0 R] -7 [ 126 0 R 125 0 R 128 0 R] -8 [ 134 0 R 133 0 R 137 0 R 136 0 R 139 0 R 142 0 R 141 0 R 144 0 R] +6 [ 109 0 R 110 0 R 109 0 R 112 0 R 115 0 R 116 0 R] +7 [ 122 0 R 121 0 R 121 0 R 124 0 R] +8 [ 130 0 R 129 0 R 129 0 R 133 0 R 132 0 R 132 0 R 135 0 R 138 0 R 137 0 R 137 0 R 140 0 R] 9 [] -10 [ 153 0 R 154 0 R 156 0 R 159 0 R 160 0 R] +10 [ 148 0 R 149 0 R 148 0 R 151 0 R 154 0 R 155 0 R] 11 [] -12 [ 170 0 R 171 0 R 173 0 R] +12 [ 164 0 R 165 0 R 164 0 R 167 0 R] 13 [] -14 [ 183 0 R 184 0 R 186 0 R 189 0 R 190 0 R] +14 [ 176 0 R 177 0 R 176 0 R 179 0 R 182 0 R 183 0 R] 15 [] -16 [ 199 0 R 200 0 R 202 0 R] +16 [ 191 0 R 192 0 R 191 0 R 194 0 R] ] >> endobj -208 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 27 0 R (ID.0009) 28 0 R (ID.0010) 29 0 R (ID.0011) 30 0 R (ID.0012) 31 0 R (ID.0013) 32 0 R (ID.0014) 33 0 R (ID.0015) 34 0 R (ID.0016) 35 0 R (ID.0017) 36 0 R (ID.0018) 37 0 R (ID.0019) 38 0 R (ID.0020) 39 0 R (ID.0021) 40 0 R (ID.0022) 41 0 R (ID.0023) 42 0 R (ID.0024) 43 0 R (ID.0025) 44 0 R (ID.0026) 45 0 R (ID.0027) 46 0 R (ID.0028) 47 0 R (ID.0029) 48 0 R (ID.0030) 49 0 R (ID.0031) 50 0 R (ID.0032) 51 0 R (ID.0033) 52 0 R (ID.0034) 53 0 R (ID.0035) 54 0 R (ID.0036) 55 0 R (ID.0037) 56 0 R (ID.0038) 57 0 R (ID.0039) 58 0 R (ID.0040) 59 0 R (ID.0041) 60 0 R (ID.0042) 61 0 R (ID.0043) 62 0 R (ID.0044) 63 0 R (ID.0045) 64 0 R (ID.0046) 65 0 R (ID.0047) 66 0 R (ID.0048) 79 0 R (ID.0049) 80 0 R (ID.0050) 81 0 R (ID.0051) 82 0 R ] >> +200 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 27 0 R (ID.0009) 28 0 R (ID.0010) 29 0 R (ID.0011) 30 0 R (ID.0012) 31 0 R (ID.0013) 32 0 R (ID.0014) 33 0 R (ID.0015) 34 0 R (ID.0016) 35 0 R (ID.0017) 36 0 R (ID.0018) 37 0 R (ID.0019) 38 0 R (ID.0020) 39 0 R (ID.0021) 40 0 R (ID.0022) 41 0 R (ID.0023) 42 0 R (ID.0024) 43 0 R (ID.0025) 44 0 R (ID.0026) 45 0 R (ID.0027) 46 0 R (ID.0028) 47 0 R (ID.0029) 48 0 R (ID.0030) 49 0 R (ID.0031) 50 0 R (ID.0032) 51 0 R (ID.0033) 52 0 R (ID.0034) 53 0 R (ID.0035) 54 0 R (ID.0036) 55 0 R (ID.0037) 56 0 R (ID.0038) 57 0 R (ID.0039) 58 0 R (ID.0040) 59 0 R (ID.0041) 60 0 R (ID.0042) 61 0 R (ID.0043) 62 0 R (ID.0044) 63 0 R (ID.0045) 64 0 R (ID.0046) 65 0 R (ID.0047) 78 0 R (ID.0048) 79 0 R (ID.0049) 80 0 R (ID.0050) 81 0 R (ID.0051) 82 0 R ] >> endobj -209 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 83 0 R (ID.0053) 84 0 R (ID.0054) 85 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 89 0 R (ID.0059) 90 0 R (ID.0060) 91 0 R (ID.0061) 98 0 R (ID.0062) 99 0 R (ID.0063) 100 0 R (ID.0064) 101 0 R (ID.0065) 102 0 R (ID.0066) 103 0 R (ID.0067) 104 0 R (ID.0068) 111 0 R (ID.0069) 112 0 R (ID.0070) 113 0 R (ID.0071) 114 0 R (ID.0072) 115 0 R (ID.0073) 116 0 R (ID.0074) 117 0 R (ID.0075) 118 0 R (ID.0076) 119 0 R (ID.0077) 120 0 R (ID.0078) 124 0 R (ID.0079) 125 0 R (ID.0080) 126 0 R (ID.0081) 127 0 R (ID.0082) 128 0 R (ID.0083) 132 0 R (ID.0084) 133 0 R (ID.0085) 134 0 R (ID.0086) 135 0 R (ID.0087) 136 0 R (ID.0088) 137 0 R (ID.0089) 138 0 R (ID.0090) 139 0 R (ID.0091) 140 0 R (ID.0092) 141 0 R (ID.0093) 142 0 R (ID.0094) 143 0 R (ID.0095) 144 0 R (ID.0096) 151 0 R (ID.0097) 152 0 R (ID.0098) 153 0 R (ID.0099) 154 0 R (ID.0100) 155 0 R (ID.0101) 156 0 R ] >> +201 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 83 0 R (ID.0053) 84 0 R (ID.0054) 85 0 R (ID.0055) 86 0 R (ID.0056) 87 0 R (ID.0057) 88 0 R (ID.0058) 89 0 R (ID.0059) 96 0 R (ID.0060) 97 0 R (ID.0061) 98 0 R (ID.0062) 99 0 R (ID.0063) 100 0 R (ID.0064) 101 0 R (ID.0065) 108 0 R (ID.0066) 109 0 R (ID.0067) 110 0 R (ID.0068) 111 0 R (ID.0069) 112 0 R (ID.0070) 113 0 R (ID.0071) 114 0 R (ID.0072) 115 0 R (ID.0073) 116 0 R (ID.0074) 120 0 R (ID.0075) 121 0 R (ID.0076) 122 0 R (ID.0077) 123 0 R (ID.0078) 124 0 R (ID.0079) 128 0 R (ID.0080) 129 0 R (ID.0081) 130 0 R (ID.0082) 131 0 R (ID.0083) 132 0 R (ID.0084) 133 0 R (ID.0085) 134 0 R (ID.0086) 135 0 R (ID.0087) 136 0 R (ID.0088) 137 0 R (ID.0089) 138 0 R (ID.0090) 139 0 R (ID.0091) 140 0 R (ID.0092) 147 0 R (ID.0093) 148 0 R (ID.0094) 149 0 R (ID.0095) 150 0 R (ID.0096) 151 0 R (ID.0097) 152 0 R (ID.0098) 153 0 R (ID.0099) 154 0 R (ID.0100) 155 0 R (ID.0101) 163 0 R ] >> endobj -210 0 obj -<< /Limits [(ID.0102) (ID.0128)]/Names [(ID.0102) 157 0 R (ID.0103) 158 0 R (ID.0104) 159 0 R (ID.0105) 160 0 R (ID.0106) 168 0 R (ID.0107) 169 0 R (ID.0108) 170 0 R (ID.0109) 171 0 R (ID.0110) 172 0 R (ID.0111) 173 0 R (ID.0112) 180 0 R (ID.0113) 181 0 R (ID.0114) 182 0 R (ID.0115) 183 0 R (ID.0116) 184 0 R (ID.0117) 185 0 R (ID.0118) 186 0 R (ID.0119) 187 0 R (ID.0120) 188 0 R (ID.0121) 189 0 R (ID.0122) 190 0 R (ID.0123) 197 0 R (ID.0124) 198 0 R (ID.0125) 199 0 R (ID.0126) 200 0 R (ID.0127) 201 0 R (ID.0128) 202 0 R ] >> +202 0 obj +<< /Limits [(ID.0102) (ID.0120)]/Names [(ID.0102) 164 0 R (ID.0103) 165 0 R (ID.0104) 166 0 R (ID.0105) 167 0 R (ID.0106) 174 0 R (ID.0107) 175 0 R (ID.0108) 176 0 R (ID.0109) 177 0 R (ID.0110) 178 0 R (ID.0111) 179 0 R (ID.0112) 180 0 R (ID.0113) 181 0 R (ID.0114) 182 0 R (ID.0115) 183 0 R (ID.0116) 190 0 R (ID.0117) 191 0 R (ID.0118) 192 0 R (ID.0119) 193 0 R (ID.0120) 194 0 R ] >> endobj -211 0 obj -<< /Kids [208 0 R 209 0 R 210 0 R] >> +203 0 obj +<< /Kids [200 0 R 201 0 R 202 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -212 0 obj -<< /raggedright <> -/justify <> +204 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1410,7 +1449,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1428,390 +1467,366 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 79 0 R 98 0 R 104 0 R 180 0 R 23 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [25 0 R 78 0 R 96 0 R 101 0 R 174 0 R 23 0 R] /ID (ID.0002) >> endobj 22 0 obj << /Type /StructElem /S /Artifact /NS 11 0 R /P 21 0 R /ID (ID.0003) >> endobj 23 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [117 0 R 157 0 R 187 0 R] /ID (ID.0004) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [113 0 R 152 0 R 180 0 R] /ID (ID.0004) >> endobj 24 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.0005) >> endobj 25 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 28 0 R] /ID (ID.0006) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [26 0 R 27 0 R] /ID (ID.0006) >> endobj 26 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K 27 0 R /ID (ID.0007) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 25 0 R /K <> /ID (ID.0007) >> endobj 27 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 26 0 R /K <> /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [28 0 R 31 0 R 33 0 R 57 0 R 59 0 R] /ID (ID.0008) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 25 0 R /K [29 0 R 32 0 R 34 0 R 58 0 R 60 0 R] /ID (ID.0009) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 97 0 R ] /K 29 0 R /ID (ID.0009) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 99 0 R ] /K 30 0 R /ID (ID.0010) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [ 30 0 R <> <> ] /ID (ID.0010) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [ 31 0 R <> <> ] /ID (ID.0011) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 29 0 R /K <> /ID (ID.0011) >> endobj 31 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 30 0 R /K <> /ID (ID.0012) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 101 0 R ] /K 32 0 R /ID (ID.0012) >> endobj 32 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 104 0 R ] /K 33 0 R /ID (ID.0013) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <> ] /ID (ID.0013) >> endobj 33 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [<> <> ] /ID (ID.0014) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 51 0 R 54 0 R] /ID (ID.0014) >> endobj 34 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [35 0 R 38 0 R 52 0 R 55 0 R] /ID (ID.0015) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 109 0 R ] /K 35 0 R /ID (ID.0015) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 112 0 R ] /K 36 0 R /ID (ID.0016) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [ 36 0 R <> <> ] /ID (ID.0016) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [ 37 0 R <> <> ] /ID (ID.0017) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 35 0 R /K <> /ID (ID.0017) >> endobj 37 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.0018) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R 44 0 R] /ID (ID.0018) >> endobj 38 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 34 0 R /K [39 0 R 42 0 R 45 0 R] /ID (ID.0019) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 121 0 R ] /K 39 0 R /ID (ID.0019) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 126 0 R ] /K 40 0 R /ID (ID.0020) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [ 40 0 R <> <> ] /ID (ID.0020) >> endobj 40 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [ 41 0 R <> <> ] /ID (ID.0021) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0021) >> endobj 41 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 40 0 R /K <> /ID (ID.0022) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 129 0 R ] /K 42 0 R /ID (ID.0022) >> endobj 42 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 134 0 R ] /K 43 0 R /ID (ID.0023) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [ 43 0 R <> <> ] /ID (ID.0023) >> endobj 43 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 42 0 R /K [ 44 0 R <> <> ] /ID (ID.0024) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0024) >> endobj 44 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 43 0 R /K <> /ID (ID.0025) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 37 0 R /K [45 0 R 48 0 R] /ID (ID.0025) >> endobj 45 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [46 0 R 49 0 R] /ID (ID.0026) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 132 0 R ] /K 46 0 R /ID (ID.0026) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 137 0 R ] /K 47 0 R /ID (ID.0027) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [ 47 0 R <> <> ] /ID (ID.0027) >> endobj 47 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [ 48 0 R <> <> ] /ID (ID.0028) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.0028) >> endobj 48 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0029) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 137 0 R ] /K 49 0 R /ID (ID.0029) >> endobj 49 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 142 0 R ] /K 50 0 R /ID (ID.0030) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 48 0 R /K [ 50 0 R <> <> ] /ID (ID.0030) >> endobj 50 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 49 0 R /K [ 51 0 R <> <> ] /ID (ID.0031) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0031) >> endobj 51 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 50 0 R /K <> /ID (ID.0032) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 148 0 R ] /K 52 0 R /ID (ID.0032) >> endobj 52 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 152 0 R ] /K 53 0 R /ID (ID.0033) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [ 53 0 R <> <> ] /ID (ID.0033) >> endobj 53 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 52 0 R /K [ 54 0 R <> <> ] /ID (ID.0034) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0034) >> endobj 54 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 53 0 R /K <> /ID (ID.0035) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 164 0 R ] /K 55 0 R /ID (ID.0035) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 169 0 R ] /K 56 0 R /ID (ID.0036) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 54 0 R /K [ 56 0 R <> <> ] /ID (ID.0036) >> endobj 56 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [ 57 0 R <> <> ] /ID (ID.0037) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0037) >> endobj 57 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 56 0 R /K <> /ID (ID.0038) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 174 0 R ] /K 58 0 R /ID (ID.0038) >> endobj 58 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 180 0 R ] /K 59 0 R /ID (ID.0039) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 57 0 R /K [<> <> ] /ID (ID.0039) >> endobj 59 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 58 0 R /K [<> <> ] /ID (ID.0040) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [60 0 R 63 0 R] /ID (ID.0040) >> endobj 60 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [61 0 R 64 0 R] /ID (ID.0041) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 176 0 R ] /K 61 0 R /ID (ID.0041) >> endobj 61 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 182 0 R ] /K 62 0 R /ID (ID.0042) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [ 62 0 R <> <> ] /ID (ID.0042) >> endobj 62 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [ 63 0 R <> <> ] /ID (ID.0043) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.0043) >> endobj 63 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 62 0 R /K <> /ID (ID.0044) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 191 0 R ] /K 64 0 R /ID (ID.0044) >> endobj 64 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 198 0 R ] /K 65 0 R /ID (ID.0045) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 63 0 R /K [ 65 0 R <> <> ] /ID (ID.0045) >> endobj 65 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 64 0 R /K [ 66 0 R <> <> ] /ID (ID.0046) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 64 0 R /K <> /ID (ID.0046) >> endobj -66 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 65 0 R /K <> /ID (ID.0047) >> +78 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [79 0 R 80 0 R] /ID (ID.0047) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [80 0 R 82 0 R] /ID (ID.0048) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 78 0 R /K <> /ID (ID.0048) >> endobj 80 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 79 0 R /K 81 0 R /ID (ID.0049) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 78 0 R /K [81 0 R 84 0 R 87 0 R] /ID (ID.0049) >> endobj 81 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 80 0 R /K <> /ID (ID.0050) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 113 0 R ] /K 82 0 R /ID (ID.0050) >> endobj 82 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 79 0 R /K [83 0 R 86 0 R 89 0 R] /ID (ID.0051) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 81 0 R /K [ 83 0 R <> <> ] /ID (ID.0051) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 117 0 R ] /K 84 0 R /ID (ID.0052) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 82 0 R /K <> /ID (ID.0052) >> endobj 84 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 83 0 R /K [ 85 0 R <> <> ] /ID (ID.0053) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 152 0 R ] /K 85 0 R /ID (ID.0053) >> endobj 85 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 84 0 R /K <> /ID (ID.0054) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 84 0 R /K [ 86 0 R <> <> ] /ID (ID.0054) >> endobj 86 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 157 0 R ] /K 87 0 R /ID (ID.0055) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 85 0 R /K <> /ID (ID.0055) >> endobj 87 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 86 0 R /K [ 88 0 R <> <> ] /ID (ID.0056) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 80 0 R /Ref [ 180 0 R ] /K 88 0 R /ID (ID.0056) >> endobj 88 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 87 0 R /K <> /ID (ID.0057) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 87 0 R /K [ 89 0 R <> <> ] /ID (ID.0057) >> endobj 89 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 82 0 R /Ref [ 187 0 R ] /K 90 0 R /ID (ID.0058) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 88 0 R /K <> /ID (ID.0058) >> endobj -90 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 89 0 R /K [ 91 0 R <> <> ] /ID (ID.0059) >> +96 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [97 0 R 99 0 R] /ID (ID.0059) >> endobj -91 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 90 0 R /K <> /ID (ID.0060) >> +97 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 96 0 R /K [<> 98 0 R <> ] /ID (ID.0060) >> endobj 98 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [99 0 R 102 0 R] /ID (ID.0061) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 97 0 R /K <> /ID (ID.0061) >> endobj 99 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 98 0 R /K [100 0 R 101 0 R] /ID (ID.0062) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 96 0 R /K 100 0 R /ID (ID.0062) >> endobj 100 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0063) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 99 0 R /K <> /ID (ID.0063) >> endobj 101 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0064) >> +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [108 0 R 147 0 R 163 0 R] /ID (ID.0064) >> endobj -102 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 98 0 R /K 103 0 R /ID (ID.0065) >> +108 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [109 0 R 111 0 R 120 0 R 128 0 R] /ID (ID.0065) >> endobj -103 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 102 0 R /K <> /ID (ID.0066) >> +109 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 108 0 R /K [<> 110 0 R <> ] /ID (ID.0066) >> endobj -104 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [111 0 R 151 0 R 168 0 R] /ID (ID.0067) >> +110 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 109 0 R /K <> /ID (ID.0067) >> endobj 111 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [112 0 R 115 0 R 124 0 R 132 0 R] /ID (ID.0068) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 108 0 R /K 112 0 R /ID (ID.0068) >> endobj 112 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 111 0 R /K [113 0 R 114 0 R] /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 111 0 R /K <> /ID (ID.0069) >> endobj 113 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 112 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 114 0 R /ID (ID.0070) >> endobj 114 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 112 0 R /K <> /ID (ID.0071) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 113 0 R /K [115 0 R 116 0 R] /ID (ID.0071) >> endobj 115 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 111 0 R /K 116 0 R /ID (ID.0072) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 114 0 R /K <> /ID (ID.0072) >> endobj 116 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 115 0 R /K <> /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 114 0 R /K <> /ID (ID.0073) >> endobj -117 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 118 0 R /ID (ID.0074) >> +120 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 108 0 R /K [121 0 R 123 0 R] /ID (ID.0074) >> endobj -118 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 117 0 R /K [119 0 R 120 0 R] /ID (ID.0075) >> +121 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 120 0 R /K [122 0 R <> <> ] /ID (ID.0075) >> endobj -119 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 118 0 R /K <> /ID (ID.0076) >> +122 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 121 0 R /K <> /ID (ID.0076) >> endobj -120 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 118 0 R /K <> /ID (ID.0077) >> +123 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 120 0 R /K 124 0 R /ID (ID.0077) >> endobj 124 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 111 0 R /K [125 0 R 127 0 R] /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 123 0 R /K <> /ID (ID.0078) >> endobj -125 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 124 0 R /K [126 0 R <> ] /ID (ID.0079) >> +128 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 108 0 R /K [129 0 R 131 0 R 136 0 R] /ID (ID.0079) >> endobj -126 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 125 0 R /K <> /ID (ID.0080) >> +129 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 128 0 R /K [130 0 R <> <> ] /ID (ID.0080) >> endobj -127 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 124 0 R /K 128 0 R /ID (ID.0081) >> +130 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 129 0 R /K <> /ID (ID.0081) >> endobj -128 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 127 0 R /K <> /ID (ID.0082) >> +131 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 128 0 R /K [132 0 R 134 0 R] /ID (ID.0082) >> endobj 132 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 111 0 R /K [133 0 R 135 0 R 140 0 R] /ID (ID.0083) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 131 0 R /K [133 0 R <> <> ] /ID (ID.0083) >> endobj 133 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 132 0 R /K [134 0 R <> ] /ID (ID.0084) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 132 0 R /K <> /ID (ID.0084) >> endobj 134 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 133 0 R /K <> /ID (ID.0085) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 131 0 R /K 135 0 R /ID (ID.0085) >> endobj 135 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 132 0 R /K [136 0 R 138 0 R] /ID (ID.0086) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 134 0 R /K <> /ID (ID.0086) >> endobj 136 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 135 0 R /K [137 0 R <> ] /ID (ID.0087) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 128 0 R /K [137 0 R 139 0 R] /ID (ID.0087) >> endobj 137 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0088) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 136 0 R /K [138 0 R <> <> ] /ID (ID.0088) >> endobj 138 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 135 0 R /K 139 0 R /ID (ID.0089) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 137 0 R /K <> /ID (ID.0089) >> endobj 139 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 138 0 R /K <> /ID (ID.0090) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 136 0 R /K 140 0 R /ID (ID.0090) >> endobj 140 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 132 0 R /K [141 0 R 143 0 R] /ID (ID.0091) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 139 0 R /K <> /ID (ID.0091) >> endobj -141 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 140 0 R /K [142 0 R <> ] /ID (ID.0092) >> +147 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [148 0 R 150 0 R] /ID (ID.0092) >> endobj -142 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 141 0 R /K <> /ID (ID.0093) >> +148 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 147 0 R /K [<> 149 0 R <> ] /ID (ID.0093) >> endobj -143 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 140 0 R /K 144 0 R /ID (ID.0094) >> +149 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 148 0 R /K <> /ID (ID.0094) >> endobj -144 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 143 0 R /K <> /ID (ID.0095) >> +150 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 147 0 R /K 151 0 R /ID (ID.0095) >> endobj 151 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [152 0 R 155 0 R] /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 150 0 R /K <> /ID (ID.0096) >> endobj 152 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 151 0 R /K [153 0 R 154 0 R] /ID (ID.0097) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 153 0 R /ID (ID.0097) >> endobj 153 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 152 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 152 0 R /K [154 0 R 155 0 R] /ID (ID.0098) >> endobj 154 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 152 0 R /K <> /ID (ID.0099) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 153 0 R /K <> /ID (ID.0099) >> endobj 155 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 151 0 R /K 156 0 R /ID (ID.0100) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 153 0 R /K <> /ID (ID.0100) >> endobj -156 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 155 0 R /K <> /ID (ID.0101) >> +163 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 101 0 R /K [164 0 R 166 0 R] /ID (ID.0101) >> endobj -157 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 158 0 R /ID (ID.0102) >> +164 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 163 0 R /K [<> 165 0 R <> ] /ID (ID.0102) >> endobj -158 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 157 0 R /K [159 0 R 160 0 R] /ID (ID.0103) >> +165 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 164 0 R /K <> /ID (ID.0103) >> endobj -159 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 158 0 R /K <> /ID (ID.0104) >> +166 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 163 0 R /K 167 0 R /ID (ID.0104) >> endobj -160 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 158 0 R /K <> /ID (ID.0105) >> +167 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 166 0 R /K <> /ID (ID.0105) >> endobj -168 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 104 0 R /K [169 0 R 172 0 R] /ID (ID.0106) >> +174 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [175 0 R 190 0 R] /ID (ID.0106) >> endobj -169 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 168 0 R /K [170 0 R 171 0 R] /ID (ID.0107) >> +175 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 174 0 R /K [176 0 R 178 0 R] /ID (ID.0107) >> endobj -170 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 169 0 R /K <> /ID (ID.0108) >> +176 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 175 0 R /K [<> 177 0 R <> ] /ID (ID.0108) >> endobj -171 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 169 0 R /K <> /ID (ID.0109) >> +177 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 176 0 R /K <> /ID (ID.0109) >> endobj -172 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 168 0 R /K 173 0 R /ID (ID.0110) >> +178 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 175 0 R /K 179 0 R /ID (ID.0110) >> endobj -173 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 172 0 R /K <> /ID (ID.0111) >> +179 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 178 0 R /K <> /ID (ID.0111) >> endobj 180 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [181 0 R 197 0 R] /ID (ID.0112) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 181 0 R /ID (ID.0112) >> endobj 181 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 180 0 R /K [182 0 R 185 0 R] /ID (ID.0113) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 180 0 R /K [182 0 R 183 0 R] /ID (ID.0113) >> endobj 182 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 181 0 R /K [183 0 R 184 0 R] /ID (ID.0114) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 181 0 R /K <> /ID (ID.0114) >> endobj 183 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 182 0 R /K <> /ID (ID.0115) >> -endobj -184 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 182 0 R /K <> /ID (ID.0116) >> -endobj -185 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 181 0 R /K 186 0 R /ID (ID.0117) >> -endobj -186 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 185 0 R /K <> /ID (ID.0118) >> -endobj -187 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 23 0 R /K 188 0 R /ID (ID.0119) >> -endobj -188 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 187 0 R /K [189 0 R 190 0 R] /ID (ID.0120) >> -endobj -189 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 188 0 R /K <> /ID (ID.0121) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 181 0 R /K <> /ID (ID.0115) >> endobj 190 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 188 0 R /K <> /ID (ID.0122) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 174 0 R /K [191 0 R 193 0 R] /ID (ID.0116) >> endobj -197 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 180 0 R /K [198 0 R 201 0 R] /ID (ID.0123) >> -endobj -198 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 197 0 R /K [199 0 R 200 0 R] /ID (ID.0124) >> -endobj -199 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 198 0 R /K <> /ID (ID.0125) >> +191 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 190 0 R /K [<> 192 0 R <> ] /ID (ID.0117) >> endobj -200 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 198 0 R /K <> /ID (ID.0126) >> +192 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 191 0 R /K <> /ID (ID.0118) >> endobj -201 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 197 0 R /K 202 0 R /ID (ID.0127) >> +193 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 190 0 R /K 194 0 R /ID (ID.0119) >> endobj -202 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 201 0 R /K <> /ID (ID.0128) >> +194 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 193 0 R /K <> /ID (ID.0120) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 211 0 R /ClassMap 212 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 203 0 R /ClassMap 204 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -203 0 obj +195 0 obj << /Type /Metadata /Subtype /XML /Length 12082 >> stream @@ -2051,23 +2066,23 @@ stream endstream endobj -213 0 obj +205 0 obj [277.8 0 0 500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 0 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 0 777.8 625 916.7 750 777.8 680.6 0 736.1 555.6 722.2 750 0 1027.8 ] endobj -214 0 obj +206 0 obj [555.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277.8 0 277.8 0 500 500 500 500 500 500 500 500 500 500 277.8 0 0 0 0 0 0 750 708.3 0 763.9 0 652.8 0 750 361.1 0 0 625 916.7 0 777.8 680.6 0 0 555.6 0 0 0 1027.8 0 0 0 0 0 0 0 0 0 500 555.6 444.4 555.6 444.4 305.6 500 555.6 277.8 0 527.8 277.8 833.3 555.6 500 0 0 391.7 394.4 388.9 555.6 527.8 722.2 0 0 444.4 ] endobj -215 0 obj +207 0 obj [ 103 [ 333 ] ] endobj -217 0 obj +209 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -216 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 217 0 R >> +208 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 209 0 R >> endobj -218 0 obj +210 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2101,47 +2116,47 @@ end %%EOF endstream endobj -72 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 219 0 R ] /ToUnicode 218 0 R >> +71 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 211 0 R ] /ToUnicode 210 0 R >> endobj -219 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 216 0 R /W 215 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +211 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 208 0 R /W 207 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -220 0 obj +212 0 obj [575 575 575 575 575 575 575 0 0 0 0 0 0 0 0 0 0 818.1 0 0 0 0 0 900 436.1 0 0 0 1091.7 0 0 0 0 0 638.9 0 0 0 1188.9 0 0 0 0 0 0 0 0 0 559 638.9 511.1 638.9 527.1 0 575 638.9 319.4 0 606.9 319.4 0 638.9 575 0 0 473.6 453.6 447.2 638.9 0 830.6 ] endobj -221 0 obj +213 0 obj [312.5 0 0 562.5 562.5 562.5 562.5 562.5 562.5 0 0 0 0 0 0 0 0 0 0 0 799.8 812.5 862.3 0 707.2 0 879.6 419 0 0 675.9 1067.1 0 0 0 0 0 625 0 0 0 1162 0 0 0 0 0 0 0 0 0 546.9 625 500 625 513.3 343.7 562.5 625 312.5 0 593.7 312.5 937.5 625 562.5 625 0 459.5 443.8 437.5 625 593.7 812.5 ] endobj -223 0 obj +215 0 obj << /Length1 1831 /Length2 13349 /Length3 0 /Length 15180 >> [BINARY STREAM] endobj -222 0 obj -<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 223 0 R >> +214 0 obj +<< /Type /FontDescriptor /FontName /VUAMDX+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontFile 215 0 R >> endobj -225 0 obj +217 0 obj << /Length1 1948 /Length2 12653 /Length3 0 /Length 14601 >> [BINARY STREAM] endobj -224 0 obj -<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 225 0 R >> +216 0 obj +<< /Type /FontDescriptor /FontName /PTHRFJ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontFile 217 0 R >> endobj -227 0 obj +219 0 obj << /Length1 2091 /Length2 16814 /Length3 0 /Length 18905 >> [BINARY STREAM] endobj -226 0 obj -<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 227 0 R >> +218 0 obj +<< /Type /FontDescriptor /FontName /KQCKIC+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontFile 219 0 R >> endobj -229 0 obj +221 0 obj << /Length1 1766 /Length2 11604 /Length3 0 /Length 13370 >> [BINARY STREAM] endobj -228 0 obj -<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 229 0 R >> +220 0 obj +<< /Type /FontDescriptor /FontName /PZYAPR+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /FontFile 221 0 R >> endobj -230 0 obj +222 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2261,10 +2276,10 @@ end %%EOF endstream endobj -71 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 222 0 R /FirstChar 49 /LastChar 119 /Widths 220 0 R /ToUnicode 230 0 R >> +70 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /VUAMDX+CMBX10 /FontDescriptor 214 0 R /FirstChar 49 /LastChar 119 /Widths 212 0 R /ToUnicode 222 0 R >> endobj -231 0 obj +223 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2384,10 +2399,10 @@ end %%EOF endstream endobj -70 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 224 0 R /FirstChar 46 /LastChar 119 /Widths 221 0 R /ToUnicode 231 0 R >> +69 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PTHRFJ+CMBX12 /FontDescriptor 216 0 R /FirstChar 46 /LastChar 119 /Widths 213 0 R /ToUnicode 223 0 R >> endobj -232 0 obj +224 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2507,10 +2522,10 @@ end %%EOF endstream endobj -73 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 226 0 R /FirstChar 12 /LastChar 122 /Widths 214 0 R /ToUnicode 232 0 R >> +72 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /KQCKIC+CMR10 /FontDescriptor 218 0 R /FirstChar 12 /LastChar 122 /Widths 206 0 R /ToUnicode 224 0 R >> endobj -233 0 obj +225 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -2630,265 +2645,257 @@ end %%EOF endstream endobj -78 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 228 0 R /FirstChar 46 /LastChar 87 /Widths 213 0 R /ToUnicode 233 0 R >> +77 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /PZYAPR+CMSL10 /FontDescriptor 220 0 R /FirstChar 46 /LastChar 87 /Widths 205 0 R /ToUnicode 225 0 R >> endobj -74 0 obj -<< /Type /Pages /Parent 234 0 R /Count 10 /Kids [ 68 0 R 76 0 R 93 0 R 96 0 R 106 0 R 109 0 R 122 0 R 130 0 R 146 0 R 149 0 R ] >> +73 0 obj +<< /Type /Pages /Parent 226 0 R /Count 10 /Kids [ 67 0 R 75 0 R 91 0 R 94 0 R 103 0 R 106 0 R 118 0 R 126 0 R 142 0 R 145 0 R ] >> endobj -164 0 obj -<< /Type /Pages /Parent 234 0 R /Count 7 /Kids [ 162 0 R 166 0 R 175 0 R 178 0 R 192 0 R 195 0 R 205 0 R ] >> +159 0 obj +<< /Type /Pages /Parent 226 0 R /Count 7 /Kids [ 157 0 R 161 0 R 169 0 R 172 0 R 185 0 R 188 0 R 197 0 R ] >> endobj -234 0 obj -<< /Type /Pages /Count 17 /Kids [ 74 0 R 164 0 R ] >> +226 0 obj +<< /Type /Pages /Count 17 /Kids [ 73 0 R 159 0 R ] >> endobj -235 0 obj -<< /Type /Catalog /Pages 234 0 R /MarkInfo 207 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 203 0 R >> +227 0 obj +<< /Type /Catalog /Pages 226 0 R /MarkInfo 199 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 195 0 R >> endobj -236 0 obj +228 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 237 +0 229 0000000010 65535 f -0000027474 00000 n -0000027521 00000 n -0000027543 00000 n -0000027565 00000 n -0000051026 00000 n -0000027624 00000 n -0000030817 00000 n -0000033175 00000 n -0000031695 00000 n +0000028009 00000 n +0000028056 00000 n +0000028078 00000 n +0000028100 00000 n +0000051117 00000 n +0000028159 00000 n +0000031285 00000 n +0000033859 00000 n +0000032227 00000 n 0000000012 00000 f -0000031763 00000 n +0000032295 00000 n 0000000014 00000 f -0000031833 00000 n +0000032365 00000 n 0000000020 00000 f -0000032713 00000 n -0000031914 00000 n -0000032986 00000 n -0000032815 00000 n -0000033088 00000 n +0000033397 00000 n +0000032446 00000 n +0000033670 00000 n +0000033499 00000 n +0000033772 00000 n 0000000000 00000 f -0000033236 00000 n -0000033374 00000 n -0000033464 00000 n -0000033582 00000 n -0000033672 00000 n -0000033777 00000 n -0000033918 00000 n +0000033920 00000 n 0000034058 00000 n -0000034204 00000 n -0000034373 00000 n -0000034546 00000 n -0000034669 00000 n -0000034811 00000 n -0000034976 00000 n -0000035093 00000 n -0000035259 00000 n -0000035432 00000 n -0000035555 00000 n +0000034148 00000 n +0000034266 00000 n +0000034356 00000 n +0000034461 00000 n +0000034630 00000 n +0000034776 00000 n +0000034945 00000 n +0000035118 00000 n +0000035241 00000 n +0000035383 00000 n +0000035548 00000 n 0000035665 00000 n -0000035839 00000 n -0000036014 00000 n -0000036137 00000 n -0000036287 00000 n -0000036462 00000 n +0000035831 00000 n +0000036004 00000 n +0000036127 00000 n +0000036237 00000 n +0000036411 00000 n 0000036586 00000 n -0000036689 00000 n -0000036875 00000 n -0000037050 00000 n -0000037174 00000 n -0000037316 00000 n -0000037491 00000 n -0000037615 00000 n -0000037789 00000 n -0000037964 00000 n -0000038088 00000 n -0000038254 00000 n -0000038429 00000 n -0000038553 00000 n -0000038695 00000 n -0000038862 00000 n -0000038965 00000 n -0000039135 00000 n -0000039310 00000 n +0000036709 00000 n +0000036859 00000 n +0000037034 00000 n +0000037158 00000 n +0000037261 00000 n +0000037447 00000 n +0000037622 00000 n +0000037746 00000 n +0000037888 00000 n +0000038063 00000 n +0000038187 00000 n +0000038361 00000 n +0000038536 00000 n +0000038660 00000 n +0000038826 00000 n +0000039001 00000 n +0000039125 00000 n +0000039267 00000 n 0000039434 00000 n -0000039596 00000 n -0000039771 00000 n -0000005348 00000 n -0000005206 00000 n +0000039537 00000 n +0000039707 00000 n +0000039882 00000 n +0000040006 00000 n +0000040168 00000 n +0000040343 00000 n +0000005351 00000 n +0000005209 00000 n 0000000020 00000 n -0000133459 00000 n -0000131507 00000 n -0000065500 00000 n -0000135406 00000 n -0000137518 00000 n -0000005831 00000 n -0000005689 00000 n -0000005447 00000 n -0000137357 00000 n -0000039895 00000 n -0000040000 00000 n -0000040169 00000 n -0000040309 00000 n -0000040441 00000 n -0000040647 00000 n -0000040820 00000 n -0000040943 00000 n -0000041157 00000 n -0000041330 00000 n -0000041453 00000 n -0000041635 00000 n -0000041808 00000 n -0000009286 00000 n -0000009144 00000 n -0000005906 00000 n -0000009970 00000 n -0000009828 00000 n -0000009373 00000 n -0000041931 00000 n -0000042037 00000 n -0000042205 00000 n -0000042347 00000 n -0000042489 00000 n -0000042596 00000 n -0000042741 00000 n -0000011143 00000 n -0000010998 00000 n -0000010057 00000 n -0000011854 00000 n -0000011709 00000 n -0000011231 00000 n -0000042857 00000 n -0000042982 00000 n -0000043148 00000 n -0000043291 00000 n -0000043434 00000 n -0000043542 00000 n -0000043687 00000 n -0000043786 00000 n -0000043898 00000 n -0000044024 00000 n -0000014117 00000 n -0000013972 00000 n -0000011942 00000 n -0000044169 00000 n -0000044278 00000 n -0000044480 00000 n -0000044617 00000 n -0000044725 00000 n -0000015408 00000 n -0000015263 00000 n -0000014205 00000 n -0000044870 00000 n -0000044987 00000 n -0000045165 00000 n -0000045302 00000 n -0000045411 00000 n -0000045628 00000 n -0000045765 00000 n -0000045873 00000 n -0000046018 00000 n -0000046127 00000 n -0000046300 00000 n -0000046437 00000 n -0000046545 00000 n -0000017552 00000 n -0000017407 00000 n -0000015508 00000 n -0000018374 00000 n -0000018229 00000 n -0000017652 00000 n -0000046690 00000 n -0000046799 00000 n -0000046973 00000 n -0000047116 00000 n -0000047259 00000 n -0000047367 00000 n -0000047512 00000 n -0000047611 00000 n -0000047723 00000 n -0000047849 00000 n -0000020545 00000 n -0000020398 00000 n -0000018462 00000 n -0000137665 00000 n -0000021363 00000 n -0000021216 00000 n -0000020633 00000 n -0000047994 00000 n -0000048103 00000 n -0000048269 00000 n -0000048412 00000 n -0000048555 00000 n -0000048663 00000 n -0000022424 00000 n -0000022277 00000 n -0000021451 00000 n -0000023236 00000 n -0000023089 00000 n -0000022512 00000 n -0000048808 00000 n -0000048916 00000 n -0000049025 00000 n -0000049195 00000 n -0000049338 00000 n -0000049481 00000 n -0000049589 00000 n -0000049734 00000 n -0000049833 00000 n -0000049945 00000 n -0000050071 00000 n -0000025519 00000 n -0000025372 00000 n -0000023324 00000 n -0000026331 00000 n -0000026184 00000 n -0000025607 00000 n -0000050216 00000 n -0000050325 00000 n -0000050487 00000 n -0000050630 00000 n -0000050773 00000 n -0000050881 00000 n -0000051165 00000 n -0000027386 00000 n -0000027239 00000 n -0000026419 00000 n -0000027587 00000 n -0000028351 00000 n -0000029263 00000 n -0000030214 00000 n -0000030762 00000 n -0000031489 00000 n -0000063338 00000 n -0000063527 00000 n -0000063926 00000 n -0000064550 00000 n -0000063959 00000 n -0000064773 00000 n -0000065656 00000 n -0000065859 00000 n -0000066121 00000 n -0000081704 00000 n -0000066423 00000 n -0000096615 00000 n -0000081913 00000 n -0000115830 00000 n -0000096824 00000 n -0000129508 00000 n -0000116037 00000 n -0000129717 00000 n -0000131669 00000 n -0000133621 00000 n -0000135567 00000 n -0000137792 00000 n -0000137864 00000 n -0000137983 00000 n +0000133550 00000 n +0000131598 00000 n +0000065591 00000 n +0000135497 00000 n +0000137609 00000 n +0000005834 00000 n +0000005692 00000 n +0000005450 00000 n +0000137448 00000 n +0000040467 00000 n +0000040572 00000 n +0000040769 00000 n +0000040901 00000 n +0000041107 00000 n +0000041280 00000 n +0000041403 00000 n +0000041617 00000 n +0000041790 00000 n +0000041913 00000 n +0000042095 00000 n +0000042268 00000 n +0000009292 00000 n +0000009150 00000 n +0000005909 00000 n +0000009976 00000 n +0000009834 00000 n +0000009379 00000 n +0000042391 00000 n +0000042496 00000 n +0000042727 00000 n +0000042862 00000 n +0000042968 00000 n +0000043112 00000 n +0000011206 00000 n +0000011061 00000 n +0000010063 00000 n +0000011917 00000 n +0000011772 00000 n +0000011294 00000 n +0000043228 00000 n +0000043353 00000 n +0000043583 00000 n +0000043720 00000 n +0000043828 00000 n +0000043973 00000 n +0000044072 00000 n +0000044184 00000 n +0000044310 00000 n +0000014237 00000 n +0000014092 00000 n +0000012005 00000 n +0000044455 00000 n +0000044564 00000 n +0000044802 00000 n +0000044939 00000 n +0000045047 00000 n +0000015573 00000 n +0000015428 00000 n +0000014325 00000 n +0000045192 00000 n +0000045309 00000 n +0000045523 00000 n +0000045660 00000 n +0000045769 00000 n +0000046022 00000 n +0000046159 00000 n +0000046267 00000 n +0000046412 00000 n +0000046521 00000 n +0000046730 00000 n +0000046867 00000 n +0000046975 00000 n +0000017859 00000 n +0000017714 00000 n +0000015673 00000 n +0000018681 00000 n +0000018536 00000 n +0000017959 00000 n +0000047121 00000 n +0000047230 00000 n +0000047468 00000 n +0000047605 00000 n +0000047713 00000 n +0000047858 00000 n +0000047957 00000 n +0000048069 00000 n +0000048195 00000 n +0000020909 00000 n +0000020762 00000 n +0000018769 00000 n +0000137756 00000 n +0000021727 00000 n +0000021580 00000 n +0000020997 00000 n +0000048340 00000 n +0000048449 00000 n +0000048679 00000 n +0000048816 00000 n +0000048924 00000 n +0000022845 00000 n +0000022698 00000 n +0000021815 00000 n +0000023657 00000 n +0000023510 00000 n +0000022933 00000 n +0000049069 00000 n +0000049177 00000 n +0000049286 00000 n +0000049520 00000 n +0000049657 00000 n +0000049765 00000 n +0000049910 00000 n +0000050009 00000 n +0000050121 00000 n +0000050247 00000 n +0000025997 00000 n +0000025850 00000 n +0000023745 00000 n +0000026809 00000 n +0000026662 00000 n +0000026085 00000 n +0000050392 00000 n +0000050501 00000 n +0000050727 00000 n +0000050864 00000 n +0000050972 00000 n +0000051256 00000 n +0000027921 00000 n +0000027774 00000 n +0000026897 00000 n +0000028122 00000 n +0000028963 00000 n +0000029875 00000 n +0000030826 00000 n +0000031230 00000 n +0000032064 00000 n +0000063429 00000 n +0000063618 00000 n +0000064017 00000 n +0000064641 00000 n +0000064050 00000 n +0000064864 00000 n +0000065747 00000 n +0000065950 00000 n +0000066212 00000 n +0000081795 00000 n +0000066514 00000 n +0000096706 00000 n +0000082004 00000 n +0000115921 00000 n +0000096915 00000 n +0000129599 00000 n +0000116128 00000 n +0000129808 00000 n +0000131760 00000 n +0000133712 00000 n +0000135658 00000 n +0000137883 00000 n +0000137955 00000 n +0000138074 00000 n trailer -<< /Size 237 /Root 235 0 R /Info 236 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 229 /Root 227 0 R /Info 228 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -138116 +138207 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.tpf b/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.tpf index e302a1bd4..cfebded33 100644 --- a/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.tpf +++ b/required/latex-lab/testfiles-toc/toc-ex-book-tocdepth.tpf @@ -1,14 +1,14 @@ %PDF-2.0 %ÐÔÅØ -68 0 obj +67 0 obj << -/Length 9655 +/Length 9658 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 627.357 Td [(Con)29(ten)29(ts)]TJ ET @@ -230,23 +230,23 @@ ET EMC endstream endobj -27 0 obj +26 0 obj << /Type /Page -/Contents 68 0 R -/Resources 67 0 R +/Contents 67 0 R +/Resources 66 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 0 -/Parent 74 0 R +/Parent 73 0 R >> endobj -67 0 obj +66 0 obj << /ExtGState 1 0 R -/Font << /F48 69 0 R /F46 70 0 R /F50 71 0 R /F53 72 0 R /F45 73 0 R >> +/Font << /F48 68 0 R /F46 69 0 R /F50 70 0 R /F53 71 0 R /F45 72 0 R >> >> endobj -77 0 obj +76 0 obj << /Length 172 >> @@ -261,31 +261,31 @@ EMC EMC endstream endobj -76 0 obj +75 0 obj << /Type /Page -/Contents 77 0 R -/Resources 75 0 R +/Contents 76 0 R +/Resources 74 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 1 -/Parent 74 0 R +/Parent 73 0 R >> endobj -75 0 obj +74 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F54 78 0 R /F53 72 0 R >> +/Font << /F45 72 0 R /F54 77 0 R /F53 71 0 R >> >> endobj -94 0 obj +92 0 obj << -/Length 5766 +/Length 5769 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 627.357 Td [(List)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 51.767 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 29.559 0 Td [(Figures)]TJ ET @@ -363,23 +363,23 @@ ET EMC endstream endobj -82 0 obj +80 0 obj << /Type /Page -/Contents 94 0 R -/Resources 93 0 R +/Contents 92 0 R +/Resources 91 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 2 -/Parent 74 0 R +/Parent 73 0 R >> endobj -93 0 obj +91 0 obj << /ExtGState 1 0 R -/Font << /F48 69 0 R /F53 72 0 R /F45 73 0 R >> +/Font << /F48 68 0 R /F53 71 0 R /F45 72 0 R >> >> endobj -97 0 obj +95 0 obj << /Length 267 >> @@ -394,41 +394,46 @@ EMC EMC endstream endobj -96 0 obj +94 0 obj << /Type /Page -/Contents 97 0 R -/Resources 95 0 R +/Contents 95 0 R +/Resources 93 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 3 -/Parent 74 0 R +/Parent 73 0 R >> endobj -95 0 obj +93 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -107 0 obj +104 0 obj << -/Length 592 +/Length 656 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(1)]TJ +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 185.644 632.338 Td [(1)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(In)29(tro)-29(duction)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(Some)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 26.561 0 Td [(collection)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 44.268 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(.)-167(.)-166(.)]TJ ET @@ -440,23 +445,23 @@ ET EMC endstream endobj -101 0 obj +98 0 obj << /Type /Page -/Contents 107 0 R -/Resources 106 0 R +/Contents 104 0 R +/Resources 103 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 4 -/Parent 74 0 R +/Parent 73 0 R >> endobj -106 0 obj +103 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -111 0 obj +108 0 obj << /Length 286 >> @@ -471,51 +476,56 @@ EMC EMC endstream endobj -110 0 obj +107 0 obj << /Type /Page -/Contents 111 0 R -/Resources 109 0 R +/Contents 108 0 R +/Resources 106 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 5 -/Parent 74 0 R +/Parent 73 0 R >> endobj -109 0 obj +106 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -124 0 obj +120 0 obj << -/Length 1175 +/Length 1239 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(2)]TJ +/F47 20.6625 Tf 185.644 632.338 Td [(2)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(Swiss)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 69.501 0 Td [(Bears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(A)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 10.791 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 22.438 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(2.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 199.36 492.033 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(2.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 250.71 492.033 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(swiss)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.066 0 Td [(b)-28(ear)]TJ ET @@ -527,25 +537,25 @@ ET EMC endstream endobj -115 0 obj +111 0 obj << /Type /Page -/Contents 124 0 R -/Resources 123 0 R +/Contents 120 0 R +/Resources 119 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 6 -/Parent 125 0 R +/Parent 121 0 R >> endobj -123 0 obj +119 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -133 0 obj +129 0 obj << -/Length 646 +/Length 724 >> stream /opacity1 gs @@ -554,17 +564,22 @@ BT /F45 9.9626 Tf 150.705 735.021 Td [(8)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 206.758 0 Td [(CHAPTER)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 53.536 0 Td [(2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 15.494 0 Td [(SWISS)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 33.754 0 Td [(BEARS)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 150.705 707.058 Td [(2.1)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 186.641 707.058 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 186.641 707.058 Td [(Living)]TJ/F53 9.9626 Tf( )Tj/F56 14.3462 Tf 48.48 0 Td [(ground)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 150.705 685.239 Td [(Switzerland)]TJ ET @@ -573,25 +588,25 @@ EMC EMC endstream endobj -129 0 obj +125 0 obj << /Type /Page -/Contents 133 0 R -/Resources 132 0 R +/Contents 129 0 R +/Resources 128 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 7 -/Parent 125 0 R +/Parent 121 0 R >> endobj -132 0 obj +128 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R /F56 134 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R /F56 130 0 R >> >> endobj -150 0 obj +146 0 obj << -/Length 1209 +/Length 1450 >> stream /opacity1 gs @@ -600,42 +615,57 @@ BT /F54 9.9626 Tf 99.895 735.021 Td [(2.2.)]TJ/F53 9.9626 Tf( )Tj/F54 9.9626 Tf 23.241 0 Td [(HOBBIES)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 315.49 0 Td [(9)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F56 14.3462 Tf 99.895 707.058 Td [(2.2)]TJ ET EMC /section <> BDC BT +/F53 9.9626 Tf 135.832 707.058 Td [( )]TJ +ET +EMC +/section <> BDC +BT /F56 14.3462 Tf 135.832 707.058 Td [(Hobbies)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 99.895 683.247 Td [(2.2.1)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 140.981 683.247 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 140.981 683.247 Td [(Music)]TJ/F53 9.9626 Tf( )Tj/F50 11.9552 Tf 39.722 0 Td [(instrumen)31(t)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 664.859 Td [(Albhorn)]TJ ET EMC -/section-number <> BDC +/heading-number <> BDC BT /F50 11.9552 Tf 99.895 636.974 Td [(2.2.2)]TJ ET EMC -/subsection <> BDC +/subsection <> BDC +BT +/F53 9.9626 Tf 140.981 636.974 Td [( )]TJ +ET +EMC +/subsection <> BDC BT /F50 11.9552 Tf 140.981 636.974 Td [(Bo)-31(oks)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 618.586 Td [(Oh,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 19.367 0 Td [(wie)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.707 0 Td [(sc)28(h\366n)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.446 0 Td [(ist)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 13.889 0 Td [(P)28(anama)]TJ ET @@ -644,23 +674,23 @@ EMC EMC endstream endobj -138 0 obj +134 0 obj << /Type /Page -/Contents 150 0 R -/Resources 149 0 R +/Contents 146 0 R +/Resources 145 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 8 -/Parent 125 0 R +/Parent 121 0 R >> endobj -149 0 obj +145 0 obj << /ExtGState 1 0 R -/Font << /F54 78 0 R /F53 72 0 R /F45 73 0 R /F56 134 0 R /F50 71 0 R >> +/Font << /F54 77 0 R /F53 71 0 R /F45 72 0 R /F56 130 0 R /F50 70 0 R >> >> endobj -153 0 obj +149 0 obj << /Length 326 >> @@ -675,51 +705,56 @@ EMC EMC endstream endobj -152 0 obj +148 0 obj << /Type /Page -/Contents 153 0 R -/Resources 151 0 R +/Contents 149 0 R +/Resources 147 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 9 -/Parent 125 0 R +/Parent 121 0 R >> endobj -151 0 obj +147 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -166 0 obj +161 0 obj << -/Length 1137 +/Length 1201 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(3)]TJ +/F47 20.6625 Tf 185.644 632.338 Td [(3)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 83.024 0 Td [(b)-29(ears)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.205 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.102 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(3.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 195.984 492.033 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(3.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 247.335 492.033 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.343 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(Italian)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.818 0 Td [(b)-28(ear)]TJ ET @@ -731,23 +766,23 @@ ET EMC endstream endobj -157 0 obj +152 0 obj << /Type /Page -/Contents 166 0 R -/Resources 165 0 R +/Contents 161 0 R +/Resources 160 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 10 -/Parent 125 0 R +/Parent 121 0 R >> endobj -165 0 obj +160 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -169 0 obj +164 0 obj << /Length 332 >> @@ -762,41 +797,46 @@ EMC EMC endstream endobj -168 0 obj +163 0 obj << /Type /Page -/Contents 169 0 R -/Resources 167 0 R +/Contents 164 0 R +/Resources 162 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 11 -/Parent 125 0 R +/Parent 121 0 R >> endobj -167 0 obj +162 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -178 0 obj +172 0 obj << -/Length 526 +/Length 590 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(4)]TJ +/F47 20.6625 Tf 185.644 632.338 Td [(4)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(Mask)29(ed)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 95.581 0 Td [(b)-29(ear)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(Mask)28(ed)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 36.3 0 Td [(b)-28(ear)]TJ ET @@ -808,23 +848,23 @@ ET EMC endstream endobj -173 0 obj +167 0 obj << /Type /Page -/Contents 178 0 R -/Resources 177 0 R +/Contents 172 0 R +/Resources 171 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 12 -/Parent 179 0 R +/Parent 173 0 R >> endobj -177 0 obj +171 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -182 0 obj +176 0 obj << /Length 326 >> @@ -839,51 +879,56 @@ EMC EMC endstream endobj -181 0 obj +175 0 obj << /Type /Page -/Contents 182 0 R -/Resources 180 0 R +/Contents 176 0 R +/Resources 174 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 13 -/Parent 179 0 R +/Parent 173 0 R >> endobj -180 0 obj +174 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -196 0 obj +189 0 obj << -/Length 1195 +/Length 1259 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(5)]TJ +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ ET EMC -/Span <> BDC +/heading-number <> BDC +BT +/F47 20.6625 Tf 185.644 632.338 Td [(5)]TJ +ET +EMC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(Hugging)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 103.916 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(Duc)28(k)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 25.869 0 Td [(h)28(ugging)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 37.351 0 Td [(the)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 17.154 0 Td [(glob)-28(e,)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.05 0 Td [(see)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 16.103 0 Td [(\034gure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 27.695 0 Td [(5.1)]TJ ET EMC -/Lbl <> BDC +/Lbl <> BDC BT /F45 9.9626 Tf 211.215 492.033 Td [(Figure)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 31.43 0 Td [(5.1:)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 262.565 492.033 Td [(Image)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.604 0 Td [(of)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 11.344 0 Td [(a)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 8.3 0 Td [(duc)28(k)]TJ ET @@ -895,23 +940,23 @@ ET EMC endstream endobj -187 0 obj +180 0 obj << /Type /Page -/Contents 196 0 R -/Resources 195 0 R +/Contents 189 0 R +/Resources 188 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 14 -/Parent 179 0 R +/Parent 173 0 R >> endobj -195 0 obj +188 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj -199 0 obj +192 0 obj << /Length 327 >> @@ -926,23 +971,23 @@ EMC EMC endstream endobj -198 0 obj +191 0 obj << /Type /Page -/Contents 199 0 R -/Resources 197 0 R +/Contents 192 0 R +/Resources 190 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 15 -/Parent 179 0 R +/Parent 173 0 R >> endobj -197 0 obj +190 0 obj << /ExtGState 1 0 R -/Font << /F45 73 0 R /F53 72 0 R /F54 78 0 R >> +/Font << /F45 72 0 R /F53 71 0 R /F54 77 0 R >> >> endobj -207 0 obj +199 0 obj << /Type /Metadata /Subtype /XML /Length 12080 @@ -1185,25 +1230,30 @@ stream endstream endobj -209 0 obj +201 0 obj << -/Length 524 +/Length 588 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC +BT +/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf [-734( )]TJ +ET +EMC +/heading-number <> BDC BT -/F47 20.6625 Tf 99.895 632.338 Td [(Chapter)]TJ/F53 9.9626 Tf( )Tj/F47 20.6625 Tf 85.749 0 Td [(6)]TJ +/F47 20.6625 Tf 185.644 632.338 Td [(6)]TJ ET EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 99.895 582.525 Td [(Witc)29(h)]TJ/F53 9.9626 Tf( )Tj/F48 24.7871 Tf 77.978 0 Td [(duc)29(k)]TJ ET EMC -/text-block <> BDC +/text-block <> BDC BT /F45 9.9626 Tf 99.895 530.719 Td [(Witc)28(h)]TJ/F53 9.9626 Tf( )Tj/F45 9.9626 Tf 29.881 0 Td [(duc)28(k)]TJ ET @@ -1215,20 +1265,20 @@ ET EMC endstream endobj -203 0 obj +195 0 obj << /Type /Page -/Contents 209 0 R -/Resources 208 0 R +/Contents 201 0 R +/Resources 200 0 R /MediaBox [0 0 595.276 841.89] /Tabs /S /StructParents 16 -/Parent 179 0 R +/Parent 173 0 R >> endobj -208 0 obj +200 0 obj << /ExtGState 1 0 R -/Font << /F47 108 0 R /F53 72 0 R /F48 69 0 R /F45 73 0 R >> +/Font << /F47 105 0 R /F53 71 0 R /F48 68 0 R /F45 72 0 R >> >> endobj 1 0 obj @@ -1243,47 +1293,46 @@ endobj 4 0 obj << >> endobj -210 0 obj +202 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 26 0 R 30 0 R 31 0 R 30 0 R 30 0 R 33 0 R 33 0 R 36 0 R 37 0 R 36 0 R 36 0 R 40 0 R 41 0 R 40 0 R 40 0 R 43 0 R 44 0 R 43 0 R 43 0 R 47 0 R 48 0 R 47 0 R 47 0 R 50 0 R 51 0 R 50 0 R 50 0 R 53 0 R 54 0 R 53 0 R 53 0 R 56 0 R 57 0 R 56 0 R 56 0 R 59 0 R 59 0 R 62 0 R 63 0 R 62 0 R 62 0 R 65 0 R 66 0 R 65 0 R 65 0 R ] +<< /Nums [0 [ 25 0 R 29 0 R 30 0 R 29 0 R 29 0 R 32 0 R 32 0 R 35 0 R 36 0 R 35 0 R 35 0 R 39 0 R 40 0 R 39 0 R 39 0 R 42 0 R 43 0 R 42 0 R 42 0 R 46 0 R 47 0 R 46 0 R 46 0 R 49 0 R 50 0 R 49 0 R 49 0 R 52 0 R 53 0 R 52 0 R 52 0 R 55 0 R 56 0 R 55 0 R 55 0 R 58 0 R 58 0 R 61 0 R 62 0 R 61 0 R 61 0 R 64 0 R 65 0 R 64 0 R 64 0 R ] 1 [ ] -2 [ 81 0 R 85 0 R 86 0 R 85 0 R 85 0 R 88 0 R 89 0 R 88 0 R 88 0 R 91 0 R 92 0 R 91 0 R 91 0 R ] +2 [ 79 0 R 83 0 R 84 0 R 83 0 R 83 0 R 86 0 R 87 0 R 86 0 R 86 0 R 89 0 R 90 0 R 89 0 R 89 0 R ] 3 [ ] -4 [ 100 0 R 102 0 R 104 0 R ] +4 [ 97 0 R 99 0 R 97 0 R 101 0 R ] 5 [ ] -6 [ 114 0 R 116 0 R 118 0 R 121 0 R 122 0 R ] -7 [ 128 0 R 127 0 R 131 0 R ] -8 [ 137 0 R 136 0 R 141 0 R 140 0 R 143 0 R 146 0 R 145 0 R 148 0 R ] +6 [ 110 0 R 112 0 R 110 0 R 114 0 R 117 0 R 118 0 R ] +7 [ 124 0 R 123 0 R 123 0 R 127 0 R ] +8 [ 133 0 R 132 0 R 132 0 R 137 0 R 136 0 R 136 0 R 139 0 R 142 0 R 141 0 R 141 0 R 144 0 R ] 9 [ ] -10 [ 156 0 R 158 0 R 160 0 R 163 0 R 164 0 R ] +10 [ 151 0 R 153 0 R 151 0 R 155 0 R 158 0 R 159 0 R ] 11 [ ] -12 [ 172 0 R 174 0 R 176 0 R ] +12 [ 166 0 R 168 0 R 166 0 R 170 0 R ] 13 [ ] -14 [ 186 0 R 188 0 R 190 0 R 193 0 R 194 0 R ] +14 [ 179 0 R 181 0 R 179 0 R 183 0 R 186 0 R 187 0 R ] 15 [ ] -16 [ 202 0 R 204 0 R 206 0 R ] +16 [ 194 0 R 196 0 R 194 0 R 198 0 R ] ] >> endobj -211 0 obj -<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 26 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 32 0 R (ID.0013) 33 0 R (ID.0014) 34 0 R (ID.0015) 35 0 R (ID.0016) 36 0 R (ID.0017) 37 0 R (ID.0018) 38 0 R (ID.0019) 39 0 R (ID.0020) 40 0 R (ID.0021) 41 0 R (ID.0022) 42 0 R (ID.0023) 43 0 R (ID.0024) 44 0 R (ID.0025) 45 0 R (ID.0026) 46 0 R (ID.0027) 47 0 R (ID.0028) 48 0 R (ID.0029) 49 0 R (ID.0030) 50 0 R (ID.0031) 51 0 R (ID.0032) 52 0 R (ID.0033) 53 0 R (ID.0034) 54 0 R (ID.0035) 55 0 R (ID.0036) 56 0 R (ID.0037) 57 0 R (ID.0038) 58 0 R (ID.0039) 59 0 R (ID.0040) 60 0 R (ID.0041) 61 0 R (ID.0042) 62 0 R (ID.0043) 63 0 R (ID.0044) 64 0 R (ID.0045) 65 0 R (ID.0046) 66 0 R (ID.0047) 79 0 R (ID.0048) 80 0 R (ID.0049) 81 0 R (ID.0050) 83 0 R (ID.0051) 84 0 R ] >> +203 0 obj +<< /Limits [(ID.0002) (ID.0051)]/Names [(ID.0002) 21 0 R (ID.0003) 22 0 R (ID.0004) 23 0 R (ID.0005) 24 0 R (ID.0006) 25 0 R (ID.0007) 27 0 R (ID.0008) 28 0 R (ID.0009) 29 0 R (ID.0010) 30 0 R (ID.0011) 31 0 R (ID.0012) 32 0 R (ID.0013) 33 0 R (ID.0014) 34 0 R (ID.0015) 35 0 R (ID.0016) 36 0 R (ID.0017) 37 0 R (ID.0018) 38 0 R (ID.0019) 39 0 R (ID.0020) 40 0 R (ID.0021) 41 0 R (ID.0022) 42 0 R (ID.0023) 43 0 R (ID.0024) 44 0 R (ID.0025) 45 0 R (ID.0026) 46 0 R (ID.0027) 47 0 R (ID.0028) 48 0 R (ID.0029) 49 0 R (ID.0030) 50 0 R (ID.0031) 51 0 R (ID.0032) 52 0 R (ID.0033) 53 0 R (ID.0034) 54 0 R (ID.0035) 55 0 R (ID.0036) 56 0 R (ID.0037) 57 0 R (ID.0038) 58 0 R (ID.0039) 59 0 R (ID.0040) 60 0 R (ID.0041) 61 0 R (ID.0042) 62 0 R (ID.0043) 63 0 R (ID.0044) 64 0 R (ID.0045) 65 0 R (ID.0046) 78 0 R (ID.0047) 79 0 R (ID.0048) 81 0 R (ID.0049) 82 0 R (ID.0050) 83 0 R (ID.0051) 84 0 R ] >> endobj -212 0 obj -<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 85 0 R (ID.0053) 86 0 R (ID.0054) 87 0 R (ID.0055) 88 0 R (ID.0056) 89 0 R (ID.0057) 90 0 R (ID.0058) 91 0 R (ID.0059) 92 0 R (ID.0060) 98 0 R (ID.0061) 99 0 R (ID.0062) 100 0 R (ID.0063) 102 0 R (ID.0064) 103 0 R (ID.0065) 104 0 R (ID.0066) 105 0 R (ID.0067) 112 0 R (ID.0068) 113 0 R (ID.0069) 114 0 R (ID.0070) 116 0 R (ID.0071) 117 0 R (ID.0072) 118 0 R (ID.0073) 119 0 R (ID.0074) 120 0 R (ID.0075) 121 0 R (ID.0076) 122 0 R (ID.0077) 126 0 R (ID.0078) 127 0 R (ID.0079) 128 0 R (ID.0080) 130 0 R (ID.0081) 131 0 R (ID.0082) 135 0 R (ID.0083) 136 0 R (ID.0084) 137 0 R (ID.0085) 139 0 R (ID.0086) 140 0 R (ID.0087) 141 0 R (ID.0088) 142 0 R (ID.0089) 143 0 R (ID.0090) 144 0 R (ID.0091) 145 0 R (ID.0092) 146 0 R (ID.0093) 147 0 R (ID.0094) 148 0 R (ID.0095) 154 0 R (ID.0096) 155 0 R (ID.0097) 156 0 R (ID.0098) 158 0 R (ID.0099) 159 0 R (ID.0100) 160 0 R (ID.0101) 161 0 R ] >> +204 0 obj +<< /Limits [(ID.0052) (ID.0101)]/Names [(ID.0052) 85 0 R (ID.0053) 86 0 R (ID.0054) 87 0 R (ID.0055) 88 0 R (ID.0056) 89 0 R (ID.0057) 90 0 R (ID.0058) 96 0 R (ID.0059) 97 0 R (ID.0060) 99 0 R (ID.0061) 100 0 R (ID.0062) 101 0 R (ID.0063) 102 0 R (ID.0064) 109 0 R (ID.0065) 110 0 R (ID.0066) 112 0 R (ID.0067) 113 0 R (ID.0068) 114 0 R (ID.0069) 115 0 R (ID.0070) 116 0 R (ID.0071) 117 0 R (ID.0072) 118 0 R (ID.0073) 122 0 R (ID.0074) 123 0 R (ID.0075) 124 0 R (ID.0076) 126 0 R (ID.0077) 127 0 R (ID.0078) 131 0 R (ID.0079) 132 0 R (ID.0080) 133 0 R (ID.0081) 135 0 R (ID.0082) 136 0 R (ID.0083) 137 0 R (ID.0084) 138 0 R (ID.0085) 139 0 R (ID.0086) 140 0 R (ID.0087) 141 0 R (ID.0088) 142 0 R (ID.0089) 143 0 R (ID.0090) 144 0 R (ID.0091) 150 0 R (ID.0092) 151 0 R (ID.0093) 153 0 R (ID.0094) 154 0 R (ID.0095) 155 0 R (ID.0096) 156 0 R (ID.0097) 157 0 R (ID.0098) 158 0 R (ID.0099) 159 0 R (ID.0100) 165 0 R (ID.0101) 166 0 R ] >> endobj -213 0 obj -<< /Limits [(ID.0102) (ID.0127)]/Names [(ID.0102) 162 0 R (ID.0103) 163 0 R (ID.0104) 164 0 R (ID.0105) 170 0 R (ID.0106) 171 0 R (ID.0107) 172 0 R (ID.0108) 174 0 R (ID.0109) 175 0 R (ID.0110) 176 0 R (ID.0111) 183 0 R (ID.0112) 184 0 R (ID.0113) 185 0 R (ID.0114) 186 0 R (ID.0115) 188 0 R (ID.0116) 189 0 R (ID.0117) 190 0 R (ID.0118) 191 0 R (ID.0119) 192 0 R (ID.0120) 193 0 R (ID.0121) 194 0 R (ID.0122) 200 0 R (ID.0123) 201 0 R (ID.0124) 202 0 R (ID.0125) 204 0 R (ID.0126) 205 0 R (ID.0127) 206 0 R ] >> +205 0 obj +<< /Limits [(ID.0102) (ID.0119)]/Names [(ID.0102) 168 0 R (ID.0103) 169 0 R (ID.0104) 170 0 R (ID.0105) 177 0 R (ID.0106) 178 0 R (ID.0107) 179 0 R (ID.0108) 181 0 R (ID.0109) 182 0 R (ID.0110) 183 0 R (ID.0111) 184 0 R (ID.0112) 185 0 R (ID.0113) 186 0 R (ID.0114) 187 0 R (ID.0115) 193 0 R (ID.0116) 194 0 R (ID.0117) 196 0 R (ID.0118) 197 0 R (ID.0119) 198 0 R ] >> endobj -214 0 obj -<< /Kids [211 0 R 212 0 R 213 0 R] >> +206 0 obj +<< /Kids [203 0 R 204 0 R 205 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -215 0 obj -<< /raggedright <> -/justify <> +207 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> @@ -1299,7 +1348,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1317,411 +1366,387 @@ endobj [ 9 0 R 11 0 R 13 0 R 15 0 R 17 0 R 19 0 R ] endobj 21 0 obj -<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 79 0 R 98 0 R 105 0 R 183 0 R 22 0 R] /ID (ID.0002) >> +<< /Type /StructElem /S /Document /NS 11 0 R /P 5 0 R /K [24 0 R 78 0 R 96 0 R 102 0 R 177 0 R 22 0 R] /ID (ID.0002) >> endobj 22 0 obj -<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [119 0 R 161 0 R 191 0 R] /ID (ID.0003) >> +<< /Type /StructElem /S /figures /NS 15 0 R /P 21 0 R /K [115 0 R 156 0 R 184 0 R] /ID (ID.0003) >> endobj 23 0 obj << /Type /StructElem /S /Artifact /NS 15 0 R /P 21 0 R /ID (ID.0004) >> endobj 24 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 28 0 R] /ID (ID.0005) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [25 0 R 27 0 R] /ID (ID.0005) >> endobj 25 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K 26 0 R /ID (ID.0006) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 24 0 R /K <> /ID (ID.0006) >> endobj -26 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 25 0 R /K <> /ID (ID.0007) >> +27 0 obj +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [28 0 R 31 0 R 33 0 R 57 0 R 59 0 R] /ID (ID.0007) >> endobj 28 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 24 0 R /K [29 0 R 32 0 R 34 0 R 58 0 R 60 0 R] /ID (ID.0008) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 97 0 R ] /K 29 0 R /ID (ID.0008) >> endobj 29 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 99 0 R ] /K 30 0 R /ID (ID.0009) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 28 0 R /K [<> 30 0 R <> <>] /ID (ID.0009) >> endobj 30 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 29 0 R /K [<> 31 0 R <> <>] /ID (ID.0010) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 29 0 R /K <> /ID (ID.0010) >> endobj 31 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 30 0 R /K <> /ID (ID.0011) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 102 0 R ] /K 32 0 R /ID (ID.0011) >> endobj 32 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 105 0 R ] /K 33 0 R /ID (ID.0012) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 31 0 R /K [<> <>] /ID (ID.0012) >> endobj 33 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 32 0 R /K [<> <>] /ID (ID.0013) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [34 0 R 37 0 R 51 0 R 54 0 R] /ID (ID.0013) >> endobj 34 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [35 0 R 38 0 R 52 0 R 55 0 R] /ID (ID.0014) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 110 0 R ] /K 35 0 R /ID (ID.0014) >> endobj 35 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 113 0 R ] /K 36 0 R /ID (ID.0015) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 34 0 R /K [<> 36 0 R <> <>] /ID (ID.0015) >> endobj 36 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 35 0 R /K [<> 37 0 R <> <>] /ID (ID.0016) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 35 0 R /K <> /ID (ID.0016) >> endobj 37 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 36 0 R /K <> /ID (ID.0017) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 33 0 R /K [38 0 R 41 0 R 44 0 R] /ID (ID.0017) >> endobj 38 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 34 0 R /K [39 0 R 42 0 R 45 0 R] /ID (ID.0018) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 123 0 R ] /K 39 0 R /ID (ID.0018) >> endobj 39 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 128 0 R ] /K 40 0 R /ID (ID.0019) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 38 0 R /K [<> 40 0 R <> <>] /ID (ID.0019) >> endobj 40 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 39 0 R /K [<> 41 0 R <> <>] /ID (ID.0020) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 39 0 R /K <> /ID (ID.0020) >> endobj 41 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 40 0 R /K <> /ID (ID.0021) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 37 0 R /Ref [ 132 0 R ] /K 42 0 R /ID (ID.0021) >> endobj 42 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 38 0 R /Ref [ 137 0 R ] /K 43 0 R /ID (ID.0022) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 41 0 R /K [<> 43 0 R <> <>] /ID (ID.0022) >> endobj 43 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 42 0 R /K [<> 44 0 R <> <>] /ID (ID.0023) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 42 0 R /K <> /ID (ID.0023) >> endobj 44 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 43 0 R /K <> /ID (ID.0024) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 37 0 R /K [45 0 R 48 0 R] /ID (ID.0024) >> endobj 45 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 38 0 R /K [46 0 R 49 0 R] /ID (ID.0025) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 136 0 R ] /K 46 0 R /ID (ID.0025) >> endobj 46 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 141 0 R ] /K 47 0 R /ID (ID.0026) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 45 0 R /K [<> 47 0 R <> <>] /ID (ID.0026) >> endobj 47 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 46 0 R /K [<> 48 0 R <> <>] /ID (ID.0027) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 46 0 R /K <> /ID (ID.0027) >> endobj 48 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 47 0 R /K <> /ID (ID.0028) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 44 0 R /Ref [ 141 0 R ] /K 49 0 R /ID (ID.0028) >> endobj 49 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 45 0 R /Ref [ 146 0 R ] /K 50 0 R /ID (ID.0029) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 48 0 R /K [<> 50 0 R <> <>] /ID (ID.0029) >> endobj 50 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 49 0 R /K [<> 51 0 R <> <>] /ID (ID.0030) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 49 0 R /K <> /ID (ID.0030) >> endobj 51 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 50 0 R /K <> /ID (ID.0031) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 151 0 R ] /K 52 0 R /ID (ID.0031) >> endobj 52 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 155 0 R ] /K 53 0 R /ID (ID.0032) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 51 0 R /K [<> 53 0 R <> <>] /ID (ID.0032) >> endobj 53 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 52 0 R /K [<> 54 0 R <> <>] /ID (ID.0033) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 52 0 R /K <> /ID (ID.0033) >> endobj 54 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 53 0 R /K <> /ID (ID.0034) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 33 0 R /Ref [ 166 0 R ] /K 55 0 R /ID (ID.0034) >> endobj 55 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 34 0 R /Ref [ 171 0 R ] /K 56 0 R /ID (ID.0035) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 54 0 R /K [<> 56 0 R <> <>] /ID (ID.0035) >> endobj 56 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 55 0 R /K [<> 57 0 R <> <>] /ID (ID.0036) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 55 0 R /K <> /ID (ID.0036) >> endobj 57 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 56 0 R /K <> /ID (ID.0037) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 27 0 R /Ref [ 177 0 R ] /K 58 0 R /ID (ID.0037) >> endobj 58 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 28 0 R /Ref [ 183 0 R ] /K 59 0 R /ID (ID.0038) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 57 0 R /K [<> <>] /ID (ID.0038) >> endobj 59 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 58 0 R /K [<> <>] /ID (ID.0039) >> +<< /Type /StructElem /S /TOC /NS 9 0 R /P 27 0 R /K [60 0 R 63 0 R] /ID (ID.0039) >> endobj 60 0 obj -<< /Type /StructElem /S /TOC /NS 9 0 R /P 28 0 R /K [61 0 R 64 0 R] /ID (ID.0040) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 179 0 R ] /K 61 0 R /ID (ID.0040) >> endobj 61 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 185 0 R ] /K 62 0 R /ID (ID.0041) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 60 0 R /K [<> 62 0 R <> <>] /ID (ID.0041) >> endobj 62 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 61 0 R /K [<> 63 0 R <> <>] /ID (ID.0042) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 61 0 R /K <> /ID (ID.0042) >> endobj 63 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 62 0 R /K <> /ID (ID.0043) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 59 0 R /Ref [ 194 0 R ] /K 64 0 R /ID (ID.0043) >> endobj 64 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 60 0 R /Ref [ 201 0 R ] /K 65 0 R /ID (ID.0044) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 63 0 R /K [<> 65 0 R <> <>] /ID (ID.0044) >> endobj 65 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 64 0 R /K [<> 66 0 R <> <>] /ID (ID.0045) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 64 0 R /K <> /ID (ID.0045) >> endobj -66 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 65 0 R /K <> /ID (ID.0046) >> +78 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [79 0 R 81 0 R] /ID (ID.0046) >> endobj 79 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [80 0 R 83 0 R] /ID (ID.0047) >> -endobj -80 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 79 0 R /K 81 0 R /ID (ID.0048) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 78 0 R /K <> /ID (ID.0047) >> endobj 81 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 80 0 R /K <> /ID (ID.0049) >> +<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 78 0 R /K [82 0 R 85 0 R 88 0 R] /ID (ID.0048) >> +endobj +82 0 obj +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 115 0 R ] /K 83 0 R /ID (ID.0049) >> endobj 83 0 obj -<< /Type /StructElem /T /S /TOC /NS 9 0 R /P 79 0 R /K [84 0 R 87 0 R 90 0 R] /ID (ID.0050) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 82 0 R /K [<> 84 0 R <> <>] /ID (ID.0050) >> endobj 84 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 119 0 R ] /K 85 0 R /ID (ID.0051) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 83 0 R /K <> /ID (ID.0051) >> endobj 85 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 84 0 R /K [<> 86 0 R <> <>] /ID (ID.0052) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 156 0 R ] /K 86 0 R /ID (ID.0052) >> endobj 86 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 85 0 R /K <> /ID (ID.0053) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 85 0 R /K [<> 87 0 R <> <>] /ID (ID.0053) >> endobj 87 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 161 0 R ] /K 88 0 R /ID (ID.0054) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 86 0 R /K <> /ID (ID.0054) >> endobj 88 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 87 0 R /K [<> 89 0 R <> <>] /ID (ID.0055) >> +<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 81 0 R /Ref [ 184 0 R ] /K 89 0 R /ID (ID.0055) >> endobj 89 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 88 0 R /K <> /ID (ID.0056) >> +<< /Type /StructElem /S /Reference /NS 9 0 R /P 88 0 R /K [<> 90 0 R <> <>] /ID (ID.0056) >> endobj 90 0 obj -<< /Type /StructElem /T /S /TOCI /NS 9 0 R /P 83 0 R /Ref [ 191 0 R ] /K 91 0 R /ID (ID.0057) >> -endobj -91 0 obj -<< /Type /StructElem /S /Reference /NS 9 0 R /P 90 0 R /K [<> 92 0 R <> <>] /ID (ID.0058) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 89 0 R /K <> /ID (ID.0057) >> endobj -92 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 91 0 R /K <> /ID (ID.0059) >> +96 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [97 0 R 100 0 R] /ID (ID.0058) >> endobj -98 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 21 0 R /K [99 0 R 103 0 R] /ID (ID.0060) >> +97 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 96 0 R /K [<> 99 0 R <>] /ID (ID.0059) >> endobj 99 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 98 0 R /K [100 0 R 102 0 R] /ID (ID.0061) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 97 0 R /K <> /ID (ID.0060) >> endobj 100 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0062) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 96 0 R /K 101 0 R /ID (ID.0061) >> endobj -102 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 99 0 R /K <> /ID (ID.0063) >> +101 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 100 0 R /K <> /ID (ID.0062) >> endobj -103 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 98 0 R /K 104 0 R /ID (ID.0064) >> +102 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [109 0 R 150 0 R 165 0 R] /ID (ID.0063) >> endobj -104 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 103 0 R /K <> /ID (ID.0065) >> +109 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [110 0 R 113 0 R 122 0 R 131 0 R] /ID (ID.0064) >> endobj -105 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [112 0 R 154 0 R 170 0 R] /ID (ID.0066) >> +110 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 109 0 R /K [<> 112 0 R <>] /ID (ID.0065) >> endobj 112 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [113 0 R 117 0 R 126 0 R 135 0 R] /ID (ID.0067) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 110 0 R /K <> /ID (ID.0066) >> endobj 113 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 112 0 R /K [114 0 R 116 0 R] /ID (ID.0068) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 109 0 R /K 114 0 R /ID (ID.0067) >> endobj 114 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 113 0 R /K <> /ID (ID.0069) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 113 0 R /K <> /ID (ID.0068) >> +endobj +115 0 obj +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 116 0 R /ID (ID.0069) >> endobj 116 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 113 0 R /K <> /ID (ID.0070) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 115 0 R /K [117 0 R 118 0 R] /ID (ID.0070) >> endobj 117 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 112 0 R /K 118 0 R /ID (ID.0071) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 116 0 R /K <> /ID (ID.0071) >> endobj 118 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 117 0 R /K <> /ID (ID.0072) >> -endobj -119 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 120 0 R /ID (ID.0073) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 116 0 R /K <> /ID (ID.0072) >> endobj -120 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 119 0 R /K [121 0 R 122 0 R] /ID (ID.0074) >> +122 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 109 0 R /K [123 0 R 126 0 R] /ID (ID.0073) >> endobj -121 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 120 0 R /K <> /ID (ID.0075) >> +123 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 122 0 R /K [124 0 R <> <>] /ID (ID.0074) >> endobj -122 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 120 0 R /K <> /ID (ID.0076) >> +124 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 123 0 R /K <> /ID (ID.0075) >> endobj 126 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 112 0 R /K [127 0 R 130 0 R] /ID (ID.0077) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 122 0 R /K 127 0 R /ID (ID.0076) >> endobj 127 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 126 0 R /K [128 0 R <>] /ID (ID.0078) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 126 0 R /K <> /ID (ID.0077) >> endobj -128 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 127 0 R /K <> /ID (ID.0079) >> +131 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 109 0 R /K [132 0 R 135 0 R 140 0 R] /ID (ID.0078) >> endobj -130 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 126 0 R /K 131 0 R /ID (ID.0080) >> +132 0 obj +<< /Type /StructElem /T /S /section /NS 17 0 R /P 131 0 R /K [133 0 R <> <>] /ID (ID.0079) >> endobj -131 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 130 0 R /K <> /ID (ID.0081) >> +133 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 132 0 R /K <> /ID (ID.0080) >> endobj 135 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 112 0 R /K [136 0 R 139 0 R 144 0 R] /ID (ID.0082) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [136 0 R 138 0 R] /ID (ID.0081) >> endobj 136 0 obj -<< /Type /StructElem /T /S /section /NS 17 0 R /P 135 0 R /K [137 0 R <>] /ID (ID.0083) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 135 0 R /K [137 0 R <> <>] /ID (ID.0082) >> endobj 137 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0084) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 136 0 R /K <> /ID (ID.0083) >> +endobj +138 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 135 0 R /K 139 0 R /ID (ID.0084) >> endobj 139 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 135 0 R /K [140 0 R 142 0 R] /ID (ID.0085) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 138 0 R /K <> /ID (ID.0085) >> endobj 140 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 139 0 R /K [141 0 R <>] /ID (ID.0086) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 131 0 R /K [141 0 R 143 0 R] /ID (ID.0086) >> endobj 141 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 140 0 R /K <> /ID (ID.0087) >> +<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 140 0 R /K [142 0 R <> <>] /ID (ID.0087) >> endobj 142 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 139 0 R /K 143 0 R /ID (ID.0088) >> +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 141 0 R /K <> /ID (ID.0088) >> endobj 143 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 142 0 R /K <> /ID (ID.0089) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 140 0 R /K 144 0 R /ID (ID.0089) >> endobj 144 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 135 0 R /K [145 0 R 147 0 R] /ID (ID.0090) >> -endobj -145 0 obj -<< /Type /StructElem /T /S /subsection /NS 17 0 R /P 144 0 R /K [146 0 R <>] /ID (ID.0091) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 143 0 R /K <> /ID (ID.0090) >> endobj -146 0 obj -<< /Type /StructElem /S /section-number /NS 15 0 R /P 145 0 R /K <> /ID (ID.0092) >> +150 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [151 0 R 154 0 R] /ID (ID.0091) >> endobj -147 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 144 0 R /K 148 0 R /ID (ID.0093) >> +151 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 150 0 R /K [<> 153 0 R <>] /ID (ID.0092) >> endobj -148 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 147 0 R /K <> /ID (ID.0094) >> +153 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 151 0 R /K <> /ID (ID.0093) >> endobj 154 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [155 0 R 159 0 R] /ID (ID.0095) >> +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 150 0 R /K 155 0 R /ID (ID.0094) >> endobj 155 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 154 0 R /K [156 0 R 158 0 R] /ID (ID.0096) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 154 0 R /K <> /ID (ID.0095) >> endobj 156 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 155 0 R /K <> /ID (ID.0097) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 157 0 R /ID (ID.0096) >> +endobj +157 0 obj +<< /Type /StructElem /S /Caption /NS 11 0 R /P 156 0 R /K [158 0 R 159 0 R] /ID (ID.0097) >> endobj 158 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 155 0 R /K <> /ID (ID.0098) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 157 0 R /K <> /ID (ID.0098) >> endobj 159 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 154 0 R /K 160 0 R /ID (ID.0099) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 157 0 R /K <> /ID (ID.0099) >> endobj -160 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 159 0 R /K <> /ID (ID.0100) >> -endobj -161 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 162 0 R /ID (ID.0101) >> +165 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 102 0 R /K [166 0 R 169 0 R] /ID (ID.0100) >> endobj -162 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 161 0 R /K [163 0 R 164 0 R] /ID (ID.0102) >> +166 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 165 0 R /K [<> 168 0 R <>] /ID (ID.0101) >> endobj -163 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 162 0 R /K <> /ID (ID.0103) >> +168 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 166 0 R /K <> /ID (ID.0102) >> endobj -164 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 162 0 R /K <> /ID (ID.0104) >> +169 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 165 0 R /K 170 0 R /ID (ID.0103) >> endobj 170 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 105 0 R /K [171 0 R 175 0 R] /ID (ID.0105) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 169 0 R /K <> /ID (ID.0104) >> endobj -171 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 170 0 R /K [172 0 R 174 0 R] /ID (ID.0106) >> +177 0 obj +<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [178 0 R 193 0 R] /ID (ID.0105) >> endobj -172 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 171 0 R /K <> /ID (ID.0107) >> +178 0 obj +<< /Type /StructElem /S /Sect /NS 11 0 R /P 177 0 R /K [179 0 R 182 0 R] /ID (ID.0106) >> endobj -174 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 171 0 R /K <> /ID (ID.0108) >> +179 0 obj +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 178 0 R /K [<> 181 0 R <>] /ID (ID.0107) >> endobj -175 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 170 0 R /K 176 0 R /ID (ID.0109) >> +181 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 179 0 R /K <> /ID (ID.0108) >> endobj -176 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 175 0 R /K <> /ID (ID.0110) >> +182 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 178 0 R /K 183 0 R /ID (ID.0109) >> endobj 183 0 obj -<< /Type /StructElem /S /Part /NS 11 0 R /P 21 0 R /K [184 0 R 200 0 R] /ID (ID.0111) >> +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 182 0 R /K <> /ID (ID.0110) >> endobj 184 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 183 0 R /K [185 0 R 189 0 R] /ID (ID.0112) >> +<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 185 0 R /ID (ID.0111) >> endobj 185 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 184 0 R /K [186 0 R 188 0 R] /ID (ID.0113) >> +<< /Type /StructElem /S /Caption /NS 11 0 R /P 184 0 R /K [186 0 R 187 0 R] /ID (ID.0112) >> endobj 186 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 185 0 R /K <> /ID (ID.0114) >> -endobj -188 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 185 0 R /K <> /ID (ID.0115) >> -endobj -189 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 184 0 R /K 190 0 R /ID (ID.0116) >> -endobj -190 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 189 0 R /K <> /ID (ID.0117) >> +<< /Type /StructElem /S /Lbl /NS 11 0 R /P 185 0 R /K <> /ID (ID.0113) >> endobj -191 0 obj -<< /Type /StructElem /S /float /NS 15 0 R /P 22 0 R /K 192 0 R /ID (ID.0118) >> -endobj -192 0 obj -<< /Type /StructElem /S /Caption /NS 11 0 R /P 191 0 R /K [193 0 R 194 0 R] /ID (ID.0119) >> +187 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 185 0 R /K <> /ID (ID.0114) >> endobj 193 0 obj -<< /Type /StructElem /S /Lbl /NS 11 0 R /P 192 0 R /K <> /ID (ID.0120) >> +<< /Type /StructElem /S /Sect /NS 11 0 R /P 177 0 R /K [194 0 R 197 0 R] /ID (ID.0115) >> endobj 194 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 192 0 R /K <> /ID (ID.0121) >> -endobj -200 0 obj -<< /Type /StructElem /S /Sect /NS 11 0 R /P 183 0 R /K [201 0 R 205 0 R] /ID (ID.0122) >> +<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 193 0 R /K [<> 196 0 R <>] /ID (ID.0116) >> endobj -201 0 obj -<< /Type /StructElem /T /S /chapter /NS 17 0 R /P 200 0 R /K [202 0 R 204 0 R] /ID (ID.0123) >> -endobj -202 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 201 0 R /K <> /ID (ID.0124) >> -endobj -204 0 obj -<< /Type /StructElem /C /raggedright /S /Span /NS 11 0 R /P 201 0 R /K <> /ID (ID.0125) >> +196 0 obj +<< /Type /StructElem /S /heading-number /NS 15 0 R /P 194 0 R /K <> /ID (ID.0117) >> endobj -205 0 obj -<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 200 0 R /K 206 0 R /ID (ID.0126) >> +197 0 obj +<< /Type /StructElem /S /semantic-para /NS 15 0 R /P 193 0 R /K 198 0 R /ID (ID.0118) >> endobj -206 0 obj -<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 205 0 R /K <> /ID (ID.0127) >> +198 0 obj +<< /Type /StructElem /C /justify /S /text-block /NS 15 0 R /P 197 0 R /K <> /ID (ID.0119) >> endobj 5 0 obj -<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 214 0 R /ClassMap 215 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> +<< /Type /StructTreeRoot /Namespaces 8 0 R /IDTree 206 0 R /ClassMap 207 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 21 0 R >> endobj -217 0 obj +209 0 obj [305.5 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 549.9 305.5 305.5 855.4 855.4 855.4 519.3 855.4 830.2 781.7 794.3 842.8 721.6 691 864.3 859.8 404.9 567.8 860.8 660.5 1043 859.8 825.8 751.1 825.8 817.3 611 764.7 845 830.2 1135.7 830.2 830.2 672.1 305.5 549.9 305.5 672.1 855.4 305.5 549.9 611 488.8 611 500 336 549.9 611 305.5 336 580.4 305.5 916.4 611 549.9 611 580.4 446.3 433.8 427.7 611 580.4] endobj -218 0 obj +210 0 obj [530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 530.8 294.9 294.9 825.6 825.6 825.6 501.3 825.6 801 754.3 766.7 813.3 696.1 666.6 834.2 829.7 388.1 547.9 830.5 637.1 1006.6 829.7 796.9 724.8 796.9 784.2 589.7 737.9 815.3 801 1095.8 801 801 648.7 294.9 530.8 294.9 648.7 825.6 294.9 530.8 589.7 471.8 589.7 479.9 324.4 530.8 589.7 294.9 324.4 560.3 294.9 884.6 589.7 530.8 589.7 560.3 426.4 418.7 412.8] endobj -219 0 obj +211 0 obj [277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5] endobj -220 0 obj +212 0 obj [555.4 555.4 833.1 833.1 499.9 277.7 499.9 833.1 499.9 833.1 777.6 277.7 388.8 388.8 499.9 777.6 277.7 333.3 277.7 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4 527.7 722 527.7 527.7 444.3 499.9 277.7 499.9 611 166.6 749.8 749.8 722 722 763.7 680.4 680.4 784.5 624.8 624.8 624.8 749.8 749.8 791.5 777.6 735.9 735.9 555.4 555.4 555.4 722 722 749.8 749.8 749.8 611 611 611 860.9 361 555.4 444.3 499.9 499.9 444.3 444.3 674.8 444.3 444.3 499.9 277.7 402.7 336 555.4 555.4 555.4 499.9 391.6 391.6 394.3 394.3 394.3 388.8 388.8 555.4 555.4 527.7 444.3 444.3 444.3 583.2 277.7 472.1 638.7 749.8 749.8 749.8 749.8 749.8 749.8 902.6 722 680.4 680.4 680.4 680.4 361 361 361 361 763.7 749.8 777.6 777.6 777.6 777.6 777.6 1013.6 777.6 749.8 749.8 749.8 749.8 749.8 624.8 1110.8 499.9 499.9 499.9 499.9 499.9 499.9 722 444.3 444.3 444.3 444.3 444.3 277.7 277.7 277.7 333.3 499.9 555.4 499.9 499.9 499.9 499.9 499.9] endobj -221 0 obj +213 0 obj [333] endobj -222 0 obj +214 0 obj [312.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 562.4 312.4 312.4 874.8 874.8 874.8 531.1 874.8 849.3 799.6 812.3 862.1 738.2 707 884 879.4 418.9 580.9 880.6 675.8 1066.9 879.4 844.7 768.3 844.7 838.9 624.8 782.2 864.4 849.3 1161.8 849.3 849.3 687.3 312.4 562.4 312.4 687.3 874.8 312.4 546.7 624.8 499.9 624.8 513.2 343.7 562.4 624.8 312.4 343.7 593.6 312.4 937.3 624.8 562.4 624.8 593.6 459.4 443.6 437.4 624.8] endobj -223 0 obj +215 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4] endobj -224 0 obj +216 0 obj [744 756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2 581.7 552.6 756.2] endobj -225 0 obj +217 0 obj << /Length1 1144 /Length2 1422 @@ -1730,7 +1755,7 @@ endobj >> [BINARY STREAM] endobj -226 0 obj +218 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -1743,10 +1768,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 225 0 R +/FontFile 217 0 R >> endobj -227 0 obj +219 0 obj << /Length1 727 /Length2 16664 @@ -1755,7 +1780,7 @@ endobj >> [BINARY STREAM] endobj -228 0 obj +220 0 obj << /Type /FontDescriptor /FontName /SCBPYL+SFBX1000 @@ -1768,10 +1793,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/H/I/M/S/W/a/b/c/d/e/five/four/g/h/i/k/l/n/o/one/r/s/seven/six/t/three/two/u/w) -/FontFile 227 0 R +/FontFile 219 0 R >> endobj -229 0 obj +221 0 obj << /Length1 727 /Length2 12732 @@ -1780,7 +1805,7 @@ endobj >> [BINARY STREAM] endobj -230 0 obj +222 0 obj << /Type /FontDescriptor /FontName /JELTFA+SFBX1200 @@ -1793,10 +1818,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/D/M/a/c/e/five/i/k/m/n/o/one/period/r/s/t/two/u) -/FontFile 229 0 R +/FontFile 221 0 R >> endobj -231 0 obj +223 0 obj << /Length1 727 /Length2 10542 @@ -1805,7 +1830,7 @@ endobj >> [BINARY STREAM] endobj -232 0 obj +224 0 obj << /Type /FontDescriptor /FontName /KEYWTP+SFBX1440 @@ -1818,10 +1843,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/H/L/b/d/e/g/i/n/o/one/period/r/s/two/u/v) -/FontFile 231 0 R +/FontFile 223 0 R >> endobj -233 0 obj +225 0 obj << /Length1 727 /Length2 10904 @@ -1830,7 +1855,7 @@ endobj >> [BINARY STREAM] endobj -234 0 obj +226 0 obj << /Type /FontDescriptor /FontName /QIXKFB+SFBX2074 @@ -1843,10 +1868,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/e/five/four/h/one/p/r/six/t/three/two) -/FontFile 233 0 R +/FontFile 225 0 R >> endobj -235 0 obj +227 0 obj << /Length1 727 /Length2 14147 @@ -1855,7 +1880,7 @@ endobj >> [BINARY STREAM] endobj -236 0 obj +228 0 obj << /Type /FontDescriptor /FontName /YTDFFC+SFBX2488 @@ -1868,10 +1893,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/B/C/F/H/I/L/M/S/W/a/b/c/d/e/f/g/h/i/k/l/n/o/r/s/t/u/w) -/FontFile 235 0 R +/FontFile 227 0 R >> endobj -237 0 obj +229 0 obj << /Length1 721 /Length2 18838 @@ -1880,7 +1905,7 @@ endobj >> [BINARY STREAM] endobj -238 0 obj +230 0 obj << /Type /FontDescriptor /FontName /VGLJTX+SFRM1000 @@ -1893,10 +1918,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/D/F/H/I/L/M/O/P/S/W/a/b/c/colon/comma/d/e/eight/f/fi/five/four/g/h/i/k/l/m/n/nine/o/odieresis/one/period/r/s/seven/six/t/three/two/u/v/w/z/zero) -/FontFile 237 0 R +/FontFile 229 0 R >> endobj -239 0 obj +231 0 obj << /Length1 727 /Length2 15302 @@ -1905,7 +1930,7 @@ endobj >> [BINARY STREAM] endobj -240 0 obj +232 0 obj << /Type /FontDescriptor /FontName /KTFFPK+SFSL1000 @@ -1918,16 +1943,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/U/W/five/four/one/period/three/two) -/FontFile 239 0 R +/FontFile 231 0 R >> endobj -216 0 obj +208 0 obj << /Type /Encoding /Differences [28/fi 44/comma 46/period 48/zero/one/two/three/four/five/six/seven/eight/nine/colon 65/A/B/C/D/E/F/G/H/I 75/K/L/M/N/O/P 82/R/S/T/U 87/W 97/a/b/c/d/e/f/g/h/i 107/k/l/m/n/o/p 114/r/s/t/u/v/w 122/z 246/odieresis] >> endobj -241 0 obj +233 0 obj << /Length 2030 >> @@ -2071,20 +2096,20 @@ end %%EOF endstream endobj -70 0 obj +69 0 obj << /Type /Font /Subtype /Type1 /BaseFont /SCBPYL+SFBX1000 -/FontDescriptor 228 0 R +/FontDescriptor 220 0 R /FirstChar 49 /LastChar 119 -/Widths 223 0 R -/Encoding 216 0 R -/ToUnicode 241 0 R +/Widths 215 0 R +/Encoding 208 0 R +/ToUnicode 233 0 R >> endobj -242 0 obj +234 0 obj << /Length 2030 >> @@ -2228,20 +2253,20 @@ end %%EOF endstream endobj -71 0 obj +70 0 obj << /Type /Font /Subtype /Type1 /BaseFont /JELTFA+SFBX1200 -/FontDescriptor 230 0 R +/FontDescriptor 222 0 R /FirstChar 46 /LastChar 117 -/Widths 222 0 R -/Encoding 216 0 R -/ToUnicode 242 0 R +/Widths 214 0 R +/Encoding 208 0 R +/ToUnicode 234 0 R >> endobj -243 0 obj +235 0 obj << /Length 2030 >> @@ -2385,20 +2410,20 @@ end %%EOF endstream endobj -134 0 obj +130 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KEYWTP+SFBX1440 -/FontDescriptor 232 0 R +/FontDescriptor 224 0 R /FirstChar 46 /LastChar 118 -/Widths 217 0 R -/Encoding 216 0 R -/ToUnicode 243 0 R +/Widths 209 0 R +/Encoding 208 0 R +/ToUnicode 235 0 R >> endobj -244 0 obj +236 0 obj << /Length 2030 >> @@ -2542,20 +2567,20 @@ end %%EOF endstream endobj -108 0 obj +105 0 obj << /Type /Font /Subtype /Type1 /BaseFont /QIXKFB+SFBX2074 -/FontDescriptor 234 0 R +/FontDescriptor 226 0 R /FirstChar 49 /LastChar 116 -/Widths 218 0 R -/Encoding 216 0 R -/ToUnicode 244 0 R +/Widths 210 0 R +/Encoding 208 0 R +/ToUnicode 236 0 R >> endobj -245 0 obj +237 0 obj << /Length 2030 >> @@ -2699,20 +2724,20 @@ end %%EOF endstream endobj -69 0 obj +68 0 obj << /Type /Font /Subtype /Type1 /BaseFont /YTDFFC+SFBX2488 -/FontDescriptor 236 0 R +/FontDescriptor 228 0 R /FirstChar 66 /LastChar 119 -/Widths 224 0 R -/Encoding 216 0 R -/ToUnicode 245 0 R +/Widths 216 0 R +/Encoding 208 0 R +/ToUnicode 237 0 R >> endobj -246 0 obj +238 0 obj << /Length 2030 >> @@ -2856,20 +2881,20 @@ end %%EOF endstream endobj -73 0 obj +72 0 obj << /Type /Font /Subtype /Type1 /BaseFont /VGLJTX+SFRM1000 -/FontDescriptor 238 0 R +/FontDescriptor 230 0 R /FirstChar 28 /LastChar 246 -/Widths 220 0 R -/Encoding 216 0 R -/ToUnicode 246 0 R +/Widths 212 0 R +/Encoding 208 0 R +/ToUnicode 238 0 R >> endobj -247 0 obj +239 0 obj << /Length 2030 >> @@ -3013,20 +3038,20 @@ end %%EOF endstream endobj -78 0 obj +77 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KTFFPK+SFSL1000 -/FontDescriptor 240 0 R +/FontDescriptor 232 0 R /FirstChar 46 /LastChar 87 -/Widths 219 0 R -/Encoding 216 0 R -/ToUnicode 247 0 R +/Widths 211 0 R +/Encoding 208 0 R +/ToUnicode 239 0 R >> endobj -248 0 obj +240 0 obj << /Length 654 >> @@ -3064,321 +3089,313 @@ end %%EOF endstream endobj -72 0 obj +71 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 226 0 R +/FontDescriptor 218 0 R /FirstChar 32 /LastChar 32 -/Widths 221 0 R -/ToUnicode 248 0 R +/Widths 213 0 R +/ToUnicode 240 0 R >> endobj -74 0 obj +73 0 obj << /Type /Pages /Count 6 -/Parent 249 0 R -/Kids [27 0 R 76 0 R 82 0 R 96 0 R 101 0 R 110 0 R] +/Parent 241 0 R +/Kids [26 0 R 75 0 R 80 0 R 94 0 R 98 0 R 107 0 R] >> endobj -125 0 obj +121 0 obj << /Type /Pages /Count 6 -/Parent 249 0 R -/Kids [115 0 R 129 0 R 138 0 R 152 0 R 157 0 R 168 0 R] +/Parent 241 0 R +/Kids [111 0 R 125 0 R 134 0 R 148 0 R 152 0 R 163 0 R] >> endobj -179 0 obj +173 0 obj << /Type /Pages /Count 5 -/Parent 249 0 R -/Kids [173 0 R 181 0 R 187 0 R 198 0 R 203 0 R] +/Parent 241 0 R +/Kids [167 0 R 175 0 R 180 0 R 191 0 R 195 0 R] >> endobj -249 0 obj +241 0 obj << /Type /Pages /Count 17 -/Kids [74 0 R 125 0 R 179 0 R] +/Kids [73 0 R 121 0 R 173 0 R] >> endobj -250 0 obj +242 0 obj << /Type /Catalog -/Pages 249 0 R -/MarkInfo 210 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 207 0 R +/Pages 241 0 R +/MarkInfo 202 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 199 0 R >> endobj -251 0 obj +243 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 252 +0 244 0000000010 65535 f -0000041782 00000 n -0000041829 00000 n -0000041851 00000 n -0000041873 00000 n -0000065594 00000 n -0000041932 00000 n -0000045206 00000 n -0000047564 00000 n -0000046084 00000 n +0000042490 00000 n +0000042537 00000 n +0000042559 00000 n +0000042581 00000 n +0000065838 00000 n +0000042640 00000 n +0000045848 00000 n +0000048422 00000 n +0000046790 00000 n 0000000012 00000 f -0000046152 00000 n +0000046858 00000 n 0000000014 00000 f -0000046222 00000 n +0000046928 00000 n 0000000020 00000 f -0000047102 00000 n -0000046303 00000 n -0000047375 00000 n -0000047204 00000 n -0000047477 00000 n +0000047960 00000 n +0000047009 00000 n +0000048233 00000 n +0000048062 00000 n +0000048335 00000 n 0000000000 00000 f -0000047625 00000 n -0000047763 00000 n -0000047881 00000 n -0000047971 00000 n -0000048076 00000 n -0000048217 00000 n -0000009729 00000 n -0000048355 00000 n -0000048501 00000 n -0000048670 00000 n -0000048871 00000 n -0000048992 00000 n -0000049134 00000 n -0000049295 00000 n -0000049412 00000 n -0000049578 00000 n -0000049780 00000 n -0000049901 00000 n -0000050011 00000 n -0000050185 00000 n -0000050389 00000 n -0000050511 00000 n -0000050661 00000 n -0000050865 00000 n -0000050987 00000 n -0000051090 00000 n -0000051276 00000 n -0000051480 00000 n -0000051602 00000 n -0000051744 00000 n -0000051948 00000 n -0000052070 00000 n -0000052244 00000 n -0000052448 00000 n -0000052570 00000 n -0000052736 00000 n -0000052940 00000 n -0000053062 00000 n -0000053204 00000 n -0000053367 00000 n -0000053470 00000 n -0000053640 00000 n -0000053844 00000 n -0000053966 00000 n -0000054128 00000 n -0000054332 00000 n -0000009871 00000 n +0000048483 00000 n +0000048621 00000 n +0000048739 00000 n +0000048829 00000 n +0000048934 00000 n +0000009732 00000 n +0000049101 00000 n +0000049247 00000 n +0000049416 00000 n +0000049617 00000 n +0000049738 00000 n +0000049880 00000 n +0000050041 00000 n +0000050158 00000 n +0000050324 00000 n +0000050526 00000 n +0000050647 00000 n +0000050757 00000 n +0000050931 00000 n +0000051135 00000 n +0000051257 00000 n +0000051407 00000 n +0000051611 00000 n +0000051733 00000 n +0000051836 00000 n +0000052022 00000 n +0000052226 00000 n +0000052348 00000 n +0000052490 00000 n +0000052694 00000 n +0000052816 00000 n +0000052990 00000 n +0000053194 00000 n +0000053316 00000 n +0000053482 00000 n +0000053686 00000 n +0000053808 00000 n +0000053950 00000 n +0000054113 00000 n +0000054216 00000 n +0000054386 00000 n +0000054590 00000 n +0000054712 00000 n +0000054874 00000 n +0000055078 00000 n +0000009874 00000 n 0000000015 00000 n -0000190659 00000 n -0000181569 00000 n -0000183841 00000 n -0000196098 00000 n -0000192931 00000 n -0000196265 00000 n -0000010356 00000 n -0000010214 00000 n -0000009983 00000 n -0000195203 00000 n -0000054454 00000 n -0000054559 00000 n -0000054728 00000 n -0000016269 00000 n -0000054866 00000 n -0000054998 00000 n -0000055204 00000 n -0000055405 00000 n -0000055526 00000 n -0000055740 00000 n -0000055941 00000 n -0000056062 00000 n -0000056244 00000 n -0000056447 00000 n -0000016411 00000 n -0000010444 00000 n -0000016967 00000 n -0000016825 00000 n -0000016499 00000 n -0000056569 00000 n -0000056675 00000 n -0000056843 00000 n -0000017707 00000 n -0000056983 00000 n -0000057123 00000 n -0000057230 00000 n -0000057373 00000 n -0000017852 00000 n -0000017055 00000 n -0000188386 00000 n -0000018445 00000 n -0000018300 00000 n -0000017954 00000 n -0000057489 00000 n -0000057614 00000 n -0000057780 00000 n -0000019769 00000 n -0000057921 00000 n -0000058062 00000 n -0000058170 00000 n -0000058313 00000 n -0000058412 00000 n -0000058524 00000 n -0000058648 00000 n -0000019915 00000 n -0000018534 00000 n -0000196377 00000 n -0000058791 00000 n -0000058900 00000 n -0000059100 00000 n -0000020723 00000 n -0000059235 00000 n -0000059343 00000 n -0000020869 00000 n -0000020017 00000 n -0000186113 00000 n -0000059486 00000 n -0000059603 00000 n -0000059779 00000 n -0000022240 00000 n -0000059914 00000 n -0000060023 00000 n -0000060238 00000 n -0000060373 00000 n -0000060481 00000 n -0000060624 00000 n -0000060733 00000 n -0000060904 00000 n -0000061039 00000 n -0000061147 00000 n -0000022386 00000 n -0000020971 00000 n -0000023032 00000 n -0000022886 00000 n -0000022500 00000 n +0000190903 00000 n +0000181813 00000 n +0000184085 00000 n +0000196342 00000 n +0000193175 00000 n +0000196509 00000 n +0000010359 00000 n +0000010217 00000 n +0000009986 00000 n +0000195447 00000 n +0000055200 00000 n +0000055305 00000 n +0000016275 00000 n +0000055500 00000 n +0000055632 00000 n +0000055838 00000 n +0000056039 00000 n +0000056160 00000 n +0000056374 00000 n +0000056575 00000 n +0000056696 00000 n +0000056878 00000 n +0000057081 00000 n +0000016417 00000 n +0000010447 00000 n +0000016973 00000 n +0000016831 00000 n +0000016505 00000 n +0000057203 00000 n +0000057309 00000 n +0000017777 00000 n +0000057534 00000 n +0000057666 00000 n +0000057773 00000 n +0000057915 00000 n +0000017921 00000 n +0000017061 00000 n +0000188630 00000 n +0000018514 00000 n +0000018369 00000 n +0000018023 00000 n +0000058031 00000 n +0000058156 00000 n +0000019902 00000 n +0000058382 00000 n +0000058517 00000 n +0000058625 00000 n +0000058768 00000 n +0000058867 00000 n +0000058979 00000 n +0000059103 00000 n +0000020048 00000 n +0000018603 00000 n +0000196620 00000 n +0000059246 00000 n +0000059355 00000 n +0000059589 00000 n +0000020934 00000 n +0000059724 00000 n +0000059832 00000 n +0000021080 00000 n +0000020150 00000 n +0000186357 00000 n +0000059975 00000 n +0000060092 00000 n +0000060302 00000 n +0000022692 00000 n +0000060437 00000 n +0000060546 00000 n +0000060795 00000 n +0000060930 00000 n +0000061038 00000 n +0000061181 00000 n 0000061290 00000 n -0000061399 00000 n -0000061573 00000 n -0000024318 00000 n -0000061714 00000 n -0000061855 00000 n -0000061963 00000 n -0000062106 00000 n -0000062205 00000 n -0000062317 00000 n -0000062441 00000 n -0000024465 00000 n -0000023121 00000 n -0000025106 00000 n -0000024959 00000 n -0000024567 00000 n -0000062584 00000 n -0000062693 00000 n -0000062859 00000 n -0000025781 00000 n -0000063000 00000 n -0000063141 00000 n -0000063249 00000 n -0000025928 00000 n -0000025195 00000 n -0000196494 00000 n -0000026563 00000 n -0000026416 00000 n -0000026030 00000 n -0000063392 00000 n -0000063500 00000 n -0000063609 00000 n -0000063779 00000 n -0000027907 00000 n -0000063920 00000 n -0000064061 00000 n -0000064169 00000 n -0000064312 00000 n -0000064411 00000 n -0000064523 00000 n -0000064647 00000 n -0000028054 00000 n -0000026652 00000 n -0000028690 00000 n -0000028543 00000 n -0000028156 00000 n -0000064790 00000 n -0000064899 00000 n -0000065061 00000 n -0000041533 00000 n -0000065202 00000 n -0000065343 00000 n -0000065451 00000 n -0000028779 00000 n -0000041680 00000 n -0000040949 00000 n -0000041895 00000 n -0000042757 00000 n -0000043669 00000 n -0000044621 00000 n -0000045151 00000 n -0000045878 00000 n -0000179216 00000 n -0000065733 00000 n -0000066166 00000 n -0000066587 00000 n -0000066853 00000 n -0000068145 00000 n -0000068168 00000 n -0000068617 00000 n -0000069058 00000 n -0000069392 00000 n -0000072057 00000 n -0000072277 00000 n -0000089767 00000 n -0000090068 00000 n -0000103626 00000 n -0000103897 00000 n -0000115265 00000 n -0000115527 00000 n -0000127257 00000 n -0000127520 00000 n -0000142493 00000 n -0000142768 00000 n -0000162426 00000 n -0000162795 00000 n -0000178923 00000 n -0000179479 00000 n -0000181751 00000 n -0000184023 00000 n -0000186296 00000 n -0000188569 00000 n -0000190841 00000 n -0000193113 00000 n -0000195384 00000 n -0000196603 00000 n -0000196680 00000 n -0000196799 00000 n +0000061495 00000 n +0000061630 00000 n +0000061738 00000 n +0000022838 00000 n +0000021182 00000 n +0000023484 00000 n +0000023338 00000 n +0000022952 00000 n +0000061882 00000 n +0000061991 00000 n +0000024834 00000 n +0000062225 00000 n +0000062360 00000 n +0000062468 00000 n +0000062611 00000 n +0000062710 00000 n +0000062822 00000 n +0000062946 00000 n +0000024981 00000 n +0000023573 00000 n +0000025622 00000 n +0000025475 00000 n +0000025083 00000 n +0000063089 00000 n +0000063198 00000 n +0000026361 00000 n +0000063424 00000 n +0000063559 00000 n +0000063667 00000 n +0000026508 00000 n +0000025711 00000 n +0000196737 00000 n +0000027143 00000 n +0000026996 00000 n +0000026610 00000 n +0000063810 00000 n +0000063918 00000 n +0000064027 00000 n +0000028551 00000 n +0000064257 00000 n +0000064392 00000 n +0000064500 00000 n +0000064643 00000 n +0000064742 00000 n +0000064854 00000 n +0000064978 00000 n +0000028698 00000 n +0000027232 00000 n +0000029334 00000 n +0000029187 00000 n +0000028800 00000 n +0000065121 00000 n +0000065230 00000 n +0000042241 00000 n +0000065452 00000 n +0000065587 00000 n +0000065695 00000 n +0000029423 00000 n +0000042388 00000 n +0000041593 00000 n +0000042603 00000 n +0000043542 00000 n +0000044454 00000 n +0000045407 00000 n +0000045793 00000 n +0000046627 00000 n +0000179460 00000 n +0000065977 00000 n +0000066410 00000 n +0000066831 00000 n +0000067097 00000 n +0000068389 00000 n +0000068412 00000 n +0000068861 00000 n +0000069302 00000 n +0000069636 00000 n +0000072301 00000 n +0000072521 00000 n +0000090011 00000 n +0000090312 00000 n +0000103870 00000 n +0000104141 00000 n +0000115509 00000 n +0000115771 00000 n +0000127501 00000 n +0000127764 00000 n +0000142737 00000 n +0000143012 00000 n +0000162670 00000 n +0000163039 00000 n +0000179167 00000 n +0000179723 00000 n +0000181995 00000 n +0000184267 00000 n +0000186540 00000 n +0000188813 00000 n +0000191085 00000 n +0000193357 00000 n +0000195628 00000 n +0000196846 00000 n +0000196923 00000 n +0000197042 00000 n trailer -<< /Size 252 -/Root 250 0 R -/Info 251 0 R +<< /Size 244 +/Root 242 0 R +/Info 243 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -196932 +197175 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.luatex.tpf b/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.luatex.tpf index 3fccfe133..8ccc65d6f 100644 --- a/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.luatex.tpf +++ b/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.luatex.tpf @@ -1,12 +1,12 @@ %PDF-1.7 %ÌÕÁÔÅØÐÄÆ -23 0 obj -<< /Length 630 >> +22 0 obj +<< /Length 633 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(Con)31(ten)31(ts)]TJ @@ -50,13 +50,13 @@ EMC EMC endstream endobj -22 0 obj -<< /Type /Page /Contents 23 0 R /Resources 21 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 27 0 R >> -endobj 21 0 obj -<< /ExtGState 1 0 R /Font << /F19 24 0 R /F17 25 0 R /F16 26 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 22 0 R /Resources 20 0 R /MediaBox [ 0 0 612 792 ] /StructParents 0/Tabs /S /Parent 26 0 R >> endobj -30 0 obj +20 0 obj +<< /ExtGState 1 0 R /Font << /F19 23 0 R /F17 24 0 R /F16 25 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +29 0 obj << /Length 182 >> stream /opacity1 gs @@ -74,19 +74,19 @@ EMC EMC endstream endobj -29 0 obj -<< /Type /Page /Contents 30 0 R /Resources 28 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 27 0 R >> -endobj 28 0 obj -<< /ExtGState 1 0 R /Font << /F16 26 0 R /F20 31 0 R >> /ProcSet [ /PDF /Text ] >> +<< /Type /Page /Contents 29 0 R /Resources 27 0 R /MediaBox [ 0 0 612 792 ] /StructParents 1/Tabs /S /Parent 26 0 R >> endobj -40 0 obj -<< /Length 408 >> +27 0 obj +<< /ExtGState 1 0 R /Font << /F16 25 0 R /F20 30 0 R >> /ProcSet [ /PDF /Text ] >> +endobj +38 0 obj +<< /Length 411 >> stream /opacity1 gs /Artifact BMC EMC -/Span<> BDC +/chapter<> BDC BT /F19 24.78705 Tf 1 0 0 1 106.869 578.463 Tm [(bla)]TJ @@ -114,11 +114,11 @@ EMC EMC endstream endobj -39 0 obj -<< /Type /Page /Contents 40 0 R /Resources 38 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 27 0 R >> +37 0 obj +<< /Type /Page /Contents 38 0 R /Resources 36 0 R /MediaBox [ 0 0 612 792 ] /StructParents 2/Tabs /S /Parent 26 0 R >> endobj -38 0 obj -<< /ExtGState 1 0 R /Font << /F19 24 0 R /F16 26 0 R /F15 41 0 R >> /ProcSet [ /PDF /Text ] >> +36 0 obj +<< /ExtGState 1 0 R /Font << /F19 23 0 R /F16 25 0 R /F15 39 0 R >> /ProcSet [ /PDF /Text ] >> endobj 1 0 obj << /opacity1 <> >> @@ -132,34 +132,33 @@ endobj 4 0 obj << >> endobj -42 0 obj +40 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 15 0 R 18 0 R 18 0 R 20 0 R 20 0 R] +<< /Nums [0 [ 14 0 R 17 0 R 17 0 R 19 0 R 19 0 R] 1 [] -2 [ 34 0 R 36 0 R] +2 [ 32 0 R 34 0 R] ] >> endobj -43 0 obj -<< /Limits [(ID.002) (ID.018)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 16 0 R (ID.010) 17 0 R (ID.011) 18 0 R (ID.012) 19 0 R (ID.013) 20 0 R (ID.014) 32 0 R (ID.015) 33 0 R (ID.016) 34 0 R (ID.017) 35 0 R (ID.018) 36 0 R ] >> +41 0 obj +<< /Limits [(ID.002) (ID.016)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 15 0 R (ID.009) 16 0 R (ID.010) 17 0 R (ID.011) 18 0 R (ID.012) 19 0 R (ID.013) 31 0 R (ID.014) 32 0 R (ID.015) 33 0 R (ID.016) 34 0 R ] >> endobj -44 0 obj -<< /Kids [43 0 R] >> +42 0 obj +<< /Kids [41 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -45 0 obj -<< /raggedright <> -/justify <> +43 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 32 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [13 0 R 31 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -171,48 +170,42 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [14 0 R 16 0 R] /ID (ID.006) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K [14 0 R 15 0 R] /ID (ID.006) >> endobj 14 0 obj -<< /Type /StructElem /T /S /chapter /P 13 0 R /K 15 0 R /ID (ID.007) >> +<< /Type /StructElem /T /S /chapter /P 13 0 R /K <> /ID (ID.007) >> endobj 15 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 14 0 R /K <> /ID (ID.008) >> +<< /Type /StructElem /T /S /TOC /P 13 0 R /K [16 0 R 18 0 R] /ID (ID.008) >> endobj 16 0 obj -<< /Type /StructElem /T /S /TOC /P 13 0 R /K [17 0 R 19 0 R] /ID (ID.009) >> +<< /Type /StructElem /T /S /TOCI /P 15 0 R /Ref [ 32 0 R ] /K 17 0 R /ID (ID.009) >> endobj 17 0 obj -<< /Type /StructElem /T /S /TOCI /P 16 0 R /Ref [ 33 0 R ] /K 18 0 R /ID (ID.010) >> +<< /Type /StructElem /S /Reference /P 16 0 R /K [<> <> ] /ID (ID.010) >> endobj 18 0 obj -<< /Type /StructElem /S /Reference /P 17 0 R /K [<> <> ] /ID (ID.011) >> +<< /Type /StructElem /T /S /TOCI /P 15 0 R /Ref [ 34 0 R ] /K 19 0 R /ID (ID.011) >> endobj 19 0 obj -<< /Type /StructElem /T /S /TOCI /P 16 0 R /Ref [ 36 0 R ] /K 20 0 R /ID (ID.012) >> +<< /Type /StructElem /S /Reference /P 18 0 R /K [<> <> ] /ID (ID.012) >> endobj -20 0 obj -<< /Type /StructElem /S /Reference /P 19 0 R /K [<> <> ] /ID (ID.013) >> +31 0 obj +<< /Type /StructElem /S /Sect /P 9 0 R /K [32 0 R 33 0 R] /ID (ID.013) >> endobj 32 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [33 0 R 35 0 R] /ID (ID.014) >> +<< /Type /StructElem /T /S /chapter /P 31 0 R /K <> /ID (ID.014) >> endobj 33 0 obj -<< /Type /StructElem /T /S /chapter /P 32 0 R /K 34 0 R /ID (ID.015) >> +<< /Type /StructElem /S /semantic-para /P 31 0 R /K 34 0 R /ID (ID.015) >> endobj 34 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 33 0 R /K <> /ID (ID.016) >> -endobj -35 0 obj -<< /Type /StructElem /S /semantic-para /P 32 0 R /K 36 0 R /ID (ID.017) >> -endobj -36 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 35 0 R /K <> /ID (ID.018) >> +<< /Type /StructElem /C /justify /S /text-block /P 33 0 R /K <> /ID (ID.016) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 44 0 R /ClassMap 45 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 42 0 R /ClassMap 43 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -37 0 obj +35 0 obj << /Type /Metadata /Subtype /XML /Length 12087 >> stream @@ -452,21 +445,21 @@ stream endstream endobj -46 0 obj +44 0 obj [ 103 [ 333 ] ] endobj -48 0 obj +46 0 obj << /Length 13 >> [BINARY STREAM] endobj -49 0 obj +47 0 obj << /Subtype /CIDFontType0C /Length 506 >> [BINARY STREAM] endobj -47 0 obj -<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 49 0 R /CIDSet 48 0 R >> +45 0 obj +<< /Type /FontDescriptor /FontName /XVZVYO+LMRoman10-Regular /Flags 4 /FontBBox [ -430 -290 1417 1127 ] /Ascent 1127 /CapHeight 683 /Descent -290 /ItalicAngle 0 /StemV 93 /XHeight 431 /FontFile3 47 0 R /CIDSet 46 0 R >> endobj -50 0 obj +48 0 obj << /Length 666 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -500,53 +493,53 @@ end %%EOF endstream endobj -41 0 obj -<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 51 0 R ] /ToUnicode 50 0 R >> +39 0 obj +<< /Type /Font /Subtype /Type0 /Encoding /Identity-H /BaseFont /XVZVYO+LMRoman10-Regular /DescendantFonts [ 49 0 R ] /ToUnicode 48 0 R >> endobj -51 0 obj -<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 47 0 R /W 46 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> +49 0 obj +<< /Type /Font /Subtype /CIDFontType0 /BaseFont /XVZVYO+LMRoman10-Regular /FontDescriptor 45 0 R /W 44 0 R /CIDSystemInfo << /Registry (Adobe) /Ordering (Identity) /Supplement 0 >> >> endobj -52 0 obj +50 0 obj [722.2 0 680.6 0 0 0 0 0 0 0 0 750 777.8 0 0 0 555.6 722.2 ] endobj -53 0 obj +51 0 obj [500 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 0 0 0 0 0 0 0 0 0 0 0 0 555.6 0 555.6 444.4 0 0 0 0 0 0 0 833.3 555.6 0 0 0 391.7 0 0 555.6 ] endobj -54 0 obj +52 0 obj [575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 884.7 0 0 0 0 0 0 0 0 0 0 0 0 638.9 0 638.9 527.1 0 0 0 0 0 0 0 958.3 638.9 0 0 0 473.6 0 0 638.9 0 0 606.9 ] endobj -55 0 obj +53 0 obj [812.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 546.9 625 0 0 513.3 0 0 0 0 0 0 312.5 0 625 562.5 0 0 0 443.8 437.5 ] endobj -57 0 obj +55 0 obj << /Length1 1528 /Length2 9691 /Length3 0 /Length 11219 >> [BINARY STREAM] endobj -56 0 obj -<< /Type /FontDescriptor /FontName /EXBBCM+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /U /b /d /e /m /n /r /three /u /x) /FontFile 57 0 R >> +54 0 obj +<< /Type /FontDescriptor /FontName /EXBBCM+CMBX10 /Flags 4 /FontBBox [ -56 -250 1164 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 114 /XHeight 444 /CharSet( /U /b /d /e /m /n /r /three /u /x) /FontFile 55 0 R >> endobj -59 0 obj +57 0 obj << /Length1 1509 /Length2 7137 /Length3 0 /Length 8646 >> [BINARY STREAM] endobj -58 0 obj -<< /Type /FontDescriptor /FontName /KYFHWZ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /C /a /b /e /l /n /o /s /t) /FontFile 59 0 R >> +56 0 obj +<< /Type /FontDescriptor /FontName /KYFHWZ+CMBX12 /Flags 4 /FontBBox [ -53 -251 1139 750 ] /Ascent 694 /CapHeight 686 /Descent -194 /ItalicAngle 0 /StemV 109 /XHeight 444 /CharSet( /C /a /b /e /l /n /o /s /t) /FontFile 57 0 R >> endobj -61 0 obj +59 0 obj << /Length1 1539 /Length2 10049 /Length3 0 /Length 11588 >> [BINARY STREAM] endobj -60 0 obj -<< /Type /FontDescriptor /FontName /UQDGWS+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /U /b /d /e /m /n /one /r /three /two /u) /FontFile 61 0 R >> +58 0 obj +<< /Type /FontDescriptor /FontName /UQDGWS+CMR10 /Flags 4 /FontBBox [ -40 -250 1009 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle 0 /StemV 69 /XHeight 431 /CharSet( /U /b /d /e /m /n /one /r /three /two /u) /FontFile 59 0 R >> endobj -63 0 obj +61 0 obj << /Length1 1467 /Length2 7015 /Length3 0 /Length 8482 >> [BINARY STREAM] endobj -62 0 obj -<< /Type /FontDescriptor /FontName /ZLYFOD+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /C /E /N /O /S /T) /FontFile 63 0 R >> +60 0 obj +<< /Type /FontDescriptor /FontName /ZLYFOD+CMSL10 /Flags 4 /FontBBox [ -62 -250 1123 750 ] /Ascent 694 /CapHeight 683 /Descent -194 /ItalicAngle -9 /StemV 79 /XHeight 431 /CharSet( /C /E /N /O /S /T) /FontFile 61 0 R >> endobj -64 0 obj +62 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -666,10 +659,10 @@ end %%EOF endstream endobj -25 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /EXBBCM+CMBX10 /FontDescriptor 56 0 R /FirstChar 51 /LastChar 120 /Widths 54 0 R /ToUnicode 64 0 R >> +24 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /EXBBCM+CMBX10 /FontDescriptor 54 0 R /FirstChar 51 /LastChar 120 /Widths 52 0 R /ToUnicode 62 0 R >> endobj -65 0 obj +63 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -789,10 +782,10 @@ end %%EOF endstream endobj -24 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /KYFHWZ+CMBX12 /FontDescriptor 58 0 R /FirstChar 67 /LastChar 116 /Widths 55 0 R /ToUnicode 65 0 R >> +23 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /KYFHWZ+CMBX12 /FontDescriptor 56 0 R /FirstChar 67 /LastChar 116 /Widths 53 0 R /ToUnicode 63 0 R >> endobj -66 0 obj +64 0 obj << /Length 1724 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -912,10 +905,10 @@ end %%EOF endstream endobj -26 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /UQDGWS+CMR10 /FontDescriptor 60 0 R /FirstChar 49 /LastChar 117 /Widths 53 0 R /ToUnicode 66 0 R >> +25 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /UQDGWS+CMR10 /FontDescriptor 58 0 R /FirstChar 49 /LastChar 117 /Widths 51 0 R /ToUnicode 64 0 R >> endobj -67 0 obj +65 0 obj << /Length 1729 >> stream %!PS-Adobe-3.0 Resource-CMap @@ -1035,92 +1028,90 @@ end %%EOF endstream endobj -31 0 obj -<< /Type /Font /Subtype /Type1 /BaseFont /ZLYFOD+CMSL10 /FontDescriptor 62 0 R /FirstChar 67 /LastChar 84 /Widths 52 0 R /ToUnicode 67 0 R >> +30 0 obj +<< /Type /Font /Subtype /Type1 /BaseFont /ZLYFOD+CMSL10 /FontDescriptor 60 0 R /FirstChar 67 /LastChar 84 /Widths 50 0 R /ToUnicode 65 0 R >> endobj -27 0 obj -<< /Type /Pages /Count 3 /Kids [ 22 0 R 29 0 R 39 0 R ] >> +26 0 obj +<< /Type /Pages /Count 3 /Kids [ 21 0 R 28 0 R 37 0 R ] >> endobj -68 0 obj -<< /Type /Catalog /Pages 27 0 R /MarkInfo 42 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 37 0 R >> +66 0 obj +<< /Type /Catalog /Pages 26 0 R /MarkInfo 40 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 35 0 R >> endobj -69 0 obj +67 0 obj << /Producer (LuaTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 70 +0 68 0000000008 65535 f -0000002146 00000 n -0000002193 00000 n -0000002215 00000 n -0000002237 00000 n -0000005543 00000 n -0000002295 00000 n -0000002758 00000 n +0000002152 00000 n +0000002199 00000 n +0000002221 00000 n +0000002243 00000 n +0000005383 00000 n +0000002301 00000 n +0000002732 00000 n 0000000000 00000 f -0000003635 00000 n -0000003729 00000 n -0000003805 00000 n -0000003881 00000 n -0000003957 00000 n -0000004048 00000 n -0000004176 00000 n -0000004303 00000 n -0000004416 00000 n -0000004541 00000 n -0000004694 00000 n -0000004843 00000 n -0000000845 00000 n -0000000710 00000 n +0000003673 00000 n +0000003767 00000 n +0000003843 00000 n +0000003919 00000 n +0000003995 00000 n +0000004086 00000 n +0000004242 00000 n +0000004355 00000 n +0000004480 00000 n +0000004633 00000 n +0000004782 00000 n +0000000848 00000 n +0000000713 00000 n 0000000020 00000 n -0000065526 00000 n -0000063578 00000 n -0000067469 00000 n -0000069574 00000 n -0000001333 00000 n -0000001198 00000 n -0000000956 00000 n -0000069416 00000 n -0000004996 00000 n -0000005087 00000 n -0000005195 00000 n -0000005322 00000 n -0000005414 00000 n -0000005661 00000 n -0000002035 00000 n -0000001900 00000 n -0000001432 00000 n -0000019495 00000 n -0000002259 00000 n -0000002391 00000 n -0000002721 00000 n -0000003430 00000 n -0000017838 00000 n -0000018533 00000 n -0000017870 00000 n -0000017943 00000 n -0000018769 00000 n -0000019649 00000 n -0000019849 00000 n -0000019926 00000 n -0000020119 00000 n -0000020316 00000 n -0000031785 00000 n -0000020467 00000 n -0000040782 00000 n -0000032037 00000 n -0000052715 00000 n -0000041027 00000 n -0000061553 00000 n -0000052972 00000 n -0000061789 00000 n -0000063737 00000 n -0000065685 00000 n -0000067627 00000 n -0000069650 00000 n -0000069765 00000 n +0000065366 00000 n +0000063418 00000 n +0000067309 00000 n +0000069414 00000 n +0000001336 00000 n +0000001201 00000 n +0000000959 00000 n +0000069256 00000 n +0000004935 00000 n +0000005026 00000 n +0000005162 00000 n +0000005254 00000 n +0000005501 00000 n +0000002041 00000 n +0000001906 00000 n +0000001435 00000 n +0000019335 00000 n +0000002265 00000 n +0000002397 00000 n +0000002695 00000 n +0000003511 00000 n +0000017678 00000 n +0000018373 00000 n +0000017710 00000 n +0000017783 00000 n +0000018609 00000 n +0000019489 00000 n +0000019689 00000 n +0000019766 00000 n +0000019959 00000 n +0000020156 00000 n +0000031625 00000 n +0000020307 00000 n +0000040622 00000 n +0000031877 00000 n +0000052555 00000 n +0000040867 00000 n +0000061393 00000 n +0000052812 00000 n +0000061629 00000 n +0000063577 00000 n +0000065525 00000 n +0000067467 00000 n +0000069490 00000 n +0000069605 00000 n trailer -<< /Size 70 /Root 68 0 R /Info 69 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> +<< /Size 68 /Root 66 0 R /Info 67 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -69897 +69737 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.tpf b/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.tpf index fb49cc19d..18ae24c0a 100644 --- a/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.tpf +++ b/required/latex-lab/testfiles-toc/toc-manual-addcontentsline.tpf @@ -1,14 +1,14 @@ %PDF-1.7 %ÐÔÅØ -22 0 obj +21 0 obj << -/Length 532 +/Length 535 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(Con)29(ten)29(ts)]TJ ET @@ -40,24 +40,24 @@ ET EMC endstream endobj -15 0 obj +14 0 obj << /Type /Page -/Contents 22 0 R -/Resources 21 0 R +/Contents 21 0 R +/Resources 20 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 0 -/Parent 26 0 R +/Parent 25 0 R >> endobj -21 0 obj +20 0 obj << /ExtGState 1 0 R -/Font << /F48 23 0 R /F46 24 0 R /F45 25 0 R >> +/Font << /F48 22 0 R /F46 23 0 R /F45 24 0 R >> /ProcSet [ /PDF /Text ] >> endobj -29 0 obj +28 0 obj << /Length 172 >> @@ -72,24 +72,24 @@ EMC EMC endstream endobj -28 0 obj +27 0 obj << /Type /Page -/Contents 29 0 R -/Resources 27 0 R +/Contents 28 0 R +/Resources 26 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 1 -/Parent 26 0 R +/Parent 25 0 R >> endobj -27 0 obj +26 0 obj << /ExtGState 1 0 R -/Font << /F45 25 0 R /F49 30 0 R /F50 31 0 R >> +/Font << /F45 24 0 R /F49 29 0 R /F50 30 0 R >> /ProcSet [ /PDF /Text ] >> endobj -38 0 obj +36 0 obj << /Type /Metadata /Subtype /XML /Length 12085 @@ -332,15 +332,15 @@ stream endstream endobj -40 0 obj +38 0 obj << -/Length 277 +/Length 280 >> stream /opacity1 gs /Artifact BMC EMC -/Span <> BDC +/chapter <> BDC BT /F48 24.7871 Tf 106.869 578.463 Td [(bla)]TJ ET @@ -357,20 +357,20 @@ ET EMC endstream endobj -35 0 obj +33 0 obj << /Type /Page -/Contents 40 0 R -/Resources 39 0 R +/Contents 38 0 R +/Resources 37 0 R /MediaBox [0 0 612 792] /Tabs /S /StructParents 2 -/Parent 26 0 R +/Parent 25 0 R >> endobj -39 0 obj +37 0 obj << /ExtGState 1 0 R -/Font << /F48 23 0 R /F45 25 0 R >> +/Font << /F48 22 0 R /F45 24 0 R >> /ProcSet [ /PDF /Text ] >> endobj @@ -386,34 +386,33 @@ endobj 4 0 obj << >> endobj -41 0 obj +39 0 obj << /Marked true >> endobj 6 0 obj -<< /Nums [0 [ 14 0 R 18 0 R 18 0 R 20 0 R 20 0 R ] +<< /Nums [0 [ 13 0 R 17 0 R 17 0 R 19 0 R 19 0 R ] 1 [ ] -2 [ 34 0 R 37 0 R ] +2 [ 32 0 R 35 0 R ] ] >> endobj -42 0 obj -<< /Limits [(ID.002) (ID.017)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 14 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 18 0 R (ID.011) 19 0 R (ID.012) 20 0 R (ID.013) 32 0 R (ID.014) 33 0 R (ID.015) 34 0 R (ID.016) 36 0 R (ID.017) 37 0 R ] >> +40 0 obj +<< /Limits [(ID.002) (ID.015)]/Names [(ID.002) 9 0 R (ID.003) 10 0 R (ID.004) 11 0 R (ID.005) 12 0 R (ID.006) 13 0 R (ID.007) 15 0 R (ID.008) 16 0 R (ID.009) 17 0 R (ID.010) 18 0 R (ID.011) 19 0 R (ID.012) 31 0 R (ID.013) 32 0 R (ID.014) 34 0 R (ID.015) 35 0 R ] >> endobj -43 0 obj -<< /Kids [42 0 R] >> +41 0 obj +<< /Kids [40 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H2 /subsection /H3 /subsubsection /H4 /paragraph /H5 /subparagraph /H6 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect /chapter /H1 >> endobj -44 0 obj -<< /raggedright <> -/justify <> +42 0 obj +<< /justify <> /TH-both <> /TH-row <> /TH-col <> >> endobj 9 0 obj -<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 32 0 R] /ID (ID.002) >> +<< /Type /StructElem /S /Document /P 5 0 R /K [12 0 R 31 0 R] /ID (ID.002) >> endobj 10 0 obj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.003) >> @@ -422,63 +421,57 @@ endobj << /Type /StructElem /S /Artifact /P 9 0 R /ID (ID.004) >> endobj 12 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 16 0 R] /ID (ID.005) >> +<< /Type /StructElem /S /Sect /P 9 0 R /K [13 0 R 15 0 R] /ID (ID.005) >> endobj 13 0 obj -<< /Type /StructElem /T /S /chapter /P 12 0 R /K 14 0 R /ID (ID.006) >> +<< /Type /StructElem /T /S /chapter /P 12 0 R /K <> /ID (ID.006) >> endobj -14 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 13 0 R /K <> /ID (ID.007) >> +15 0 obj +<< /Type /StructElem /T /S /TOC /P 12 0 R /K [16 0 R 18 0 R] /ID (ID.007) >> endobj 16 0 obj -<< /Type /StructElem /T /S /TOC /P 12 0 R /K [17 0 R 19 0 R] /ID (ID.008) >> +<< /Type /StructElem /T /S /TOCI /P 15 0 R /Ref [ 32 0 R ] /K 17 0 R /ID (ID.008) >> endobj 17 0 obj -<< /Type /StructElem /T /S /TOCI /P 16 0 R /Ref [ 33 0 R ] /K 18 0 R /ID (ID.009) >> +<< /Type /StructElem /S /Reference /P 16 0 R /K [<> <>] /ID (ID.009) >> endobj 18 0 obj -<< /Type /StructElem /S /Reference /P 17 0 R /K [<> <>] /ID (ID.010) >> +<< /Type /StructElem /T /S /TOCI /P 15 0 R /Ref [ 35 0 R ] /K 19 0 R /ID (ID.010) >> endobj 19 0 obj -<< /Type /StructElem /T /S /TOCI /P 16 0 R /Ref [ 37 0 R ] /K 20 0 R /ID (ID.011) >> +<< /Type /StructElem /S /Reference /P 18 0 R /K [<> <>] /ID (ID.011) >> endobj -20 0 obj -<< /Type /StructElem /S /Reference /P 19 0 R /K [<> <>] /ID (ID.012) >> +31 0 obj +<< /Type /StructElem /S /Sect /P 9 0 R /K [32 0 R 34 0 R] /ID (ID.012) >> endobj 32 0 obj -<< /Type /StructElem /S /Sect /P 9 0 R /K [33 0 R 36 0 R] /ID (ID.013) >> -endobj -33 0 obj -<< /Type /StructElem /T /S /chapter /P 32 0 R /K 34 0 R /ID (ID.014) >> +<< /Type /StructElem /T /S /chapter /P 31 0 R /K <> /ID (ID.013) >> endobj 34 0 obj -<< /Type /StructElem /C /raggedright /S /Span /P 33 0 R /K <> /ID (ID.015) >> -endobj -36 0 obj -<< /Type /StructElem /S /semantic-para /P 32 0 R /K 37 0 R /ID (ID.016) >> +<< /Type /StructElem /S /semantic-para /P 31 0 R /K 35 0 R /ID (ID.014) >> endobj -37 0 obj -<< /Type /StructElem /C /justify /S /text-block /P 36 0 R /K <> /ID (ID.017) >> +35 0 obj +<< /Type /StructElem /C /justify /S /text-block /P 34 0 R /K <> /ID (ID.015) >> endobj 5 0 obj -<< /Type /StructTreeRoot /IDTree 43 0 R /ClassMap 44 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> +<< /Type /StructTreeRoot /IDTree 41 0 R /ClassMap 42 0 R /ParentTree 6 0 R /RoleMap 7 0 R /K 9 0 R >> endobj -45 0 obj +43 0 obj [333] endobj -47 0 obj +45 0 obj [722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722] endobj -48 0 obj +46 0 obj [499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 499.9 277.7 277.7 777.6 777.6 777.6 472.1 777.6 749.8 708.2 722 763.7 680.4 652.6 784.5 749.8 361 513.8 777.6 624.8 916.4 749.8 777.6 680.4 777.6 735.9 555.4 722 749.8 749.8 1027.5 749.8 749.8 611 277.7 499.9 277.7 611 777.6 277.7 499.9 555.4 444.3 555.4 444.3 305.5 499.9 555.4 277.7 305.5 527.7 277.7 833.1 555.4 499.9 555.4 527.7 391.6 394.3 388.8 555.4] endobj -49 0 obj +47 0 obj [574.9 574.9 574.9 574.9 574.9 574.9 574.9 319.4 319.4 894.2 894.2 894.2 542.9 894.2 869.2 817.9 830.4 881.7 755.4 723.4 903.9 899.8 436 594.3 901.2 691.5 1091.4 899.8 863.7 785.9 863.7 862.3 638.7 799.8 884.5 869.2 1188.6 869.2 869.2 702.6 319.4 574.9 319.4 702.6 894.2 319.4 558.9 638.7 511 638.7 527 351.3 574.9 638.7 319.4 351.3 606.8 319.4 958.1 638.7 574.9 638.7 606.8 473.5 453.5 447.1 638.7 606.8 830.4 606.8] endobj -50 0 obj +48 0 obj [756.2 802.2 686.5 657.4 822.8 818.3 382.7 540.4 819 628.3 992.8 818.3 786 714.9 786 773.1 581.7 727.8 804.1 789.9 1080.8 789.9 789.9 639.9 290.9 523.5 290.9 639.9 814.4 290.9 523.5 581.7 465.4 581.7 472.3 319.9 523.5 581.7 290.9 319.9 552.6 290.9 872.6 581.7 523.5 581.7 552.6 418.9 413 407.2] endobj -51 0 obj +49 0 obj << /Length1 1144 /Length2 1422 @@ -487,7 +480,7 @@ endobj >> [BINARY STREAM] endobj -52 0 obj +50 0 obj << /Type /FontDescriptor /FontName /MUQHVU+PdfTeX-Space @@ -500,10 +493,10 @@ endobj /StemV 0 /XHeight 500 /CharSet (/space) -/FontFile 51 0 R +/FontFile 49 0 R >> endobj -53 0 obj +51 0 obj << /Length1 727 /Length2 12811 @@ -512,7 +505,7 @@ endobj >> [BINARY STREAM] endobj -54 0 obj +52 0 obj << /Type /FontDescriptor /FontName /KXRGOB+SFBX1000 @@ -525,10 +518,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/U/b/d/e/m/n/r/three/u/x) -/FontFile 53 0 R +/FontFile 51 0 R >> endobj -55 0 obj +53 0 obj << /Length1 727 /Length2 9714 @@ -537,7 +530,7 @@ endobj >> [BINARY STREAM] endobj -56 0 obj +54 0 obj << /Type /FontDescriptor /FontName /OLTIZZ+SFBX2488 @@ -550,10 +543,10 @@ endobj /StemV 50 /XHeight 444 /CharSet (/C/a/b/e/l/n/o/s/t) -/FontFile 55 0 R +/FontFile 53 0 R >> endobj -57 0 obj +55 0 obj << /Length1 721 /Length2 10493 @@ -562,7 +555,7 @@ endobj >> [BINARY STREAM] endobj -58 0 obj +56 0 obj << /Type /FontDescriptor /FontName /AWIRWV+SFRM1000 @@ -575,10 +568,10 @@ endobj /StemV 50 /XHeight 430 /CharSet (/U/b/d/e/m/n/one/r/three/two/u) -/FontFile 57 0 R +/FontFile 55 0 R >> endobj -59 0 obj +57 0 obj << /Length1 727 /Length2 3502 @@ -587,7 +580,7 @@ endobj >> [BINARY STREAM] endobj -60 0 obj +58 0 obj << /Type /FontDescriptor /FontName /LSNJKE+SFSL1000 @@ -600,16 +593,16 @@ endobj /StemV 50 /XHeight 430 /CharSet (/C/E/N/O/S/T) -/FontFile 59 0 R +/FontFile 57 0 R >> endobj -46 0 obj +44 0 obj << /Type /Encoding /Differences [49/one/two/three 67/C 69/E 78/N/O 83/S/T/U 97/a/b 100/d/e 108/l/m/n/o 114/r/s/t/u 120/x] >> endobj -61 0 obj +59 0 obj << /Length 2030 >> @@ -753,20 +746,20 @@ end %%EOF endstream endobj -24 0 obj +23 0 obj << /Type /Font /Subtype /Type1 /BaseFont /KXRGOB+SFBX1000 -/FontDescriptor 54 0 R +/FontDescriptor 52 0 R /FirstChar 51 /LastChar 120 -/Widths 49 0 R -/Encoding 46 0 R -/ToUnicode 61 0 R +/Widths 47 0 R +/Encoding 44 0 R +/ToUnicode 59 0 R >> endobj -62 0 obj +60 0 obj << /Length 2030 >> @@ -910,20 +903,20 @@ end %%EOF endstream endobj -23 0 obj +22 0 obj << /Type /Font /Subtype /Type1 /BaseFont /OLTIZZ+SFBX2488 -/FontDescriptor 56 0 R +/FontDescriptor 54 0 R /FirstChar 67 /LastChar 116 -/Widths 50 0 R -/Encoding 46 0 R -/ToUnicode 62 0 R +/Widths 48 0 R +/Encoding 44 0 R +/ToUnicode 60 0 R >> endobj -63 0 obj +61 0 obj << /Length 2030 >> @@ -1067,20 +1060,20 @@ end %%EOF endstream endobj -25 0 obj +24 0 obj << /Type /Font /Subtype /Type1 /BaseFont /AWIRWV+SFRM1000 -/FontDescriptor 58 0 R +/FontDescriptor 56 0 R /FirstChar 49 /LastChar 117 -/Widths 48 0 R -/Encoding 46 0 R -/ToUnicode 63 0 R +/Widths 46 0 R +/Encoding 44 0 R +/ToUnicode 61 0 R >> endobj -64 0 obj +62 0 obj << /Length 2030 >> @@ -1224,20 +1217,20 @@ end %%EOF endstream endobj -30 0 obj +29 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LSNJKE+SFSL1000 -/FontDescriptor 60 0 R +/FontDescriptor 58 0 R /FirstChar 67 /LastChar 84 -/Widths 47 0 R -/Encoding 46 0 R -/ToUnicode 64 0 R +/Widths 45 0 R +/Encoding 44 0 R +/ToUnicode 62 0 R >> endobj -65 0 obj +63 0 obj << /Length 654 >> @@ -1275,113 +1268,111 @@ end %%EOF endstream endobj -31 0 obj +30 0 obj << /Type /Font /Subtype /Type1 /BaseFont /MUQHVU+PdfTeX-Space -/FontDescriptor 52 0 R +/FontDescriptor 50 0 R /FirstChar 32 /LastChar 32 -/Widths 45 0 R -/ToUnicode 65 0 R +/Widths 43 0 R +/ToUnicode 63 0 R >> endobj -26 0 obj +25 0 obj << /Type /Pages /Count 3 -/Kids [15 0 R 28 0 R 35 0 R] +/Kids [14 0 R 27 0 R 33 0 R] >> endobj -66 0 obj +64 0 obj << /Type /Catalog -/Pages 26 0 R -/MarkInfo 41 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 38 0 R +/Pages 25 0 R +/MarkInfo 39 0 R/Lang (en)/StructTreeRoot 5 0 R/Metadata 36 0 R >> endobj -67 0 obj +65 0 obj << /Producer (pdfTeX)/Creator (TeX)/CreationDate (D:20160520090000Z)/ModDate (D:20160520090000Z) /Trapped /False >> endobj xref -0 68 +0 66 0000000008 65535 f -0000014076 00000 n -0000014123 00000 n -0000014145 00000 n -0000014167 00000 n -0000017368 00000 n -0000014225 00000 n -0000014673 00000 n +0000014082 00000 n +0000014129 00000 n +0000014151 00000 n +0000014173 00000 n +0000017208 00000 n +0000014231 00000 n +0000014647 00000 n 0000000000 00000 f -0000015550 00000 n -0000015644 00000 n -0000015720 00000 n -0000015796 00000 n -0000015887 00000 n -0000016015 00000 n -0000000606 00000 n -0000016140 00000 n -0000016253 00000 n -0000016378 00000 n -0000016527 00000 n -0000016676 00000 n -0000000741 00000 n +0000015588 00000 n +0000015682 00000 n +0000015758 00000 n +0000015834 00000 n +0000015925 00000 n +0000000609 00000 n +0000016079 00000 n +0000016192 00000 n +0000016317 00000 n +0000016466 00000 n +0000016615 00000 n +0000000744 00000 n 0000000015 00000 n -0000066948 00000 n -0000064681 00000 n -0000069215 00000 n -0000072536 00000 n -0000001219 00000 n -0000001084 00000 n -0000000853 00000 n -0000071482 00000 n -0000072372 00000 n -0000016825 00000 n -0000016916 00000 n -0000017024 00000 n -0000013841 00000 n -0000017149 00000 n -0000017241 00000 n -0000001331 00000 n -0000013976 00000 n -0000013505 00000 n -0000014189 00000 n -0000014322 00000 n -0000014636 00000 n -0000015345 00000 n -0000017486 00000 n -0000062451 00000 n -0000017508 00000 n -0000017628 00000 n -0000018051 00000 n -0000018485 00000 n -0000018796 00000 n -0000021460 00000 n -0000021678 00000 n -0000035314 00000 n -0000035557 00000 n -0000046095 00000 n -0000046332 00000 n -0000057644 00000 n -0000057893 00000 n -0000062219 00000 n -0000062592 00000 n -0000064859 00000 n -0000067126 00000 n -0000069393 00000 n -0000071659 00000 n -0000072609 00000 n -0000072724 00000 n +0000066788 00000 n +0000064521 00000 n +0000069055 00000 n +0000072376 00000 n +0000001222 00000 n +0000001087 00000 n +0000000856 00000 n +0000071322 00000 n +0000072212 00000 n +0000016764 00000 n +0000016855 00000 n +0000013847 00000 n +0000016989 00000 n +0000017081 00000 n +0000001334 00000 n +0000013982 00000 n +0000013508 00000 n +0000014195 00000 n +0000014328 00000 n +0000014610 00000 n +0000015426 00000 n +0000017326 00000 n +0000062291 00000 n +0000017348 00000 n +0000017468 00000 n +0000017891 00000 n +0000018325 00000 n +0000018636 00000 n +0000021300 00000 n +0000021518 00000 n +0000035154 00000 n +0000035397 00000 n +0000045935 00000 n +0000046172 00000 n +0000057484 00000 n +0000057733 00000 n +0000062059 00000 n +0000062432 00000 n +0000064699 00000 n +0000066966 00000 n +0000069233 00000 n +0000071499 00000 n +0000072449 00000 n +0000072564 00000 n trailer -<< /Size 68 -/Root 66 0 R -/Info 67 0 R +<< /Size 66 +/Root 64 0 R +/Info 65 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -72856 +72696 %%EOF diff --git a/required/latex-lab/testfiles-toc/toc-math-leaders.luatex.tlg b/required/latex-lab/testfiles-toc/toc-math-leaders.luatex.tlg index 0e2770d34..93a1b5a07 100644 --- a/required/latex-lab/testfiles-toc/toc-math-leaders.luatex.tlg +++ b/required/latex-lab/testfiles-toc/toc-math-leaders.luatex.tlg @@ -109,8 +109,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 x @@ -147,7 +151,7 @@ Completed box being shipped out [1] <><> (toc-math-leaders.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~14 structure objects -(tagpdf) with ~9 'MC' leaf nodes. +(tagpdf) with ~10 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles-toc/toc-math-leaders.tlg b/required/latex-lab/testfiles-toc/toc-math-leaders.tlg index 64ebd6746..f4f54c0ab 100644 --- a/required/latex-lab/testfiles-toc/toc-math-leaders.tlg +++ b/required/latex-lab/testfiles-toc/toc-math-leaders.tlg @@ -19,13 +19,13 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,8,-1,} -...\marks4{b+,8,-1,} +...\marks4{b-,9,-1,} +...\marks4{b+,9,-1,} ...\hbox(0.0+0.0)x345.0 ....\hbox(0.0+0.0)x345.0 ...\pdfliteral page{EMC} -...\marks4{e-,8,11,} -...\marks4{e+,8,11,} +...\marks4{e-,9,11,} +...\marks4{e+,9,11,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -50,12 +50,12 @@ Completed box being shipped out [1] ....\kern-0.4399 ....\T1/cmr/bx/n/14.4 t ....\T1/cmr/bx/n/14.4 s -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 ...\marks4{b-,1,6,section,,,} ...\marks4{b+,1,6,section,,,} +...\pdfliteral page{EMC} ...\marks4{e-,1,6,} ...\marks4{e+,1,6,} ...\penalty 10000 @@ -119,32 +119,40 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 8.79082 ...\hbox(9.20918+0.0)x345.0, glue set 296.17166fil -....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,6,13,heading-number,,,} +.....\marks4{b+,6,13,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,6,13,} +.....\marks4{e+,6,13,} +.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,7,12,section,,,} +.....\marks4{b+,7,12,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,7,12,} +.....\marks4{e+,7,12,} +....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 x ....\T1/cmr/bx/n/14.4 x ....\T1/cmr/bx/n/14.4 x -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,6,13,section-number,,,} -...\marks4{b+,6,13,section-number,,,} -...\marks4{e-,6,13,} -...\marks4{e+,6,13,} -...\marks4{b-,7,12,section,,,} -...\marks4{b+,7,12,section,,,} -...\marks4{e-,7,12,} -...\marks4{e+,7,12,} +...\marks4{b-,8,12,section,,,} +...\marks4{b+,8,12,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,8,12,} +...\marks4{e+,8,12,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}xxx}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -155,8 +163,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,9,-1,} -..\marks4{b+,9,-1,} +..\marks4{b-,10,-1,} +..\marks4{b+,10,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\hbox(6.4151+0.0)x345.0, glue set 170.00061fil @@ -164,8 +172,8 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 1 ....\glue 0.0 plus 1.0fil ..\pdfliteral page{EMC} -..\marks4{e-,9,11,} -..\marks4{e+,9,11,} +..\marks4{e-,10,11,} +..\marks4{e+,10,11,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -175,7 +183,7 @@ Completed box being shipped out [1] <><> (toc-math-leaders.aux) Package tagpdf Info: Finalizing the tagging structure: (tagpdf) Writing out ~13 structure objects -(tagpdf) with ~9 'MC' leaf nodes. +(tagpdf) with ~10 'MC' leaf nodes. (tagpdf) Be patient if there are lots of objects! Package tagpdf Info: writing ParentTree Package tagpdf Info: writing IDTree diff --git a/required/latex-lab/testfiles/documentmetadata-latest.luatex.tlg b/required/latex-lab/testfiles/documentmetadata-latest.luatex.tlg index d798bc253..e4561007e 100644 --- a/required/latex-lab/testfiles/documentmetadata-latest.luatex.tlg +++ b/required/latex-lab/testfiles/documentmetadata-latest.luatex.tlg @@ -131,6 +131,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-latest.tlg b/required/latex-lab/testfiles/documentmetadata-latest.tlg index 29e2686ba..825edc63e 100644 --- a/required/latex-lab/testfiles/documentmetadata-latest.tlg +++ b/required/latex-lab/testfiles/documentmetadata-latest.tlg @@ -115,6 +115,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-support-000.luatex.tlg b/required/latex-lab/testfiles/documentmetadata-support-000.luatex.tlg index ffa292ddf..d7dfa4b58 100644 --- a/required/latex-lab/testfiles/documentmetadata-support-000.luatex.tlg +++ b/required/latex-lab/testfiles/documentmetadata-support-000.luatex.tlg @@ -139,6 +139,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-support-000.tlg b/required/latex-lab/testfiles/documentmetadata-support-000.tlg index 80911fb01..e364494b8 100644 --- a/required/latex-lab/testfiles/documentmetadata-support-000.tlg +++ b/required/latex-lab/testfiles/documentmetadata-support-000.tlg @@ -123,6 +123,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-support-001.luatex.tlg b/required/latex-lab/testfiles/documentmetadata-support-001.luatex.tlg index 8f4a840cb..821a738cf 100644 --- a/required/latex-lab/testfiles/documentmetadata-support-001.luatex.tlg +++ b/required/latex-lab/testfiles/documentmetadata-support-001.luatex.tlg @@ -132,6 +132,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-support-001.tlg b/required/latex-lab/testfiles/documentmetadata-support-001.tlg index a188d4802..dbf9f3bf6 100644 --- a/required/latex-lab/testfiles/documentmetadata-support-001.tlg +++ b/required/latex-lab/testfiles/documentmetadata-support-001.tlg @@ -116,6 +116,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-tagging.luatex.tlg b/required/latex-lab/testfiles/documentmetadata-tagging.luatex.tlg index ac2b98e29..9b5382530 100644 --- a/required/latex-lab/testfiles/documentmetadata-tagging.luatex.tlg +++ b/required/latex-lab/testfiles/documentmetadata-tagging.luatex.tlg @@ -131,6 +131,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/documentmetadata-tagging.tlg b/required/latex-lab/testfiles/documentmetadata-tagging.tlg index c1c648fc0..4aceb9f50 100644 --- a/required/latex-lab/testfiles/documentmetadata-tagging.tlg +++ b/required/latex-lab/testfiles/documentmetadata-tagging.tlg @@ -115,6 +115,7 @@ LaTeX template Info: Declaring template type 'headformat' taking 6 argument(s) o \l__head_after_penalty_skip=\skip... \l__head_after_skip=\skip... \l__head_heading_indent_dim=\dimen... +LaTeX template Info: Declaring code for template 'runin-v1' of template type 'heading' on line .... ) (latex-lab-testphase-toc.sty Package: latex-lab-testphase-toc ....-..-.. v... Code related to the tagging of toc-like lists \g__tag_toc_level_int=\count... diff --git a/required/latex-lab/testfiles/footmisc-19.luatex.tlg b/required/latex-lab/testfiles/footmisc-19.luatex.tlg index f6cab92de..e52e0d7d1 100644 --- a/required/latex-lab/testfiles/footmisc-19.luatex.tlg +++ b/required/latex-lab/testfiles/footmisc-19.luatex.tlg @@ -10,20 +10,22 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... Overfull \hbox (57.8879pt too wide) in paragraph at lines ... []\OT1/cmr/bx/n/14.4 Page 1: the nor-mal page break (foot-notes/flooats=off) \hbox(10.79999+3.59999)x345.0, glue set - 1.0, direction TLT @@ -38,6 +40,7 @@ Overfull \hbox (57.8879pt too wide) in paragraph at lines ... ..\glue 0.0 ..\OT1/cmr/bx/n/14.4 1 ..\glue 16.19998 +..\glue 0.0 .\OT1/cmr/bx/n/14.4 P .\kern-0.45001 (font) .\OT1/cmr/bx/n/14.4 a @@ -101,6 +104,9 @@ Overfull \hbox (57.8879pt too wide) in paragraph at lines ... .\glue(\parfillskip) 0.0 plus 1.0fil .\glue(\rightskip) 0.0 [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... @@ -290,8 +296,12 @@ Completed box being shipped out [1] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 1 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P @@ -940,22 +950,27 @@ Completed box being shipped out [1] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <14.4> not available (Font) Font shape `OT1/cmtt/m/n' tried instead on input line .... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -1167,8 +1182,12 @@ Completed box being shipped out [2] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 2 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P @@ -1560,20 +1579,25 @@ Completed box being shipped out [2] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -1730,8 +1754,12 @@ Completed box being shipped out [3] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 3 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P @@ -2155,20 +2183,25 @@ Completed box being shipped out [3] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -2326,8 +2359,12 @@ Completed box being shipped out [4] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 4 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P @@ -2719,20 +2756,25 @@ Completed box being shipped out [4] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -2890,8 +2932,12 @@ Completed box being shipped out [5] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 5 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P @@ -3315,20 +3361,25 @@ Completed box being shipped out [5] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -3429,8 +3480,12 @@ Completed box being shipped out [6] .....\pdfliteral page .....\pdfliteral page .....\OT1/cmr/bx/n/14.4 6 +.....\pdfliteral page +.....\pdfliteral page .....\TU/lmr/m/n/10 .....\glue 12.86998 +.....\TU/lmr/m/n/10 +.....\glue -3.33 ....\pdfliteral page ....\pdfliteral page ....\OT1/cmr/bx/n/14.4 P diff --git a/required/latex-lab/testfiles/footmisc-19.tlg b/required/latex-lab/testfiles/footmisc-19.tlg index 715a24719..29b2a2e1e 100644 --- a/required/latex-lab/testfiles/footmisc-19.tlg +++ b/required/latex-lab/testfiles/footmisc-19.tlg @@ -10,33 +10,47 @@ Don't change this file in any respect. [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... Overfull \hbox (49.68631pt too wide) in paragraph at lines ... -[][][][][][]\T1/cmr/bx/n/14.4 Page 1: the nor-mal page break (foot-notes/flooats=off)[] +[][][]\T1/cmr/bx/n/14.4 Page 1: the nor-mal page break (foot-notes/flooats=off) \hbox(10.6874+3.5991)x345.0, glue set - 1.0 -.\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -.\pdfliteral shipout page{/section-number <> BDC} .\hbox(9.20918+0.0)x23.75433 ..\hbox(0.0+0.0)x0.0 ..\penalty 10000 ..\glue 0.0 +..\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +..\pdfliteral shipout page{/heading-number <> BDC} +..\marks4{b-,1,7,heading-number,,,} +..\marks4{b+,1,7,heading-number,,,} ..\T1/cmr/bx/n/14.4 1 +..\pdfliteral page{EMC} +..\marks4{e-,1,7,} +..\marks4{e+,1,7,} +..\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +..\pdfliteral shipout page{/section <> BDC} +..\marks4{b-,2,6,section,,,} +..\marks4{b+,2,6,section,,,} ..\glue 15.83623 -.\pdfliteral page{EMC} -.\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +..\pdffakespace +..\pdfliteral page{EMC} +..\marks4{e-,2,6,} +..\marks4{e+,2,6,} +.\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} .\pdfliteral shipout page{/section <> BDC} .\T1/cmr/bx/n/14.4 P .\kern-0.4399 @@ -97,11 +111,13 @@ Overfull \hbox (49.68631pt too wide) in paragraph at lines ... .\T1/cmr/bx/n/14.4 ^^[ (ligature ff) .\kern1.39632 .\T1/cmr/bx/n/14.4 ) -.\pdfliteral page{EMC} .\penalty 10000 .\glue(\parfillskip) 0.0 plus 1.0fil .\glue(\rightskip) 0.0 [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... @@ -268,15 +284,15 @@ Completed box being shipped out [1] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,22,-1,} -...\marks4{b+,22,-1,} +...\marks4{b-,23,-1,} +...\marks4{b+,23,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,22,5,} -...\marks4{e+,22,5,} +...\marks4{e-,23,5,} +...\marks4{e+,23,5,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -285,16 +301,28 @@ Completed box being shipped out [1] ...\write-{} ...\glue(\topskip) 0.0 ...\hbox(10.6874+3.5991)x345.0, glue set - 1.0 -....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-1}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{1}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,1,7,heading-number,,,} +.....\marks4{b+,1,7,heading-number,,,} .....\T1/cmr/bx/n/14.4 1 +.....\pdfliteral page{EMC} +.....\marks4{e-,1,7,} +.....\marks4{e+,1,7,} +.....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,2,6,section,,,} +.....\marks4{b+,2,6,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-2}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{2}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,2,6,} +.....\marks4{e+,2,6,} +....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -355,18 +383,14 @@ Completed box being shipped out [1] ....\T1/cmr/bx/n/14.4 ^^[ (ligature ff) ....\kern1.39632 ....\T1/cmr/bx/n/14.4 ) -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,1,7,section-number,,,} -...\marks4{b+,1,7,section-number,,,} -...\marks4{e-,1,7,} -...\marks4{e+,1,7,} -...\marks4{b-,2,6,section,,,} -...\marks4{b+,2,6,section,,,} -...\marks4{e-,2,6,} -...\marks4{e+,2,6,} +...\marks4{b-,3,6,section,,,} +...\marks4{b+,3,6,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,3,6,} +...\marks4{e+,3,6,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {1}Page 1: the normal page break (footnotes/flooats=off)}{\thepage }{target*.1}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -374,7 +398,7 @@ Completed box being shipped out [1] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.51369 ...\hbox(6.8872+0.0)x345.0, glue set 307.89795fil -....\write1{\new@label@record{mcid-3}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{3}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -390,8 +414,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,3,9,text-block,,,} -...\marks4{b+,3,9,text-block,,,} +...\marks4{b-,4,9,text-block,,,} +...\marks4{b+,4,9,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -455,13 +479,13 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,3,9,} -...\marks4{e+,3,9,} +...\marks4{e-,4,9,} +...\marks4{e+,4,9,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 292.89795fil -....\write1{\new@label@record{mcid-4}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{4}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -478,8 +502,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,4,11,text-block,,,} -...\marks4{b+,4,11,text-block,,,} +...\marks4{b-,5,11,text-block,,,} +...\marks4{b+,5,11,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -543,13 +567,13 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,4,11,} -...\marks4{e+,4,11,} +...\marks4{e-,5,11,} +...\marks4{e+,5,11,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 292.89795fil -....\write1{\new@label@record{mcid-5}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{5}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -566,8 +590,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,5,13,text-block,,,} -...\marks4{b+,5,13,text-block,,,} +...\marks4{b-,6,13,text-block,,,} +...\marks4{b+,6,13,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -629,71 +653,71 @@ Completed box being shipped out [1] ....\T1/cmr/m/n/10 q ....\penalty 10000 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-6}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{6}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotemark <> BDC} ....\hbox(8.16115+0.0)x4.48514 .....\pdfliteral page{EMC} -.....\marks4{e-,6,14,} -.....\marks4{e+,6,14,} -.....\write1{\new@label@record{mcid-7}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{7}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,7,14,} +.....\marks4{e+,7,14,} +.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-fragment <> BDC} -.....\marks4{b-,7,15,text-fragment,,,} -.....\marks4{b+,7,15,text-fragment,,,} +.....\marks4{b-,8,15,text-fragment,,,} +.....\marks4{b+,8,15,text-fragment,,,} .....\hbox(4.53223+0.0)x3.98514, shifted -3.62892 ......\pdfcolorstack 0 push {0 g 0 G} ......\T1/cmr/m/n/7 1 ......\pdfcolorstack 0 pop .....\pdfliteral page{EMC} -.....\marks4{e-,7,15,} -.....\marks4{e+,7,15,} -.....\write1{\new@label@record{mcid-8}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{8}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,8,15,} +.....\marks4{e+,8,15,} +.....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/footnotemark <> BDC} -.....\marks4{b-,8,14,footnotemark,,,} -.....\marks4{b+,8,14,footnotemark,,,} +.....\marks4{b-,9,14,footnotemark,,,} +.....\marks4{b+,9,14,footnotemark,,,} .....\penalty 10000 .....\glue 0.5 .....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-9}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{9}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,5,13,} -...\marks4{e+,5,13,} -...\marks4{b-,6,14,footnotemark,,,} -...\marks4{b+,6,14,footnotemark,,,} -...\marks4{e-,8,14,} -...\marks4{e+,8,14,} -...\marks4{b-,9,13,text-block,,,} -...\marks4{b+,9,13,text-block,,,} -...\marks4{e-,9,13,} -...\marks4{e+,9,13,} -...\marks4{b-,17,13,text-block,,,} -...\marks4{b+,17,13,text-block,,,} -...\marks4{e-,17,13,} -...\marks4{e+,17,13,} +...\marks4{e-,6,13,} +...\marks4{e+,6,13,} +...\marks4{b-,7,14,footnotemark,,,} +...\marks4{b+,7,14,footnotemark,,,} +...\marks4{e-,9,14,} +...\marks4{e+,9,14,} +...\marks4{b-,10,13,text-block,,,} +...\marks4{b+,10,13,text-block,,,} +...\marks4{e-,10,13,} +...\marks4{e+,10,13,} +...\marks4{b-,18,13,text-block,,,} +...\marks4{b+,18,13,text-block,,,} +...\marks4{e-,18,13,} +...\marks4{e+,18,13,} ...\penalty 0 ...\penalty 10000 -...\marks4{b-,19,13,P,,,} -...\marks4{b+,19,13,P,,,} -...\marks4{e-,19,13,} -...\marks4{e+,19,13,} +...\marks4{b-,20,13,P,,,} +...\marks4{b+,20,13,P,,,} +...\marks4{e-,20,13,} +...\marks4{e+,20,13,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 292.89795fil -....\write1{\new@label@record{mcid-20}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{20}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -710,8 +734,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,20,25,text-block,,,} -...\marks4{b+,20,25,text-block,,,} +...\marks4{b-,21,25,text-block,,,} +...\marks4{b+,21,25,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -775,13 +799,13 @@ Completed box being shipped out [1] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,20,25,} -...\marks4{e+,20,25,} +...\marks4{e-,21,25,} +...\marks4{e+,21,25,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 292.89795fil -....\write1{\new@label@record{mcid-21}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{21}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-22}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{22}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -798,8 +822,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,21,27,text-block,,,} -...\marks4{b+,21,27,text-block,,,} +...\marks4{b-,22,27,text-block,,,} +...\marks4{b+,22,27,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -823,40 +847,40 @@ Completed box being shipped out [1] ...\kern 2.6 ...\hbox(0.0+0.0)x0.0 ...\hbox(6.6724+2.85002)x345.0, glue set 219.83055fil -....\write1{\new@label@record{mcid-10}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{10}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-11}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{11}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotelabel <> BDC} ....\hbox(6.6724+0.0)x17.99562, glue set 13.82985fil .....\glue 0.0 plus 1.0fil minus 1.0fil .....\hbox(6.6724+0.0)x4.16577 ......\pdfliteral page{EMC} -......\marks4{e-,11,19,} -......\marks4{e+,11,19,} -......\write1{\new@label@record{mcid-12}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{12}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,12,19,} +......\marks4{e+,12,19,} +......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-fragment <> BDC} -......\marks4{b-,12,20,text-fragment,,,} -......\marks4{b+,12,20,text-fragment,,,} +......\marks4{b-,13,20,text-fragment,,,} +......\marks4{b+,13,20,text-fragment,,,} ......\hbox(3.84906+0.0)x3.66577, shifted -2.82333 .......\pdfcolorstack 0 push {0 g 0 G} .......\T1/cmr/m/n/6 1 .......\pdfcolorstack 0 pop ......\pdfliteral page{EMC} -......\marks4{e-,12,20,} -......\marks4{e+,12,20,} -......\write1{\new@label@record{mcid-13}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{13}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,13,20,} +......\marks4{e+,13,20,} +......\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/footnotelabel <> BDC} -......\marks4{b-,13,19,footnotelabel,,,} -......\marks4{b+,13,19,footnotelabel,,,} +......\marks4{b-,14,19,footnotelabel,,,} +......\marks4{b+,14,19,footnotelabel,,,} ......\penalty 10000 ......\glue 0.5 ......\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-14}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{14}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-15}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{15}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 @@ -894,24 +918,20 @@ Completed box being shipped out [1] ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-16}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{16}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-17}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{17}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,10,18,text-block,,,} -...\marks4{b+,10,18,text-block,,,} -...\marks4{e-,10,18,} -...\marks4{e+,10,18,} -...\marks4{b-,11,19,footnotelabel,,,} -...\marks4{b+,11,19,footnotelabel,,,} -...\marks4{e-,13,19,} -...\marks4{e+,13,19,} -...\marks4{b-,14,18,text-block,,,} -...\marks4{b+,14,18,text-block,,,} -...\marks4{e-,14,18,} -...\marks4{e+,14,18,} +...\marks4{b-,11,18,text-block,,,} +...\marks4{b+,11,18,text-block,,,} +...\marks4{e-,11,18,} +...\marks4{e+,11,18,} +...\marks4{b-,12,19,footnotelabel,,,} +...\marks4{b+,12,19,footnotelabel,,,} +...\marks4{e-,14,19,} +...\marks4{e+,14,19,} ...\marks4{b-,15,18,text-block,,,} ...\marks4{b+,15,18,text-block,,,} ...\marks4{e-,15,18,} @@ -920,6 +940,10 @@ Completed box being shipped out [1] ...\marks4{b+,16,18,text-block,,,} ...\marks4{e-,16,18,} ...\marks4{e+,16,18,} +...\marks4{b-,17,18,text-block,,,} +...\marks4{b+,17,18,text-block,,,} +...\marks4{e-,17,18,} +...\marks4{e+,17,18,} ...\kern -2.85002 ...\hbox(0.0+2.85002)x0.0 ...\pdfcolorstack 0 pop @@ -931,7 +955,7 @@ Completed box being shipped out [1] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-18}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{18}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-19}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{19}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -962,10 +986,10 @@ Completed box being shipped out [1] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,18,23,text-block,,,} -.....\marks4{b+,18,23,text-block,,,} -.....\marks4{e-,18,23,} -.....\marks4{e+,18,23,} +.....\marks4{b-,19,23,text-block,,,} +.....\marks4{b+,19,23,text-block,,,} +.....\marks4{e-,19,23,} +.....\marks4{e+,19,23,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -974,8 +998,8 @@ Completed box being shipped out [1] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,23,-1,} -..\marks4{b+,23,-1,} +..\marks4{b-,24,-1,} +..\marks4{b+,24,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -985,8 +1009,8 @@ Completed box being shipped out [1] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,23,5,} -..\marks4{e+,23,5,} +..\marks4{e-,24,5,} +..\marks4{e+,24,5,} ..\pdfrunninglinkon .\kern 0.0 .\kern 0.0 @@ -997,22 +1021,27 @@ Completed box being shipped out [1] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... LaTeX Font Info: Font shape `T1/cmtt/bx/n' in size <14.4> not available (Font) Font shape `T1/cmtt/m/n' tried instead on input line .... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -1144,21 +1173,21 @@ Completed box being shipped out [2] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,43,-1,} -...\marks4{b+,43,-1,} +...\marks4{b-,45,-1,} +...\marks4{b+,45,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,43,28,} -...\marks4{e+,43,28,} +...\marks4{e-,45,28,} +...\marks4{e+,45,28,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set >20000.0fil ...\hbox(0.0+0.0)x0.0 -....\write1{\new@label@record{mcid-42}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{42}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-44}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{44}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ...\glue(\topskip) 5.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 339.72351fil @@ -1210,24 +1239,36 @@ Completed box being shipped out [2] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,21,27,} -...\marks4{e+,21,27,} +...\marks4{e-,22,27,} +...\marks4{e+,22,27,} ...\penalty -300 ...\glue 15.06577 plus 4.3045 minus 0.86089 ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 6.05849 ...\hbox(9.99754+3.1992)x345.0, glue set 134.24806fil -....\write1{\new@label@record{mcid-24}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{24}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,25,30,heading-number,,,} +.....\marks4{b+,25,30,heading-number,,,} .....\T1/cmr/bx/n/14.4 2 +.....\pdfliteral page{EMC} +.....\marks4{e-,25,30,} +.....\marks4{e+,25,30,} +.....\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,26,29,section,,,} +.....\marks4{b+,26,29,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-25}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{25}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,26,29,} +.....\marks4{e+,26,29,} +....\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -1258,18 +1299,14 @@ Completed box being shipped out [2] ....\T1/cmtt/m/n/14.4 a ....\T1/cmtt/m/n/14.4 k ....\kern 0.0 -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,24,30,section-number,,,} -...\marks4{b+,24,30,section-number,,,} -...\marks4{e-,24,30,} -...\marks4{e+,24,30,} -...\marks4{b-,25,29,section,,,} -...\marks4{b+,25,29,section,,,} -...\marks4{e-,25,29,} -...\marks4{e+,25,29,} +...\marks4{b-,27,29,section,,,} +...\marks4{b+,27,29,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,27,29,} +...\marks4{e+,27,29,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2}Page 2: manual \protect \texttt {\pagebreak}}{\thepage }{target*.2}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -1277,7 +1314,7 @@ Completed box being shipped out [2] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.91359 ...\hbox(6.8872+0.0)x345.0, glue set 316.22925fil -....\write1{\new@label@record{mcid-26}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{26}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -1290,8 +1327,8 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,26,32,text-block,,,} -...\marks4{b+,26,32,text-block,,,} +...\marks4{b-,28,32,text-block,,,} +...\marks4{b+,28,32,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -1353,71 +1390,71 @@ Completed box being shipped out [2] ....\T1/cmr/m/n/10 q ....\penalty 10000 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-27}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{27}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotemark <> BDC} ....\hbox(8.16115+0.0)x4.48514 .....\pdfliteral page{EMC} -.....\marks4{e-,27,33,} -.....\marks4{e+,27,33,} -.....\write1{\new@label@record{mcid-28}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{28}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,29,33,} +.....\marks4{e+,29,33,} +.....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-fragment <> BDC} -.....\marks4{b-,28,34,text-fragment,,,} -.....\marks4{b+,28,34,text-fragment,,,} +.....\marks4{b-,30,34,text-fragment,,,} +.....\marks4{b+,30,34,text-fragment,,,} .....\hbox(4.53223+0.0)x3.98514, shifted -3.62892 ......\pdfcolorstack 0 push {0 g 0 G} ......\T1/cmr/m/n/7 2 ......\pdfcolorstack 0 pop .....\pdfliteral page{EMC} -.....\marks4{e-,28,34,} -.....\marks4{e+,28,34,} -.....\write1{\new@label@record{mcid-29}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{29}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,30,34,} +.....\marks4{e+,30,34,} +.....\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/footnotemark <> BDC} -.....\marks4{b-,29,33,footnotemark,,,} -.....\marks4{b+,29,33,footnotemark,,,} +.....\marks4{b-,31,33,footnotemark,,,} +.....\marks4{b+,31,33,footnotemark,,,} .....\penalty 10000 .....\glue 0.5 .....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-30}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{30}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-40}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{40}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-42}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{42}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,26,32,} -...\marks4{e+,26,32,} -...\marks4{b-,27,33,footnotemark,,,} -...\marks4{b+,27,33,footnotemark,,,} -...\marks4{e-,29,33,} -...\marks4{e+,29,33,} -...\marks4{b-,30,32,text-block,,,} -...\marks4{b+,30,32,text-block,,,} -...\marks4{e-,30,32,} -...\marks4{e+,30,32,} -...\marks4{b-,38,32,text-block,,,} -...\marks4{b+,38,32,text-block,,,} -...\marks4{e-,38,32,} -...\marks4{e+,38,32,} -...\penalty 0 -...\penalty 10000 -...\marks4{b-,40,32,P,,,} -...\marks4{b+,40,32,P,,,} +...\marks4{e-,28,32,} +...\marks4{e+,28,32,} +...\marks4{b-,29,33,footnotemark,,,} +...\marks4{b+,29,33,footnotemark,,,} +...\marks4{e-,31,33,} +...\marks4{e+,31,33,} +...\marks4{b-,32,32,text-block,,,} +...\marks4{b+,32,32,text-block,,,} +...\marks4{e-,32,32,} +...\marks4{e+,32,32,} +...\marks4{b-,40,32,text-block,,,} +...\marks4{b+,40,32,text-block,,,} ...\marks4{e-,40,32,} ...\marks4{e+,40,32,} +...\penalty 0 +...\penalty 10000 +...\marks4{b-,42,32,P,,,} +...\marks4{b+,42,32,P,,,} +...\marks4{e-,42,32,} +...\marks4{e+,42,32,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 301.22925fil -....\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-43}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{43}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -1431,8 +1468,8 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,41,44,text-block,,,} -...\marks4{b+,41,44,text-block,,,} +...\marks4{b-,43,44,text-block,,,} +...\marks4{b+,43,44,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -1511,40 +1548,40 @@ Completed box being shipped out [2] ...\kern 2.6 ...\hbox(0.0+0.0)x0.0 ...\hbox(6.6724+2.85002)x345.0, glue set 219.83055fil -....\write1{\new@label@record{mcid-31}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{31}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-32}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{32}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-34}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{34}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotelabel <> BDC} ....\hbox(6.6724+0.0)x17.99562, glue set 13.82985fil .....\glue 0.0 plus 1.0fil minus 1.0fil .....\hbox(6.6724+0.0)x4.16577 ......\pdfliteral page{EMC} -......\marks4{e-,32,38,} -......\marks4{e+,32,38,} -......\write1{\new@label@record{mcid-33}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{33}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,34,38,} +......\marks4{e+,34,38,} +......\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-fragment <> BDC} -......\marks4{b-,33,39,text-fragment,,,} -......\marks4{b+,33,39,text-fragment,,,} +......\marks4{b-,35,39,text-fragment,,,} +......\marks4{b+,35,39,text-fragment,,,} ......\hbox(3.84906+0.0)x3.66577, shifted -2.82333 .......\pdfcolorstack 0 push {0 g 0 G} .......\T1/cmr/m/n/6 2 .......\pdfcolorstack 0 pop ......\pdfliteral page{EMC} -......\marks4{e-,33,39,} -......\marks4{e+,33,39,} -......\write1{\new@label@record{mcid-34}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{34}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,35,39,} +......\marks4{e+,35,39,} +......\write1{\new@label@record{mcid-36}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{36}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/footnotelabel <> BDC} -......\marks4{b-,34,38,footnotelabel,,,} -......\marks4{b+,34,38,footnotelabel,,,} +......\marks4{b-,36,38,footnotelabel,,,} +......\marks4{b+,36,38,footnotelabel,,,} ......\penalty 10000 ......\glue 0.5 ......\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-35}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{35}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-37}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{37}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-36}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{36}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-38}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{38}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 @@ -1582,32 +1619,32 @@ Completed box being shipped out [2] ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-37}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{37}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,31,37,text-block,,,} -...\marks4{b+,31,37,text-block,,,} -...\marks4{e-,31,37,} -...\marks4{e+,31,37,} -...\marks4{b-,32,38,footnotelabel,,,} -...\marks4{b+,32,38,footnotelabel,,,} -...\marks4{e-,34,38,} -...\marks4{e+,34,38,} -...\marks4{b-,35,37,text-block,,,} -...\marks4{b+,35,37,text-block,,,} -...\marks4{e-,35,37,} -...\marks4{e+,35,37,} -...\marks4{b-,36,37,text-block,,,} -...\marks4{b+,36,37,text-block,,,} -...\marks4{e-,36,37,} -...\marks4{e+,36,37,} +...\marks4{b-,33,37,text-block,,,} +...\marks4{b+,33,37,text-block,,,} +...\marks4{e-,33,37,} +...\marks4{e+,33,37,} +...\marks4{b-,34,38,footnotelabel,,,} +...\marks4{b+,34,38,footnotelabel,,,} +...\marks4{e-,36,38,} +...\marks4{e+,36,38,} ...\marks4{b-,37,37,text-block,,,} ...\marks4{b+,37,37,text-block,,,} ...\marks4{e-,37,37,} ...\marks4{e+,37,37,} +...\marks4{b-,38,37,text-block,,,} +...\marks4{b+,38,37,text-block,,,} +...\marks4{e-,38,37,} +...\marks4{e+,38,37,} +...\marks4{b-,39,37,text-block,,,} +...\marks4{b+,39,37,text-block,,,} +...\marks4{e-,39,37,} +...\marks4{e+,39,37,} ...\kern -2.85002 ...\hbox(0.0+2.85002)x0.0 ...\pdfcolorstack 0 pop @@ -1619,7 +1656,7 @@ Completed box being shipped out [2] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-39}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{39}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-41}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{41}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -1650,10 +1687,10 @@ Completed box being shipped out [2] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,39,42,text-block,,,} -.....\marks4{b+,39,42,text-block,,,} -.....\marks4{e-,39,42,} -.....\marks4{e+,39,42,} +.....\marks4{b-,41,42,text-block,,,} +.....\marks4{b+,41,42,text-block,,,} +.....\marks4{e-,41,42,} +.....\marks4{e+,41,42,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -1662,8 +1699,8 @@ Completed box being shipped out [2] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,44,-1,} -..\marks4{b+,44,-1,} +..\marks4{b-,46,-1,} +..\marks4{b+,46,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -1673,8 +1710,8 @@ Completed box being shipped out [2] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,44,28,} -..\marks4{e+,44,28,} +..\marks4{e-,46,28,} +..\marks4{e+,46,28,} ..\pdfrunninglinkon .\kern 0.0 [Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used on input line ... @@ -1684,20 +1721,25 @@ Completed box being shipped out [2] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -1829,36 +1871,48 @@ Completed box being shipped out [3] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,64,-1,} -...\marks4{b+,64,-1,} +...\marks4{b-,67,-1,} +...\marks4{b+,67,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,64,45,} -...\marks4{e+,64,45,} +...\marks4{e-,67,45,} +...\marks4{e+,67,45,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set 225.63326fill ...\hbox(0.0+0.0)x0.0 -....\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} -...\marks4{e-,41,44,} -...\marks4{e+,41,44,} +...\marks4{e-,43,44,} +...\marks4{e+,43,44,} ...\glue(\topskip) 0.00246 ...\hbox(9.99754+3.1992)x345.0, glue set 0.65474 -....\write1{\new@label@record{mcid-45}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{45}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-47}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{47}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,47,47,heading-number,,,} +.....\marks4{b+,47,47,heading-number,,,} .....\T1/cmr/bx/n/14.4 3 +.....\pdfliteral page{EMC} +.....\marks4{e-,47,47,} +.....\marks4{e+,47,47,} +.....\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,48,46,section,,,} +.....\marks4{b+,48,46,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-46}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{46}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,48,46,} +.....\marks4{e+,48,46,} +....\write1{\new@label@record{mcid-49}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{49}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -1910,12 +1964,8 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/14.4 - ....\discretionary ....\glue(\rightskip) 0.0 -...\marks4{b-,45,47,section-number,,,} -...\marks4{b+,45,47,section-number,,,} -...\marks4{e-,45,47,} -...\marks4{e+,45,47,} -...\marks4{b-,46,46,section,,,} -...\marks4{b+,46,46,section,,,} +...\marks4{b-,49,46,section,,,} +...\marks4{b+,49,46,section,,,} ...\penalty 10400 ...\glue(\baselineskip) 8.40237 ...\hbox(6.39842+2.7993)x321.24567, glue set 289.41103fil, shifted 23.75433 @@ -1923,12 +1973,12 @@ Completed box being shipped out [3] ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 g ....\T1/cmr/bx/n/14.4 e -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,46,46,} -...\marks4{e+,46,46,} +...\pdfliteral page{EMC} +...\marks4{e-,49,46,} +...\marks4{e+,49,46,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {3}Page 3: manual \protect \texttt {\pagebreak} with \protect \texttt {\vfill} mid-page}{\thepage }{target*.3}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -1936,7 +1986,7 @@ Completed box being shipped out [3] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 2.31349 ...\hbox(6.8872+0.0)x345.0, glue set 316.22925fil -....\write1{\new@label@record{mcid-47}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{47}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -1949,8 +1999,8 @@ Completed box being shipped out [3] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,47,49,text-block,,,} -...\marks4{b+,47,49,text-block,,,} +...\marks4{b-,50,49,text-block,,,} +...\marks4{b+,50,49,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -2012,72 +2062,72 @@ Completed box being shipped out [3] ....\T1/cmr/m/n/10 q ....\penalty 10000 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-48}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{48}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotemark <> BDC} ....\hbox(8.16115+0.0)x4.48514 .....\pdfliteral page{EMC} -.....\marks4{e-,48,50,} -.....\marks4{e+,48,50,} -.....\write1{\new@label@record{mcid-49}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{49}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,51,50,} +.....\marks4{e+,51,50,} +.....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-fragment <> BDC} -.....\marks4{b-,49,51,text-fragment,,,} -.....\marks4{b+,49,51,text-fragment,,,} +.....\marks4{b-,52,51,text-fragment,,,} +.....\marks4{b+,52,51,text-fragment,,,} .....\hbox(4.53223+0.0)x3.98514, shifted -3.62892 ......\pdfcolorstack 0 push {0 g 0 G} ......\T1/cmr/m/n/7 3 ......\pdfcolorstack 0 pop .....\pdfliteral page{EMC} -.....\marks4{e-,49,51,} -.....\marks4{e+,49,51,} -.....\write1{\new@label@record{mcid-50}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{50}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,52,51,} +.....\marks4{e+,52,51,} +.....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/footnotemark <> BDC} -.....\marks4{b-,50,50,footnotemark,,,} -.....\marks4{b+,50,50,footnotemark,,,} +.....\marks4{b-,53,50,footnotemark,,,} +.....\marks4{b+,53,50,footnotemark,,,} .....\penalty 10000 .....\glue 0.5 .....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-51}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{51}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-64}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{64}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,47,49,} -...\marks4{e+,47,49,} -...\marks4{b-,48,50,footnotemark,,,} -...\marks4{b+,48,50,footnotemark,,,} -...\marks4{e-,50,50,} -...\marks4{e+,50,50,} -...\marks4{b-,51,49,text-block,,,} -...\marks4{b+,51,49,text-block,,,} -...\marks4{e-,51,49,} -...\marks4{e+,51,49,} -...\marks4{b-,59,49,text-block,,,} -...\marks4{b+,59,49,text-block,,,} -...\marks4{e-,59,49,} -...\marks4{e+,59,49,} +...\marks4{e-,50,49,} +...\marks4{e+,50,49,} +...\marks4{b-,51,50,footnotemark,,,} +...\marks4{b+,51,50,footnotemark,,,} +...\marks4{e-,53,50,} +...\marks4{e+,53,50,} +...\marks4{b-,54,49,text-block,,,} +...\marks4{b+,54,49,text-block,,,} +...\marks4{e-,54,49,} +...\marks4{e+,54,49,} +...\marks4{b-,62,49,text-block,,,} +...\marks4{b+,62,49,text-block,,,} +...\marks4{e-,62,49,} +...\marks4{e+,62,49,} ...\penalty 0 ...\penalty 10000 -...\marks4{b-,61,49,P,,,} -...\marks4{b+,61,49,P,,,} -...\marks4{e-,61,49,} -...\marks4{e+,61,49,} +...\marks4{b-,64,49,P,,,} +...\marks4{b+,64,49,P,,,} +...\marks4{e-,64,49,} +...\marks4{e+,64,49,} ...\glue 0.0 plus 1.0fill ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 301.22925fil -....\write1{\new@label@record{mcid-62}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{62}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-65}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{65}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -2091,8 +2141,8 @@ Completed box being shipped out [3] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,62,61,text-block,,,} -...\marks4{b+,62,61,text-block,,,} +...\marks4{b-,65,61,text-block,,,} +...\marks4{b+,65,61,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -2171,40 +2221,40 @@ Completed box being shipped out [3] ...\kern 2.6 ...\hbox(0.0+0.0)x0.0 ...\hbox(6.6724+2.85002)x345.0, glue set 219.83055fil -....\write1{\new@label@record{mcid-52}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{52}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-53}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{53}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotelabel <> BDC} ....\hbox(6.6724+0.0)x17.99562, glue set 13.82985fil .....\glue 0.0 plus 1.0fil minus 1.0fil .....\hbox(6.6724+0.0)x4.16577 ......\pdfliteral page{EMC} -......\marks4{e-,53,55,} -......\marks4{e+,53,55,} -......\write1{\new@label@record{mcid-54}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{54}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,56,55,} +......\marks4{e+,56,55,} +......\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-fragment <> BDC} -......\marks4{b-,54,56,text-fragment,,,} -......\marks4{b+,54,56,text-fragment,,,} +......\marks4{b-,57,56,text-fragment,,,} +......\marks4{b+,57,56,text-fragment,,,} ......\hbox(3.84906+0.0)x3.66577, shifted -2.82333 .......\pdfcolorstack 0 push {0 g 0 G} .......\T1/cmr/m/n/6 3 .......\pdfcolorstack 0 pop ......\pdfliteral page{EMC} -......\marks4{e-,54,56,} -......\marks4{e+,54,56,} -......\write1{\new@label@record{mcid-55}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{55}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,57,56,} +......\marks4{e+,57,56,} +......\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/footnotelabel <> BDC} -......\marks4{b-,55,55,footnotelabel,,,} -......\marks4{b+,55,55,footnotelabel,,,} +......\marks4{b-,58,55,footnotelabel,,,} +......\marks4{b+,58,55,footnotelabel,,,} ......\penalty 10000 ......\glue 0.5 ......\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-56}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{56}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-59}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{59}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-57}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{57}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 @@ -2242,32 +2292,32 @@ Completed box being shipped out [3] ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-58}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{58}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-61}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{61}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,52,54,text-block,,,} -...\marks4{b+,52,54,text-block,,,} -...\marks4{e-,52,54,} -...\marks4{e+,52,54,} -...\marks4{b-,53,55,footnotelabel,,,} -...\marks4{b+,53,55,footnotelabel,,,} -...\marks4{e-,55,55,} -...\marks4{e+,55,55,} -...\marks4{b-,56,54,text-block,,,} -...\marks4{b+,56,54,text-block,,,} -...\marks4{e-,56,54,} -...\marks4{e+,56,54,} -...\marks4{b-,57,54,text-block,,,} -...\marks4{b+,57,54,text-block,,,} -...\marks4{e-,57,54,} -...\marks4{e+,57,54,} -...\marks4{b-,58,54,text-block,,,} -...\marks4{b+,58,54,text-block,,,} -...\marks4{e-,58,54,} -...\marks4{e+,58,54,} +...\marks4{b-,55,54,text-block,,,} +...\marks4{b+,55,54,text-block,,,} +...\marks4{e-,55,54,} +...\marks4{e+,55,54,} +...\marks4{b-,56,55,footnotelabel,,,} +...\marks4{b+,56,55,footnotelabel,,,} +...\marks4{e-,58,55,} +...\marks4{e+,58,55,} +...\marks4{b-,59,54,text-block,,,} +...\marks4{b+,59,54,text-block,,,} +...\marks4{e-,59,54,} +...\marks4{e+,59,54,} +...\marks4{b-,60,54,text-block,,,} +...\marks4{b+,60,54,text-block,,,} +...\marks4{e-,60,54,} +...\marks4{e+,60,54,} +...\marks4{b-,61,54,text-block,,,} +...\marks4{b+,61,54,text-block,,,} +...\marks4{e-,61,54,} +...\marks4{e+,61,54,} ...\kern -2.85002 ...\hbox(0.0+2.85002)x0.0 ...\pdfcolorstack 0 pop @@ -2279,7 +2329,7 @@ Completed box being shipped out [3] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-60}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{60}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-63}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{63}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -2310,10 +2360,10 @@ Completed box being shipped out [3] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,60,59,text-block,,,} -.....\marks4{b+,60,59,text-block,,,} -.....\marks4{e-,60,59,} -.....\marks4{e+,60,59,} +.....\marks4{b-,63,59,text-block,,,} +.....\marks4{b+,63,59,text-block,,,} +.....\marks4{e-,63,59,} +.....\marks4{e+,63,59,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -2322,8 +2372,8 @@ Completed box being shipped out [3] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,65,-1,} -..\marks4{b+,65,-1,} +..\marks4{b-,68,-1,} +..\marks4{b+,68,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -2333,8 +2383,8 @@ Completed box being shipped out [3] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,65,45,} -..\marks4{e+,65,45,} +..\marks4{e-,68,45,} +..\marks4{e+,68,45,} ..\pdfrunninglinkon .\kern 0.0 [Sockets] ==> Socket 'refstepcounter' containing plug 'identity' used on input line ... @@ -2344,20 +2394,25 @@ Completed box being shipped out [3] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -2490,36 +2545,48 @@ Completed box being shipped out [4] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,85,-1,} -...\marks4{b+,85,-1,} +...\marks4{b-,89,-1,} +...\marks4{b+,89,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,85,62,} -...\marks4{e+,85,62,} +...\marks4{e-,89,62,} +...\marks4{e+,89,62,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 ..\vbox(550.0+0.0)x345.0, glue set 243.60724fil ...\hbox(0.0+0.0)x0.0 -....\write1{\new@label@record{mcid-84}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{84}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-88}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{88}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} -...\marks4{e-,62,61,} -...\marks4{e+,62,61,} +...\marks4{e-,65,61,} +...\marks4{e+,65,61,} ...\glue(\topskip) 0.00246 ...\hbox(9.99754+3.1992)x345.0, glue set 148.86479fil -....\write1{\new@label@record{mcid-66}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{66}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-69}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{69}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,69,64,heading-number,,,} +.....\marks4{b+,69,64,heading-number,,,} .....\T1/cmr/bx/n/14.4 4 +.....\pdfliteral page{EMC} +.....\marks4{e-,69,64,} +.....\marks4{e+,69,64,} +.....\write1{\new@label@record{mcid-70}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{70}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,70,63,section,,,} +.....\marks4{b+,70,63,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-67}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{67}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,70,63,} +.....\marks4{e+,70,63,} +....\write1{\new@label@record{mcid-71}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{71}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -2548,18 +2615,14 @@ Completed box being shipped out [4] ....\T1/cmtt/m/n/14.4 g ....\T1/cmtt/m/n/14.4 e ....\kern 0.0 -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,66,64,section-number,,,} -...\marks4{b+,66,64,section-number,,,} -...\marks4{e-,66,64,} -...\marks4{e+,66,64,} -...\marks4{b-,67,63,section,,,} -...\marks4{b+,67,63,section,,,} -...\marks4{e-,67,63,} -...\marks4{e+,67,63,} +...\marks4{b-,71,63,section,,,} +...\marks4{b+,71,63,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,71,63,} +...\marks4{e+,71,63,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {4}Page 4: manual \protect \texttt {\newpage}}{\thepage }{target*.4}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -2567,7 +2630,7 @@ Completed box being shipped out [4] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.91359 ...\hbox(6.8872+0.0)x345.0, glue set 316.22925fil -....\write1{\new@label@record{mcid-68}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{68}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-72}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{72}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -2580,8 +2643,8 @@ Completed box being shipped out [4] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,68,66,text-block,,,} -...\marks4{b+,68,66,text-block,,,} +...\marks4{b-,72,66,text-block,,,} +...\marks4{b+,72,66,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -2643,71 +2706,71 @@ Completed box being shipped out [4] ....\T1/cmr/m/n/10 q ....\penalty 10000 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-69}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{69}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-73}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{73}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotemark <> BDC} ....\hbox(8.16115+0.0)x4.48514 .....\pdfliteral page{EMC} -.....\marks4{e-,69,67,} -.....\marks4{e+,69,67,} -.....\write1{\new@label@record{mcid-70}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{70}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,73,67,} +.....\marks4{e+,73,67,} +.....\write1{\new@label@record{mcid-74}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{74}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-fragment <> BDC} -.....\marks4{b-,70,68,text-fragment,,,} -.....\marks4{b+,70,68,text-fragment,,,} +.....\marks4{b-,74,68,text-fragment,,,} +.....\marks4{b+,74,68,text-fragment,,,} .....\hbox(4.53223+0.0)x3.98514, shifted -3.62892 ......\pdfcolorstack 0 push {0 g 0 G} ......\T1/cmr/m/n/7 4 ......\pdfcolorstack 0 pop .....\pdfliteral page{EMC} -.....\marks4{e-,70,68,} -.....\marks4{e+,70,68,} -.....\write1{\new@label@record{mcid-71}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{71}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,74,68,} +.....\marks4{e+,74,68,} +.....\write1{\new@label@record{mcid-75}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{75}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/footnotemark <> BDC} -.....\marks4{b-,71,67,footnotemark,,,} -.....\marks4{b+,71,67,footnotemark,,,} +.....\marks4{b-,75,67,footnotemark,,,} +.....\marks4{b+,75,67,footnotemark,,,} .....\penalty 10000 .....\glue 0.5 .....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-72}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{72}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-76}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{76}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-80}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{80}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-84}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{84}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-82}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{82}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-86}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{86}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,68,66,} -...\marks4{e+,68,66,} -...\marks4{b-,69,67,footnotemark,,,} -...\marks4{b+,69,67,footnotemark,,,} -...\marks4{e-,71,67,} -...\marks4{e+,71,67,} -...\marks4{b-,72,66,text-block,,,} -...\marks4{b+,72,66,text-block,,,} ...\marks4{e-,72,66,} ...\marks4{e+,72,66,} -...\marks4{b-,80,66,text-block,,,} -...\marks4{b+,80,66,text-block,,,} -...\marks4{e-,80,66,} -...\marks4{e+,80,66,} +...\marks4{b-,73,67,footnotemark,,,} +...\marks4{b+,73,67,footnotemark,,,} +...\marks4{e-,75,67,} +...\marks4{e+,75,67,} +...\marks4{b-,76,66,text-block,,,} +...\marks4{b+,76,66,text-block,,,} +...\marks4{e-,76,66,} +...\marks4{e+,76,66,} +...\marks4{b-,84,66,text-block,,,} +...\marks4{b+,84,66,text-block,,,} +...\marks4{e-,84,66,} +...\marks4{e+,84,66,} ...\penalty 0 ...\penalty 10000 -...\marks4{b-,82,66,P,,,} -...\marks4{b+,82,66,P,,,} -...\marks4{e-,82,66,} -...\marks4{e+,82,66,} +...\marks4{b-,86,66,P,,,} +...\marks4{b+,86,66,P,,,} +...\marks4{e-,86,66,} +...\marks4{e+,86,66,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 301.22925fil -....\write1{\new@label@record{mcid-83}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{83}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-87}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{87}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -2721,8 +2784,8 @@ Completed box being shipped out [4] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,83,78,text-block,,,} -...\marks4{b+,83,78,text-block,,,} +...\marks4{b-,87,78,text-block,,,} +...\marks4{b+,87,78,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -2791,8 +2854,8 @@ Completed box being shipped out [4] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,83,78,} -...\marks4{e+,83,78,} +...\marks4{e-,87,78,} +...\marks4{e+,87,78,} ...\kern -1.94397 ...\hbox(0.0+1.94397)x0.0 ...\glue 0.0 plus 1.0fil @@ -2803,40 +2866,40 @@ Completed box being shipped out [4] ...\kern 2.6 ...\hbox(0.0+0.0)x0.0 ...\hbox(6.6724+2.85002)x345.0, glue set 219.83055fil -....\write1{\new@label@record{mcid-73}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{73}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-77}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{77}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-74}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{74}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-78}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{78}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotelabel <> BDC} ....\hbox(6.6724+0.0)x17.99562, glue set 13.82985fil .....\glue 0.0 plus 1.0fil minus 1.0fil .....\hbox(6.6724+0.0)x4.16577 ......\pdfliteral page{EMC} -......\marks4{e-,74,72,} -......\marks4{e+,74,72,} -......\write1{\new@label@record{mcid-75}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{75}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,78,72,} +......\marks4{e+,78,72,} +......\write1{\new@label@record{mcid-79}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{79}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-fragment <> BDC} -......\marks4{b-,75,73,text-fragment,,,} -......\marks4{b+,75,73,text-fragment,,,} +......\marks4{b-,79,73,text-fragment,,,} +......\marks4{b+,79,73,text-fragment,,,} ......\hbox(3.84906+0.0)x3.66577, shifted -2.82333 .......\pdfcolorstack 0 push {0 g 0 G} .......\T1/cmr/m/n/6 4 .......\pdfcolorstack 0 pop ......\pdfliteral page{EMC} -......\marks4{e-,75,73,} -......\marks4{e+,75,73,} -......\write1{\new@label@record{mcid-76}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{76}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,79,73,} +......\marks4{e+,79,73,} +......\write1{\new@label@record{mcid-80}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{80}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/footnotelabel <> BDC} -......\marks4{b-,76,72,footnotelabel,,,} -......\marks4{b+,76,72,footnotelabel,,,} +......\marks4{b-,80,72,footnotelabel,,,} +......\marks4{b+,80,72,footnotelabel,,,} ......\penalty 10000 ......\glue 0.5 ......\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-77}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{77}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-81}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{81}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-78}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{78}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-82}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{82}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 @@ -2874,32 +2937,32 @@ Completed box being shipped out [4] ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-79}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{79}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-83}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{83}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,73,71,text-block,,,} -...\marks4{b+,73,71,text-block,,,} -...\marks4{e-,73,71,} -...\marks4{e+,73,71,} -...\marks4{b-,74,72,footnotelabel,,,} -...\marks4{b+,74,72,footnotelabel,,,} -...\marks4{e-,76,72,} -...\marks4{e+,76,72,} ...\marks4{b-,77,71,text-block,,,} ...\marks4{b+,77,71,text-block,,,} ...\marks4{e-,77,71,} ...\marks4{e+,77,71,} -...\marks4{b-,78,71,text-block,,,} -...\marks4{b+,78,71,text-block,,,} -...\marks4{e-,78,71,} -...\marks4{e+,78,71,} -...\marks4{b-,79,71,text-block,,,} -...\marks4{b+,79,71,text-block,,,} -...\marks4{e-,79,71,} -...\marks4{e+,79,71,} +...\marks4{b-,78,72,footnotelabel,,,} +...\marks4{b+,78,72,footnotelabel,,,} +...\marks4{e-,80,72,} +...\marks4{e+,80,72,} +...\marks4{b-,81,71,text-block,,,} +...\marks4{b+,81,71,text-block,,,} +...\marks4{e-,81,71,} +...\marks4{e+,81,71,} +...\marks4{b-,82,71,text-block,,,} +...\marks4{b+,82,71,text-block,,,} +...\marks4{e-,82,71,} +...\marks4{e+,82,71,} +...\marks4{b-,83,71,text-block,,,} +...\marks4{b+,83,71,text-block,,,} +...\marks4{e-,83,71,} +...\marks4{e+,83,71,} ...\kern -2.85002 ...\hbox(0.0+2.85002)x0.0 ...\pdfcolorstack 0 pop @@ -2911,7 +2974,7 @@ Completed box being shipped out [4] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-81}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{81}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-85}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{85}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -2942,10 +3005,10 @@ Completed box being shipped out [4] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,81,76,text-block,,,} -.....\marks4{b+,81,76,text-block,,,} -.....\marks4{e-,81,76,} -.....\marks4{e+,81,76,} +.....\marks4{b-,85,76,text-block,,,} +.....\marks4{b+,85,76,text-block,,,} +.....\marks4{e-,85,76,} +.....\marks4{e+,85,76,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -2954,8 +3017,8 @@ Completed box being shipped out [4] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,86,-1,} -..\marks4{b+,86,-1,} +..\marks4{b-,90,-1,} +..\marks4{b+,90,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -2965,8 +3028,8 @@ Completed box being shipped out [4] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,86,62,} -..\marks4{e+,86,62,} +..\marks4{e-,90,62,} +..\marks4{e+,90,62,} ..\pdfrunninglinkon .\kern 0.0 [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... @@ -2977,20 +3040,25 @@ Completed box being shipped out [4] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -3123,15 +3191,15 @@ Completed box being shipped out [5] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,105,-1,} -...\marks4{b+,105,-1,} +...\marks4{b-,110,-1,} +...\marks4{b+,110,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,105,79,} -...\marks4{e+,105,79,} +...\marks4{e-,110,79,} +...\marks4{e+,110,79,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -3139,16 +3207,28 @@ Completed box being shipped out [5] ...\hbox(0.0+0.0)x0.0 ...\glue(\topskip) 0.00246 ...\hbox(9.99754+3.1992)x345.0, glue set - 0.52919 -....\write1{\new@label@record{mcid-87}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{87}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-91}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{91}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,91,81,heading-number,,,} +.....\marks4{b+,91,81,heading-number,,,} .....\T1/cmr/bx/n/14.4 5 +.....\pdfliteral page{EMC} +.....\marks4{e-,91,81,} +.....\marks4{e+,91,81,} +.....\write1{\new@label@record{mcid-92}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{92}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,92,80,section,,,} +.....\marks4{b+,92,80,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-88}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{88}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,92,80,} +.....\marks4{e+,92,80,} +....\write1{\new@label@record{mcid-93}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{93}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -3201,18 +3281,14 @@ Completed box being shipped out [5] ....\T1/cmr/bx/n/14.4 a ....\T1/cmr/bx/n/14.4 g ....\T1/cmr/bx/n/14.4 e -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,87,81,section-number,,,} -...\marks4{b+,87,81,section-number,,,} -...\marks4{e-,87,81,} -...\marks4{e+,87,81,} -...\marks4{b-,88,80,section,,,} -...\marks4{b+,88,80,section,,,} -...\marks4{e-,88,80,} -...\marks4{e+,88,80,} +...\marks4{b-,93,80,section,,,} +...\marks4{b+,93,80,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,93,80,} +...\marks4{e+,93,80,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {5}Page 5: manual \protect \texttt {\newpage} with \protect \texttt {\vfill} mid-page}{\thepage }{target*.5}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -3220,7 +3296,7 @@ Completed box being shipped out [5] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.91359 ...\hbox(6.8872+0.0)x345.0, glue set 316.22925fil -....\write1{\new@label@record{mcid-89}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{89}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-94}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{94}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -3233,8 +3309,8 @@ Completed box being shipped out [5] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,89,83,text-block,,,} -...\marks4{b+,89,83,text-block,,,} +...\marks4{b-,94,83,text-block,,,} +...\marks4{b+,94,83,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -3296,72 +3372,72 @@ Completed box being shipped out [5] ....\T1/cmr/m/n/10 q ....\penalty 10000 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-90}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{90}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-95}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{95}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotemark <> BDC} ....\hbox(8.16115+0.0)x4.48514 .....\pdfliteral page{EMC} -.....\marks4{e-,90,84,} -.....\marks4{e+,90,84,} -.....\write1{\new@label@record{mcid-91}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{91}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,95,84,} +.....\marks4{e+,95,84,} +.....\write1{\new@label@record{mcid-96}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{96}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/text-fragment <> BDC} -.....\marks4{b-,91,85,text-fragment,,,} -.....\marks4{b+,91,85,text-fragment,,,} +.....\marks4{b-,96,85,text-fragment,,,} +.....\marks4{b+,96,85,text-fragment,,,} .....\hbox(4.53223+0.0)x3.98514, shifted -3.62892 ......\pdfcolorstack 0 push {0 g 0 G} ......\T1/cmr/m/n/7 5 ......\pdfcolorstack 0 pop .....\pdfliteral page{EMC} -.....\marks4{e-,91,85,} -.....\marks4{e+,91,85,} -.....\write1{\new@label@record{mcid-92}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{92}{tagmcid}{\__property_code_tagmcid: }}} +.....\marks4{e-,96,85,} +.....\marks4{e+,96,85,} +.....\write1{\new@label@record{mcid-97}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{97}{tagmcid}{\__property_code_tagmcid: }}} .....\pdfliteral shipout page{/footnotemark <> BDC} -.....\marks4{b-,92,84,footnotemark,,,} -.....\marks4{b+,92,84,footnotemark,,,} +.....\marks4{b-,97,84,footnotemark,,,} +.....\marks4{b+,97,84,footnotemark,,,} .....\penalty 10000 .....\glue 0.5 .....\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-93}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{93}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-98}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{98}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-101}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{101}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-106}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{106}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\glue 3.33252 plus 1.66626 minus 1.11084 ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-103}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{103}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-108}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{108}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,89,83,} -...\marks4{e+,89,83,} -...\marks4{b-,90,84,footnotemark,,,} -...\marks4{b+,90,84,footnotemark,,,} -...\marks4{e-,92,84,} -...\marks4{e+,92,84,} -...\marks4{b-,93,83,text-block,,,} -...\marks4{b+,93,83,text-block,,,} -...\marks4{e-,93,83,} -...\marks4{e+,93,83,} -...\marks4{b-,101,83,text-block,,,} -...\marks4{b+,101,83,text-block,,,} -...\marks4{e-,101,83,} -...\marks4{e+,101,83,} +...\marks4{e-,94,83,} +...\marks4{e+,94,83,} +...\marks4{b-,95,84,footnotemark,,,} +...\marks4{b+,95,84,footnotemark,,,} +...\marks4{e-,97,84,} +...\marks4{e+,97,84,} +...\marks4{b-,98,83,text-block,,,} +...\marks4{b+,98,83,text-block,,,} +...\marks4{e-,98,83,} +...\marks4{e+,98,83,} +...\marks4{b-,106,83,text-block,,,} +...\marks4{b+,106,83,text-block,,,} +...\marks4{e-,106,83,} +...\marks4{e+,106,83,} ...\penalty 0 ...\penalty 10000 -...\marks4{b-,103,83,P,,,} -...\marks4{b+,103,83,P,,,} -...\marks4{e-,103,83,} -...\marks4{e+,103,83,} +...\marks4{b-,108,83,P,,,} +...\marks4{b+,108,83,P,,,} +...\marks4{e-,108,83,} +...\marks4{e+,108,83,} ...\glue 0.0 plus 1.0fill ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 301.22925fil -....\write1{\new@label@record{mcid-104}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{104}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-109}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{109}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -3375,8 +3451,8 @@ Completed box being shipped out [5] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,104,95,text-block,,,} -...\marks4{b+,104,95,text-block,,,} +...\marks4{b-,109,95,text-block,,,} +...\marks4{b+,109,95,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -3445,8 +3521,8 @@ Completed box being shipped out [5] ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,104,95,} -...\marks4{e+,104,95,} +...\marks4{e-,109,95,} +...\marks4{e+,109,95,} ...\kern -1.94397 ...\hbox(0.0+1.94397)x0.0 ...\glue 0.0 plus 1.0fil @@ -3457,40 +3533,40 @@ Completed box being shipped out [5] ...\kern 2.6 ...\hbox(0.0+0.0)x0.0 ...\hbox(6.6724+2.85002)x345.0, glue set 219.83055fil -....\write1{\new@label@record{mcid-94}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{94}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-99}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{99}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-95}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{95}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-100}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{100}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/footnotelabel <> BDC} ....\hbox(6.6724+0.0)x17.99562, glue set 13.82985fil .....\glue 0.0 plus 1.0fil minus 1.0fil .....\hbox(6.6724+0.0)x4.16577 ......\pdfliteral page{EMC} -......\marks4{e-,95,89,} -......\marks4{e+,95,89,} -......\write1{\new@label@record{mcid-96}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{96}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,100,89,} +......\marks4{e+,100,89,} +......\write1{\new@label@record{mcid-101}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{101}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-fragment <> BDC} -......\marks4{b-,96,90,text-fragment,,,} -......\marks4{b+,96,90,text-fragment,,,} +......\marks4{b-,101,90,text-fragment,,,} +......\marks4{b+,101,90,text-fragment,,,} ......\hbox(3.84906+0.0)x3.66577, shifted -2.82333 .......\pdfcolorstack 0 push {0 g 0 G} .......\T1/cmr/m/n/6 5 .......\pdfcolorstack 0 pop ......\pdfliteral page{EMC} -......\marks4{e-,96,90,} -......\marks4{e+,96,90,} -......\write1{\new@label@record{mcid-97}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{97}{tagmcid}{\__property_code_tagmcid: }}} +......\marks4{e-,101,90,} +......\marks4{e+,101,90,} +......\write1{\new@label@record{mcid-102}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{102}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/footnotelabel <> BDC} -......\marks4{b-,97,89,footnotelabel,,,} -......\marks4{b+,97,89,footnotelabel,,,} +......\marks4{b-,102,89,footnotelabel,,,} +......\marks4{b+,102,89,footnotelabel,,,} ......\penalty 10000 ......\glue 0.5 ......\kern 0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-98}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{98}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-103}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{103}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-99}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{99}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-104}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{104}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(6.65+0.0)x0.0 .....\rule(6.65+0.0)x0.0 @@ -3528,32 +3604,32 @@ Completed box being shipped out [5] ....\penalty 10000 ....\rule(0.0+2.85002)x0.0 ....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-100}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{100}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-105}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{105}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,94,88,text-block,,,} -...\marks4{b+,94,88,text-block,,,} -...\marks4{e-,94,88,} -...\marks4{e+,94,88,} -...\marks4{b-,95,89,footnotelabel,,,} -...\marks4{b+,95,89,footnotelabel,,,} -...\marks4{e-,97,89,} -...\marks4{e+,97,89,} -...\marks4{b-,98,88,text-block,,,} -...\marks4{b+,98,88,text-block,,,} -...\marks4{e-,98,88,} -...\marks4{e+,98,88,} ...\marks4{b-,99,88,text-block,,,} ...\marks4{b+,99,88,text-block,,,} ...\marks4{e-,99,88,} ...\marks4{e+,99,88,} -...\marks4{b-,100,88,text-block,,,} -...\marks4{b+,100,88,text-block,,,} -...\marks4{e-,100,88,} -...\marks4{e+,100,88,} +...\marks4{b-,100,89,footnotelabel,,,} +...\marks4{b+,100,89,footnotelabel,,,} +...\marks4{e-,102,89,} +...\marks4{e+,102,89,} +...\marks4{b-,103,88,text-block,,,} +...\marks4{b+,103,88,text-block,,,} +...\marks4{e-,103,88,} +...\marks4{e+,103,88,} +...\marks4{b-,104,88,text-block,,,} +...\marks4{b+,104,88,text-block,,,} +...\marks4{e-,104,88,} +...\marks4{e+,104,88,} +...\marks4{b-,105,88,text-block,,,} +...\marks4{b+,105,88,text-block,,,} +...\marks4{e-,105,88,} +...\marks4{e+,105,88,} ...\kern -2.85002 ...\hbox(0.0+2.85002)x0.0 ...\pdfcolorstack 0 pop @@ -3565,7 +3641,7 @@ Completed box being shipped out [5] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-102}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{102}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-107}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{107}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -3596,10 +3672,10 @@ Completed box being shipped out [5] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,102,93,text-block,,,} -.....\marks4{b+,102,93,text-block,,,} -.....\marks4{e-,102,93,} -.....\marks4{e+,102,93,} +.....\marks4{b-,107,93,text-block,,,} +.....\marks4{b+,107,93,text-block,,,} +.....\marks4{e-,107,93,} +.....\marks4{e+,107,93,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -3608,8 +3684,8 @@ Completed box being shipped out [5] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,106,-1,} -..\marks4{b+,106,-1,} +..\marks4{b-,111,-1,} +..\marks4{b+,111,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -3619,8 +3695,8 @@ Completed box being shipped out [5] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,106,79,} -..\marks4{e+,106,79,} +..\marks4{e-,111,79,} +..\marks4{e+,111,79,} ..\pdfrunninglinkon .\kern 0.0 [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... @@ -3631,20 +3707,25 @@ Completed box being shipped out [5] [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/init' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/sec/title/hang' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify/setup' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'pdf/purify' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/before' on input line ... +[Sockets] ==> Replacing plug 'kernel' with 'noop' in socket 'tagsupport/parbox/after' on input line ... +[Sockets] ==> Replacing plug 'default' with 'noop' in socket 'tagsupport/para/restore' on input line ... +[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tag/struct/tag' containing plug 'latex-tags' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... -[Sockets] ==> Socket 'tagsupport/recordtarget' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tag/check/parent-child' containing plug 'identity' used on input line ... [Sockets] ==> Socket 'tagsupport/para/end' containing plug 'kernel' used on input line ... -[Sockets] ==> Socket 'tagsupport/para/textblock/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... +[Sockets] ==> Socket 'tagsupport/sec/title/end' containing plug 'kernel' used on input line ... +[Sockets] ==> Socket 'tagsupport/para/restore' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/kernel/endpe/vmode' containing plug 'default' used on input line ... [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... [Sockets] ==> Socket 'tagsupport/para/semantic/begin' containing plug 'kernel' used on input line ... @@ -3719,15 +3800,15 @@ Completed box being shipped out [6] ...\glue 0.0 plus 1.0fil ...\pdfrunninglinkoff ...\pdfliteral page{/Artifact BMC} -...\marks4{b-,113,-1,} -...\marks4{b+,113,-1,} +...\marks4{b-,119,-1,} +...\marks4{b+,119,-1,} ...\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 push {0 g 0 G} ....\hbox(0.0+0.0)x345.0 ....\pdfcolorstack 0 pop ...\pdfliteral page{EMC} -...\marks4{e-,113,96,} -...\marks4{e+,113,96,} +...\marks4{e-,119,96,} +...\marks4{e+,119,96,} ...\pdfrunninglinkon ..\glue 25.0 ..\glue(\lineskip) 0.0 @@ -3735,16 +3816,28 @@ Completed box being shipped out [6] ...\hbox(0.0+0.0)x0.0 ...\glue(\topskip) 0.00246 ...\hbox(9.99754+3.1992)x345.0, glue set 134.24806fil -....\write1{\new@label@record{mcid-107}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{107}{tagmcid}{\__property_code_tagmcid: }}} -....\pdfliteral shipout page{/section-number <> BDC} ....\hbox(9.20918+0.0)x23.75433 .....\hbox(0.0+0.0)x0.0 .....\penalty 10000 .....\glue 0.0 +.....\write1{\new@label@record{mcid-112}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{112}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/heading-number <> BDC} +.....\marks4{b-,112,98,heading-number,,,} +.....\marks4{b+,112,98,heading-number,,,} .....\T1/cmr/bx/n/14.4 6 +.....\pdfliteral page{EMC} +.....\marks4{e-,112,98,} +.....\marks4{e+,112,98,} +.....\write1{\new@label@record{mcid-113}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{113}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdfliteral shipout page{/section <> BDC} +.....\marks4{b-,113,97,section,,,} +.....\marks4{b+,113,97,section,,,} .....\glue 15.83623 -....\pdfliteral page{EMC} -....\write1{\new@label@record{mcid-108}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{108}{tagmcid}{\__property_code_tagmcid: }}} +.....\pdffakespace +.....\pdfliteral page{EMC} +.....\marks4{e-,113,97,} +.....\marks4{e+,113,97,} +....\write1{\new@label@record{mcid-114}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{114}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/section <> BDC} ....\T1/cmr/bx/n/14.4 P ....\kern-0.4399 @@ -3775,18 +3868,14 @@ Completed box being shipped out [6] ....\T1/cmtt/m/n/14.4 a ....\T1/cmtt/m/n/14.4 k ....\kern 0.0 -....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{b-,107,98,section-number,,,} -...\marks4{b+,107,98,section-number,,,} -...\marks4{e-,107,98,} -...\marks4{e+,107,98,} -...\marks4{b-,108,97,section,,,} -...\marks4{b+,108,97,section,,,} -...\marks4{e-,108,97,} -...\marks4{e+,108,97,} +...\marks4{b-,114,97,section,,,} +...\marks4{b+,114,97,section,,,} +...\pdfliteral page{EMC} +...\marks4{e-,114,97,} +...\marks4{e+,114,97,} ...\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {6}Page 6: manual \protect \texttt {\pagebreak}}{\thepage }{target*.6}\protected@file@percent }} ...\penalty 10000 ...\glue 9.90036 plus 0.86089 @@ -3794,7 +3883,7 @@ Completed box being shipped out [6] ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 1.91359 ...\hbox(6.8872+0.0)x345.0, glue set 311.23047fil -....\write1{\new@label@record{mcid-109}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{109}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-115}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{115}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\T1/cmr/m/n/10 P ....\kern-0.27771 @@ -3808,8 +3897,8 @@ Completed box being shipped out [6] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,109,100,text-block,,,} -...\marks4{b+,109,100,text-block,,,} +...\marks4{b-,115,100,text-block,,,} +...\marks4{b+,115,100,text-block,,,} ...\penalty 10000 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -3874,25 +3963,25 @@ Completed box being shipped out [6] ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue 0.0 -....\write1{\new@label@record{mcid-111}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{111}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-117}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{117}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/P <> BDC} ....\pdfliteral page{EMC} ....\penalty 10000 ....\glue(\parfillskip) 0.0 plus 1.0fil ....\glue(\rightskip) 0.0 -...\marks4{e-,109,100,} -...\marks4{e+,109,100,} +...\marks4{e-,115,100,} +...\marks4{e+,115,100,} ...\penalty 0 ...\penalty 10000 -...\marks4{b-,111,100,P,,,} -...\marks4{b+,111,100,P,,,} -...\marks4{e-,111,100,} -...\marks4{e+,111,100,} +...\marks4{b-,117,100,P,,,} +...\marks4{b+,117,100,P,,,} +...\marks4{e-,117,100,} +...\marks4{e+,117,100,} ...\glue(\parskip) 0.0 plus 1.0 ...\glue(\parskip) 0.0 ...\glue(\baselineskip) 3.16882 ...\hbox(6.8872+0.0)x345.0, glue set 296.23047fil -....\write1{\new@label@record{mcid-112}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{112}{tagmcid}{\__property_code_tagmcid: }}} +....\write1{\new@label@record{mcid-118}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{118}{tagmcid}{\__property_code_tagmcid: }}} ....\pdfliteral shipout page{/text-block <> BDC} ....\hbox(0.0+0.0)x15.0 ....\T1/cmr/m/n/10 P @@ -3907,8 +3996,8 @@ Completed box being shipped out [6] ....\glue 0.0 plus 1.0fil ....\penalty -10000 ....\glue(\rightskip) 0.0 -...\marks4{b-,112,105,text-block,,,} -...\marks4{b+,112,105,text-block,,,} +...\marks4{b-,118,105,text-block,,,} +...\marks4{b+,118,105,text-block,,,} ...\penalty 150 ...\glue(\baselineskip) 7.6955 ...\hbox(4.3045+1.94397)x345.0, glue set 316.39587fil @@ -3988,7 +4077,7 @@ Completed box being shipped out [6] .....\glue(\parskip) 0.0 .....\glue(\parskip) 0.0 .....\hbox(30.0+0.0)x345.0, glue set 29.5007fil -......\write1{\new@label@record{mcid-110}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{110}{tagmcid}{\__property_code_tagmcid: }}} +......\write1{\new@label@record{mcid-116}{{tagabspage}{\__property_code_tagabspage: }{tagmcabs}{116}{tagmcid}{\__property_code_tagmcid: }}} ......\pdfliteral shipout page{/text-block <> BDC} ......\hbox(0.0+0.0)x0.0 ......\glue 0.0 plus 1.0fil @@ -4019,10 +4108,10 @@ Completed box being shipped out [6] ......\penalty 10000 ......\glue(\parfillskip) 0.0 plus 1.0fil ......\glue(\rightskip) 0.0 -.....\marks4{b-,110,103,text-block,,,} -.....\marks4{b+,110,103,text-block,,,} -.....\marks4{e-,110,103,} -.....\marks4{e+,110,103,} +.....\marks4{b-,116,103,text-block,,,} +.....\marks4{b+,116,103,text-block,,,} +.....\marks4{e-,116,103,} +.....\marks4{e+,116,103,} .....\glue 0.0 ....\pdfcolorstack 0 pop ...\glue 12.0 plus 2.0 minus 2.0 @@ -4031,8 +4120,8 @@ Completed box being shipped out [6] ...\glue 0.0 plus 0.0001fil ..\pdfrunninglinkoff ..\pdfliteral page{/Artifact BMC} -..\marks4{b-,114,-1,} -..\marks4{b+,114,-1,} +..\marks4{b-,120,-1,} +..\marks4{b+,120,-1,} ..\glue(\baselineskip) 23.5849 ..\hbox(6.4151+0.0)x345.0 ...\pdfcolorstack 0 push {0 g 0 G} @@ -4042,8 +4131,8 @@ Completed box being shipped out [6] ....\glue 0.0 plus 1.0fil ...\pdfcolorstack 0 pop ..\pdfliteral page{EMC} -..\marks4{e-,114,96,} -..\marks4{e+,114,96,} +..\marks4{e-,120,96,} +..\marks4{e+,120,96,} ..\pdfrunninglinkon .\kern 0.0 [Sockets] ==> Socket 'tagsupport/para/begin' containing plug 'kernel' used on input line ... diff --git a/required/latex-lab/testfiles/superscript-tagged.luatex.tpf b/required/latex-lab/testfiles/superscript-tagged.luatex.tpf index e87b23a88..884c5d609 100644 --- a/required/latex-lab/testfiles/superscript-tagged.luatex.tpf +++ b/required/latex-lab/testfiles/superscript-tagged.luatex.tpf @@ -203,7 +203,7 @@ endobj << /Kids [51 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 53 0 obj << /justify <> @@ -224,7 +224,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -864,46 +864,46 @@ xref 0000004565 00000 n 0000004587 00000 n 0000004609 00000 n -0000009715 00000 n +0000009974 00000 n 0000004701 00000 n 0000005173 00000 n -0000007548 00000 n -0000006066 00000 n +0000007807 00000 n +0000006173 00000 n 0000000012 00000 f -0000006134 00000 n +0000006241 00000 n 0000000014 00000 f -0000006204 00000 n +0000006311 00000 n 0000000020 00000 f -0000007084 00000 n -0000006285 00000 n -0000007357 00000 n -0000007186 00000 n -0000007459 00000 n +0000007343 00000 n +0000006392 00000 n +0000007616 00000 n +0000007445 00000 n +0000007718 00000 n 0000000000 00000 f -0000007609 00000 n -0000007730 00000 n -0000007819 00000 n -0000007908 00000 n -0000007997 00000 n -0000008101 00000 n -0000008286 00000 n -0000008426 00000 n -0000008530 00000 n -0000008715 00000 n -0000008855 00000 n -0000008959 00000 n -0000009144 00000 n -0000009284 00000 n -0000009388 00000 n -0000009574 00000 n -0000009852 00000 n +0000007868 00000 n +0000007989 00000 n +0000008078 00000 n +0000008167 00000 n +0000008256 00000 n +0000008360 00000 n +0000008545 00000 n +0000008685 00000 n +0000008789 00000 n +0000008974 00000 n +0000009114 00000 n +0000009218 00000 n +0000009403 00000 n +0000009543 00000 n +0000009647 00000 n +0000009833 00000 n +0000010111 00000 n 0000001780 00000 n 0000001645 00000 n 0000000020 00000 n -0000045076 00000 n -0000047013 00000 n -0000023590 00000 n -0000047169 00000 n +0000045335 00000 n +0000047272 00000 n +0000023849 00000 n +0000047428 00000 n 0000001867 00000 n 0000002333 00000 n 0000002538 00000 n @@ -912,24 +912,24 @@ xref 0000004665 00000 n 0000004821 00000 n 0000005136 00000 n -0000005832 00000 n -0000022021 00000 n -0000022643 00000 n -0000022053 00000 n -0000022864 00000 n -0000023744 00000 n -0000023944 00000 n -0000023979 00000 n -0000035117 00000 n -0000024176 00000 n -0000043088 00000 n -0000035322 00000 n -0000043292 00000 n -0000045234 00000 n -0000047231 00000 n -0000047356 00000 n +0000005939 00000 n +0000022280 00000 n +0000022902 00000 n +0000022312 00000 n +0000023123 00000 n +0000024003 00000 n +0000024203 00000 n +0000024238 00000 n +0000035376 00000 n +0000024435 00000 n +0000043347 00000 n +0000035581 00000 n +0000043551 00000 n +0000045493 00000 n +0000047490 00000 n +0000047615 00000 n trailer << /Size 69 /Root 67 0 R /Info 68 0 R /ID [ <2350CAD05F8A7AF0AA4058486855344F> <2350CAD05F8A7AF0AA4058486855344F> ] >> startxref -47488 +47747 %%EOF diff --git a/required/latex-lab/testfiles/superscript-tagged.tpf b/required/latex-lab/testfiles/superscript-tagged.tpf index 5e60bdd57..266fa4ce3 100644 --- a/required/latex-lab/testfiles/superscript-tagged.tpf +++ b/required/latex-lab/testfiles/superscript-tagged.tpf @@ -435,7 +435,7 @@ endobj << /Kids [50 0 R] >> endobj 7 0 obj -<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /section-number /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> +<< /Artifact /Private /DocumentFragment /Art /Aside /Note /H7 /H6 /H8 /H6 /H9 /H6 /H10 /H6 /Title /P /FENote /Note /Sub /Span /Em /Span /Strong /Span /title /P /part /P /section /H1 /subsection /H2 /subsubsection /H3 /paragraph /H4 /subparagraph /H5 /list /L /itemize /L /enumerate /L /description /L /quote /BlockQuote /quotation /BlockQuote /verbatim /Code /item /LI /itemlabel /Lbl /itembody /LBody /footnote /Note /footnotemark /Lbl /footnotelabel /Lbl /text-unit /Part /text /P /semantic-para /Part /text-block /P /text-fragment /Span /text-parbox /Div /text-minipage /Div /heading-parbox /Span /heading-minipage /Span /heading-number /Lbl /heading-fragment /Span /theorem-like /Sect /codeline /Span /float /Note /figures /Sect /tables /Sect >> endobj 52 0 obj << /justify <> @@ -456,7 +456,7 @@ endobj << /Type /Namespace /NS (http://www.w3.org/1998/Math/MathML) >> endobj 16 0 obj -<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /section-number [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> +<< /title [/Title 11 0 R] /part [/Title 11 0 R] /section [/H1 11 0 R] /subsection [/H2 11 0 R] /subsubsection [/H3 11 0 R] /paragraph [/H4 11 0 R] /subparagraph [/H5 11 0 R] /list [/L 11 0 R] /itemize [/L 11 0 R] /enumerate [/L 11 0 R] /description [/L 11 0 R] /quote [/BlockQuote 9 0 R] /quotation [/BlockQuote 9 0 R] /verbatim [/Code 9 0 R] /item [/LI 11 0 R] /itemlabel [/Lbl 11 0 R] /itembody [/LBody 11 0 R] /footnote [/FENote 11 0 R] /footnotemark [/Lbl 11 0 R] /footnotelabel [/Lbl 11 0 R] /text-unit [/Part 11 0 R] /text [/P 11 0 R] /semantic-para [/Part 11 0 R] /text-block [/P 11 0 R] /text-fragment [/Span 11 0 R] /text-parbox [/Div 11 0 R] /text-minipage [/Div 11 0 R] /heading-parbox [/Span 11 0 R] /heading-minipage [/Span 11 0 R] /heading-number [/Lbl 11 0 R] /heading-fragment [/Span 11 0 R] /theorem-like [/Sect 11 0 R] /codeline [/Sub 11 0 R] /float [/Aside 11 0 R] /figures [/Sect 11 0 R] /tables [/Sect 11 0 R] >> endobj 15 0 obj << /Type /Namespace /NS (https://www.latex-project.org/ns/dflt) /RoleMapNS 16 0 R >> @@ -1002,45 +1002,45 @@ xref 0000016389 00000 n 0000016411 00000 n 0000016433 00000 n -0000021410 00000 n +0000021669 00000 n 0000016525 00000 n 0000016981 00000 n -0000019356 00000 n -0000017874 00000 n +0000019615 00000 n +0000017981 00000 n 0000000012 00000 f -0000017942 00000 n +0000018049 00000 n 0000000014 00000 f -0000018012 00000 n +0000018119 00000 n 0000000020 00000 f -0000018892 00000 n -0000018093 00000 n -0000019165 00000 n -0000018994 00000 n -0000019267 00000 n +0000019151 00000 n +0000018200 00000 n +0000019424 00000 n +0000019253 00000 n +0000019526 00000 n 0000000000 00000 f -0000019417 00000 n -0000019538 00000 n -0000019627 00000 n -0000019716 00000 n -0000019820 00000 n +0000019676 00000 n +0000019797 00000 n +0000019886 00000 n +0000019975 00000 n +0000020079 00000 n 0000013470 00000 n -0000020001 00000 n -0000020139 00000 n -0000020243 00000 n -0000020424 00000 n -0000020562 00000 n -0000020666 00000 n -0000020847 00000 n -0000020985 00000 n -0000021089 00000 n -0000021271 00000 n +0000020260 00000 n +0000020398 00000 n +0000020502 00000 n +0000020683 00000 n +0000020821 00000 n +0000020925 00000 n +0000021106 00000 n +0000021244 00000 n +0000021348 00000 n +0000021530 00000 n 0000000015 00000 n 0000013605 00000 n 0000012181 00000 n -0000045614 00000 n -0000043348 00000 n -0000046505 00000 n -0000046669 00000 n +0000045873 00000 n +0000043607 00000 n +0000046764 00000 n +0000046928 00000 n 0000013693 00000 n 0000014158 00000 n 0000014363 00000 n @@ -1049,27 +1049,27 @@ xref 0000016489 00000 n 0000016645 00000 n 0000016944 00000 n -0000017640 00000 n -0000021547 00000 n -0000041148 00000 n -0000021569 00000 n -0000021605 00000 n -0000022062 00000 n -0000024726 00000 n -0000024944 00000 n -0000030212 00000 n -0000030437 00000 n -0000040906 00000 n -0000041259 00000 n -0000043525 00000 n -0000045792 00000 n -0000046728 00000 n -0000046853 00000 n +0000017747 00000 n +0000021806 00000 n +0000041407 00000 n +0000021828 00000 n +0000021864 00000 n +0000022321 00000 n +0000024985 00000 n +0000025203 00000 n +0000030471 00000 n +0000030696 00000 n +0000041165 00000 n +0000041518 00000 n +0000043784 00000 n +0000046051 00000 n +0000046987 00000 n +0000047112 00000 n trailer << /Size 68 /Root 66 0 R /Info 67 0 R /ID [<9BD18DF3359C1216B83ADB4AA401CC9A> <9BD18DF3359C1216B83ADB4AA401CC9A>] >> startxref -46985 +47244 %%EOF