diff --git a/ChangeLog.txt b/ChangeLog.txt index 3972db3..e862500 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,9 @@ +2026-02-22 Ulrike Fischer + * hyperref-linktarget.dtx: do not create targets when measuring. + * hyperref-linktarget.dtx: use the hyp/raisedlink also in MakelinkTarget for better varwidth support%. + * hyperref.dtx: use \MakeLinkTarget in \hyper@refstepcounter + * hyperref.dtx: use \MakeLinkTarget in \phantomsection + Version 2026-01-29 v7.01p / v2.58 2026-01-10 Ulrike Fischer diff --git a/hyperref-linktarget.dtx b/hyperref-linktarget.dtx index 8baeb46..2ddb0a9 100644 --- a/hyperref-linktarget.dtx +++ b/hyperref-linktarget.dtx @@ -87,6 +87,8 @@ % next \cs{label}. % A target name must be unique across a document. It is up to the users and package % authors to ensure this by following the advice given below. +% +% Targets are not created if \cs{ifmeasuring@} is true. % % \begin{doccomment} % A global \cs{@currentHref} means that the target name and @@ -287,8 +289,8 @@ % \end{syntax} % \end{function} % -% -% This commands allows to switch on and off locally the creation of a target with +% Targets are not created if \cs{ifmeasuring@} is true. With +% these commands it is also possible to switch on and off locally the creation of a target with % \cs{MakeLinkTarget}. % The switches are also honored by \cs{refstepcounter}\footnote{currently % \cs{refstepcounter} doesn't use \cs{MakeLinkTarget} itself but this @@ -408,11 +410,12 @@ % TODO: The code to save/restore the space factor should % be replaced by kernel methods. % change 2024-11-06: add a kern, see thm-anchor test. +% change 2026-02-22: use the hyp/raisedlink socket for varwidth support. % \begin{macrocode} \cs_new_protected:Npn \@@_target_raise:n #1 { \mode_if_vertical:TF - { #1 } + { \UseSocket{hyp/raisedlink}{#1} }% { \Hy@SaveSpaceFactor \penalty\@M @@ -468,7 +471,9 @@ % \begin{macrocode} \RenewDocumentCommand\MakeLinkTarget {s O{} m} { - \bool_if:NT \l_@@_target_create_bool + \bool_lazy_and:nnT + { \l_@@_target_create_bool } + { ! \legacy_if_p:n { measuring@ } } { \group_begin: \hook_use:n { makelinktarget } diff --git a/hyperref.dtx b/hyperref.dtx index eecbd49..445c0d6 100644 --- a/hyperref.dtx +++ b/hyperref.dtx @@ -4364,9 +4364,7 @@ % Packages like varwidth need an option to change the handling in vmode. % (Issue \#204). With a new format we therefore insert a socket. % \begin{macrocode} -\@ifl@t@r\fmtversion{2023-11-01} - {\NewSocket{hyp/raisedlink}{1}} - {\providecommand\UseSocket[2]{#2}} +\NewSocket{hyp/raisedlink}{1} \def\Hy@raisedlink#1{% \ifvmode \UseSocket{hyp/raisedlink}{#1}% @@ -9569,81 +9567,14 @@ % to a document without having to remove .aux and .toc files % (this section is by David Carlisle) % All the code is delayed to |\begin{document}| -% change 2023-08-13: with a new format it is no longer -% needed to handle different |\newlabel| -% definitions. The code can be removed completely later. -% \begin{macrocode} -%<*package> -\@ifl@t@r\fmtversion{2023-06-01}{} - { - \Hy@AtBeginDocument{% -% \end{macrocode} -% First the code to deal with removing the hyperref package from -% a document. -% -% Write some stuff into the aux file so if the next run is done -% without hyperref, then |\newlabel| is defined -% to cope with the extra arguments. -% change 2022-03-28: removed the code for |\contentsline|, it is no -% longer needed as |\contentsline| has now always four arguments. -% \begin{macrocode} - \if@filesw - \immediate\write\@auxout{% - \string\providecommand\string\HyperFirstAtBeginDocument{% - \string\AtBeginDocument}^^J% - \string\HyperFirstAtBeginDocument{% - \string\ifx\string\hyper@anchor\string\@undefined^^J% - \string\global\string\let\string\oldnewlabel\string\newlabel^^J% - \string\gdef\string\newlabel\string#1\string#2{% - \string\newlabelxx{\string#1}\string#2}^^J% - \string\gdef\string\newlabelxx% - \string#1\string#2\string#3\string#4\string#5\string#6{% - \string\oldnewlabel{\string#1}{{\string#2}{\string#3}}}^^J% -% \end{macrocode} -% -% But the new aux file will be read again at the end, with the normal -% definitions expected, so better put things back as they were. -% \begin{macrocode} - \string\AtEndDocument{% - \string\ifx\string\hyper@anchor\string\@undefined^^J% - \string\let\string\newlabel\string\oldnewlabel^^J% - \string\fi% - }^^J% -% \end{macrocode} -% -% If the document is being run with hyperref put this definition -% into the aux file, so we can spot it on the next run. -% \begin{macrocode} - \string\fi% - }^^J% - \string\global\string\let\string\hyper@last\relax^^J% - \string\gdef\string\HyperFirstAtBeginDocument\string#1{\string#1}% - }% - \fi - \let\HyperFirstAtBeginDocument\@firstofone -% \end{macrocode} -% -% Now the code to deal with adding the hyperref package to a document -% with aux and toc written the standard way. -% -% If hyperref was used last time, do nothing. -% change 2022-03-28: removed the test for an old toc. -% |\contentsline| -% has now always four arguments. -% \begin{macrocode} - \ifx\hyper@last\@undefined - \def\newlabel#1#2{\@newl@bel r{#1}{#2{}{}{}{}}}% - \fi - } -} -% \end{macrocode} -% +% change 2026-02-22: removed code for different |\newlabel| definitions. % \section{Title strings} % % If options |pdftitle| and |pdfauthor| are not used, % these data for the pdf information dictionary % can be extracted by the \cmd{\title} and \cmd{\author}. % \begin{macrocode} +%<*package> \ifHy@pdfusetitle \let\HyOrg@title\title \let\HyOrg@author\author @@ -10358,35 +10289,9 @@ \fi } % \end{macrocode} -% change 2024-10-13: do not define if format is new enough. -% \begin{macrocode} -\IfFormatAtLeastTF{2024-11-01}{} - { - \Hy@CounterExists{section}{% - \providecommand\theHequation{\theHsection.\arabic{equation}}% - } - \providecommand\theHequation{\arabic{equation}}% - \Hy@CounterExists{part}{% - \providecommand\theHpart{\arabic{part}}% - } - \@ifundefined{thechapter}{% - \providecommand\theHsection {\arabic{section}}% - \providecommand\theHfigure {\arabic{figure}}% - \providecommand\theHtable {\arabic{table}}% - }{% - \providecommand\theHchapter {\arabic{chapter}}% - \providecommand\theHfigure {\theHchapter.\arabic{figure}}% - \providecommand\theHtable {\theHchapter.\arabic{table}}% - \providecommand\theHsection {\theHchapter.\arabic{section}}% - } - \providecommand\theHsubsection {\theHsection.\arabic{subsection}} - \providecommand\theHsubsubsection{\theHsubsection.\arabic{subsubsection}} - \providecommand\theHparagraph {\theHsubsubsection.\arabic{paragraph}} - \providecommand\theHsubparagraph {\theHparagraph.\arabic{subparagraph}} - \providecommand\theHtheorem {\theHsection.\arabic{theorem}} - \providecommand\theHthm {\theHsection.\arabic{thm}} - } -% \end{macrocode} +% change 2026-02-22: removed definitions provided for format before +% 2024-11-01 +% % Thanks to Greta Meyer (gbd@pop.cwru.edu) for making me realize % that enumeration starts at 0 for every list! But |\item| % occurs inside |\trivlist|, so check if its a real |\item| before @@ -10394,8 +10299,6 @@ % \begin{macrocode} \let\H@item\item \newcounter{Item} -\IfFormatAtLeastTF{2024-11-01}{} - {\def\theHItem{\arabic{Item}}} \def\item{% \@hyper@itemfalse \if@nmbrlist\@hyper@itemtrue\fi @@ -10403,17 +10306,6 @@ } % \end{macrocode} % -% \begin{macrocode} -\IfFormatAtLeastTF{2024-11-01}{} - { - \providecommand\theHenumi {\theHItem} - \providecommand\theHenumii {\theHItem} - \providecommand\theHenumiii {\theHItem} - \providecommand\theHenumiv {\theHItem} - \providecommand\theHHfootnote {\arabic{Hfootnote}} - \providecommand\theHmpfootnote{\arabic{mpfootnote}} - } -% \end{macrocode} % Tanmoy asked for this default handling of undefined |\theH| % situations. It really isn't clear what would be ideal, whether to % turn off hyperizing of unknown elements, to pick up the textual @@ -10437,66 +10329,41 @@ \@hyper@itemfalse \@skiphyperreffalse \ExplSyntaxOn -\IfFormatAtLeastTF{2024-11-01} - { - \NewSocketPlug{refstepcounter}{hyperref}{\ifHy@pdfstring\else#1\fi} - \AssignSocketPlug{refstepcounter}{hyperref} +\NewSocketPlug{refstepcounter}{hyperref}{\ifHy@pdfstring\else#1\fi} +\AssignSocketPlug{refstepcounter}{hyperref} % \end{macrocode} % change 2024-11-05: cleveref relies on refstepcounter to update its data. % \begin{macrocode} - \AddToHook{package/cleveref/after} - { - \@ifpackagelater{cleveref}{2018/03/28}{} - { - \NewSocketPlug{refstepcounter}{hyperref/fixcleveref} - {\ifHy@pdfstring\else - #1% - {\firstaid@cref@updatelabeldata{\@currentcounter}}% - \fi} - \AssignSocketPlug{refstepcounter}{hyperref/fixcleveref} - } - } - \NewSocketPlug{refstepcounter/target}{hyperref} +\AddToHook{package/cleveref/after} + { + \@ifpackagelater{cleveref}{2018/03/28}{} { - \bool_lazy_and:nnT - { \l__hyp_target_create_bool } - { ! \legacy_if_p:n{@skiphyperref} } - { - \legacy_if:nTF {@hyper@item} - { - \stepcounter{Item}% - \hyper@refstepcounter{Item}% - \@hyper@itemfalse - } - { - \hyper@refstepcounter{\@currentcounter}% - } - } - } - \AssignSocketPlug{refstepcounter/target}{hyperref} - } + \NewSocketPlug{refstepcounter}{hyperref/fixcleveref} + {\ifHy@pdfstring\else + #1% + {\firstaid@cref@updatelabeldata{\@currentcounter}}% + \fi} + \AssignSocketPlug{refstepcounter}{hyperref/fixcleveref} + } + } +\NewSocketPlug{refstepcounter/target}{hyperref} { - \def\refstepcounter#1{% - \legacy_if:nF {Hy@pdfstring} - { - \H@refstepcounter{#1}% - \bool_lazy_and:nnT - { \l__hyp_target_create_bool } - { ! \legacy_if_p:n{@skiphyperref} } - { - \legacy_if:nTF {@hyper@item} - { - \stepcounter{Item}% - \hyper@refstepcounter{Item}% - \@hyper@itemfalse - } - { - \hyper@refstepcounter{#1}% - } - } - } + \bool_lazy_and:nnT + { \l__hyp_target_create_bool } + { ! \legacy_if_p:n{@skiphyperref} } + { + \legacy_if:nTF {@hyper@item} + { + \stepcounter{Item}% + \hyper@refstepcounter{Item}% + \@hyper@itemfalse + } + { + \hyper@refstepcounter{\@currentcounter}% + } } - } + } +\AssignSocketPlug{refstepcounter/target}{hyperref} \ExplSyntaxOff \let\Hy@saved@refstepcounter\refstepcounter % \end{macrocode} @@ -10518,15 +10385,9 @@ % \end{macrocode} % % \begin{macro}{\hyper@refstepcounter} +% changed 2026-02-22 to use \cs{MakeLinkTarget} % \begin{macrocode} -\def\hyper@refstepcounter#1{% - \HyCnt@ProvideTheHCounter{#1}% - \hyper@makecurrent{#1}% - \Hy@ifnotmeasuring - {\Hy@raisedlink{% - \hyper@anchorstart{\@currentHref}\hyper@anchorend - }}% -} +\def\hyper@refstepcounter#1{\ifHy@hypertexnames\MakeLinkTarget{#1}\else\MakeLinkTarget[#1]{} \fi} % \end{macrocode} % \end{macro} % \begin{macro}{\Hy@ProvideTheHCounter} @@ -10777,14 +10638,11 @@ % We use a socket for this. % % \begin{macrocode} -\@ifl@t@r\fmtversion{2023-11-01} +\AddToHook{package/varwidth/after} { - \AddToHook{package/varwidth/after} - { - \NewSocketPlug{hyp/raisedlink}{varwidth}{\@vwid@wrap{#1}} - \appto\@vwid@setup{\AssignSocketPlug{hyp/raisedlink}{varwidth}} - } - }{} + \NewSocketPlug{hyp/raisedlink}{varwidth}{\@vwid@wrap{#1}} + \appto\@vwid@setup{\AssignSocketPlug{hyp/raisedlink}{varwidth}} + } % \end{macrocode} % \section{Package titlesec and titletoc support} % @@ -11520,7 +11378,7 @@ % as the anchor are set manually here, we have to update the tagging info. % For now we test for the format but this should go again in 2025. % \begin{macrocode} - \IfFormatAtLeastTF{2024-11-01}{\UseTaggingSocket{recordtarget}}{}% + \UseTaggingSocket{recordtarget}% }% \fi \par @@ -12156,32 +12014,8 @@ % change 2024-02-14: use a csname to handle counter names with commands, % see issue \#330 % change 2024-10-13: disable patches in new format 2024-11-01. -% \begin{macrocode} -\IfFormatAtLeastTF{2024-11-01}{\def\hyper@nopatch@counter{}}{} -\@ifundefined{hyper@nopatch@counter} - { - \let\H@definecounter\@definecounter - \def\@definecounter#1{% - \H@definecounter{#1}% - \expandafter - \gdef\csname theH#1\expandafter\endcsname\expandafter - {\expandafter\@arabic\csname c@#1\endcsname}}% - }{} -% \end{macrocode} -% But what if they have used the optional argument to e.g. |\newtheorem| -% to determine when the numbering is reset? OK, we'll trap that too. -% \begin{macrocode} -\@ifundefined{hyper@nopatch@counter} - { - \let\H@newctr\@newctr - \def\@newctr#1[#2]{% - \H@newctr#1[{#2}]% - \expandafter\gdef\csname theH#1\endcsname{% - \csname the\@ifundefined{theH#2}{}{H}#2\endcsname.\arabic{#1}% - }% - } - }{} -% \end{macrocode} +% change 2026-02-22: removed patches fully. +% % \section{AMS\LaTeX\ compatibility}\label{ams} % Oh, no, they don't use anything as simple as |\refstepcounter| % in the AMS! We need to intercept some low-level operations @@ -19413,11 +19247,10 @@ % We do the \emph{same} for |\@ssect|, giving anchors to % unnumbered sections. This allows things like bibliographies % to get bookmarks when used with a manual |\addcontentsline| +% +% change 2026-02-22: Use \cs{MakeLinkTarget} % \begin{macrocode} -\def\phantomsection{% - \Hy@MakeCurrentHrefAuto{section*}% - \Hy@raisedlink{\hyper@anchorstart{\@currentHref}\hyper@anchorend}% -} +\def\phantomsection{\MakeLinkTarget[section]{}} % % \end{macrocode} % diff --git a/testfiles-3/test1-pdf.luatex.tpf b/testfiles-3/test1-pdf.luatex.tpf index 057bdaf..e936439 100644 --- a/testfiles-3/test1-pdf.luatex.tpf +++ b/testfiles-3/test1-pdf.luatex.tpf @@ -13,79 +13,79 @@ endobj (\376\377\000\040\000L\000I\000S\000T\000\040\000O\000F\000\040\000F\000I\000G\000U\000R\000E\000S) endobj 9 0 obj -<< /S /GoTo /D (chapter.4) >> +<< /S /GoTo /D (chapter*.4) >> endobj 12 0 obj (\376\377\0001\000\040\000F\000i\000r\000s\000t\000\040\000p\000a\000r\000t) endobj 13 0 obj -<< /S /GoTo /D (section.5) >> +<< /S /GoTo /D (section*.5) >> endobj 16 0 obj (\376\377\0001\000.\0001\000\040\000T\000e\000s\000t\000\040\000s\000e\000c\000t\000i\000o\000n) endobj 17 0 obj -<< /S /GoTo /D (section.6) >> +<< /S /GoTo /D (section*.6) >> endobj 20 0 obj (\376\377\0001\000.\0002\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000O\000n\000e\000\040\040\024\000\040\000c\000a\000t\000s) endobj 21 0 obj -<< /S /GoTo /D (section.7) >> +<< /S /GoTo /D (section*.7) >> endobj 24 0 obj (\376\377\0001\000.\0003\000\040\000o\000n\000e\000.\0001\000\040\040\023\000\040\000c\000a\000n\000\040\000w\000e\000\040\000s\000e\000e) endobj 25 0 obj -<< /S /GoTo /D (section.11) >> +<< /S /GoTo /D (section*.11) >> endobj 28 0 obj (\376\377\0001\000.\0004\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000T\000w\000o\000\040\040\024\000\040\000T\000e\000X\000\040\000i\000s\000\040\000a\000\040\000d\000o\000g) endobj 29 0 obj -<< /S /GoTo /D (chapter.14) >> +<< /S /GoTo /D (chapter*.14) >> endobj 32 0 obj (\376\377\0002\000\040\000S\000e\000c\000o\000n\000d\000\040\000p\000a\000r\000t) endobj 33 0 obj -<< /S /GoTo /D (section.15) >> +<< /S /GoTo /D (section*.15) >> endobj 36 0 obj (\376\377\0002\000.\0001\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000T\000h\000r\000e\000e\000\040\040\024\000\040\000C\000a\000m\000e\000l\000s) endobj 37 0 obj -<< /S /GoTo /D (section.19) >> +<< /S /GoTo /D (section*.19) >> endobj 40 0 obj (\376\377\0002\000.\0002\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000F\000o\000u\000r\000\040\040\024\000\040\000B\000u\000t\000t\000e\000r\000f\000l\000i\000e\000s) endobj 41 0 obj -<< /S /GoTo /D (section.22) >> +<< /S /GoTo /D (section*.22) >> endobj 44 0 obj (\376\377\0002\000.\0003\000\040\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n) endobj 45 0 obj -<< /S /GoTo /D (section.25) >> +<< /S /GoTo /D (section*.25) >> endobj 48 0 obj (\376\377\0002\000.\0004\000\040\000t\000w\000o) endobj 49 0 obj -<< /S /GoTo /D (section.28) >> +<< /S /GoTo /D (section*.28) >> endobj 52 0 obj (\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e) endobj 53 0 obj -<< /S /GoTo /D (section.31) >> +<< /S /GoTo /D (section*.31) >> endobj 56 0 obj (\376\377\0002\000.\0006\000\040\000S\000o\000m\000e\000\040\000U\000R\000L\000s) endobj 57 0 obj -<< /S /GoTo /D (section.32) >> +<< /S /GoTo /D (section*.32) >> endobj 60 0 obj (\376\377\0002\000.\0007\000\040\000B\000a\000c\000k\000\040\000t\000o\000\040\000m\000a\000t\000h) @@ -268,43 +268,43 @@ endobj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 452.278 508.37 460.543 517.508 ]/A << /S /GoTo /D (chapter*.3) >> >> endobj 80 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 452.278 483.792 460.543 493.05 ]/A << /S /GoTo /D (chapter.4) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 452.278 483.792 460.543 493.05 ]/A << /S /GoTo /D (chapter*.4) >> >> endobj 81 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 470.122 460.543 479.62 ]/A << /S /GoTo /D (section.5) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 470.122 460.543 479.62 ]/A << /S /GoTo /D (section*.5) >> >> endobj 82 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 456.573 460.543 466.071 ]/A << /S /GoTo /D (section.6) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 456.573 460.543 466.071 ]/A << /S /GoTo /D (section*.6) >> >> endobj 83 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 443.024 460.543 452.522 ]/A << /S /GoTo /D (section.7) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 443.024 460.543 452.522 ]/A << /S /GoTo /D (section*.7) >> >> endobj 84 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 429.475 460.543 438.973 ]/A << /S /GoTo /D (section.11) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 429.475 460.543 438.973 ]/A << /S /GoTo /D (section*.11) >> >> endobj 85 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 452.278 405.136 460.543 414.624 ]/A << /S /GoTo /D (chapter.14) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 452.278 405.136 460.543 414.624 ]/A << /S /GoTo /D (chapter*.14) >> >> endobj 86 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 391.467 460.543 401.074 ]/A << /S /GoTo /D (section.15) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 391.467 460.543 401.074 ]/A << /S /GoTo /D (section*.15) >> >> endobj 87 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 377.918 460.543 387.416 ]/A << /S /GoTo /D (section.19) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 377.918 460.543 387.416 ]/A << /S /GoTo /D (section*.19) >> >> endobj 88 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 364.369 460.543 373.867 ]/A << /S /GoTo /D (section.22) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 453.096 364.369 460.543 373.867 ]/A << /S /GoTo /D (section*.22) >> >> endobj 89 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 351.06 460.543 360.318 ]/A << /S /GoTo /D (section.25) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 351.06 460.543 360.318 ]/A << /S /GoTo /D (section*.25) >> >> endobj 90 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 337.51 460.543 346.768 ]/A << /S /GoTo /D (section.28) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 337.51 460.543 346.768 ]/A << /S /GoTo /D (section*.28) >> >> endobj 91 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 323.721 460.543 333.219 ]/A << /S /GoTo /D (section.31) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 323.721 460.543 333.219 ]/A << /S /GoTo /D (section*.31) >> >> endobj 92 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 310.412 460.543 319.79 ]/A << /S /GoTo /D (section.32) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 310.412 460.543 319.79 ]/A << /S /GoTo /D (section*.32) >> >> endobj 93 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 446.005 285.834 460.543 295.092 ]/A << /S /GoTo /D (chapter*.46) >> >> @@ -381,7 +381,7 @@ endobj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 250.234 509.076 307.284 518.88 ]/A << /S /GoTo /D (cite.Dallas:aia) >> >> endobj 108 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 369.59 506.589 385.524 519.491 ]/A << /S /GoTo /D (section.22) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 369.59 506.589 385.524 519.491 ]/A << /S /GoTo /D (section*.22) >> >> endobj 109 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 447.641 509.076 460.543 518.574 ]/A << /S /GoTo /D (table.2.1) >> >> @@ -629,19 +629,19 @@ endobj [ 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R 146 0 R ] endobj 136 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 99.895 497.723 231.028 516.719 ]/A << /S /GoTo /D (section.5) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 99.895 497.723 231.028 516.719 ]/A << /S /GoTo /D (section*.5) >> >> endobj 137 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 378.101 436.443 454.259 452.796 ]/A << /S /GoTo /D (section.6) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 378.101 436.443 454.259 452.796 ]/A << /S /GoTo /D (section*.6) >> >> endobj 138 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 152.117 395.416 204.466 407.226 ]/A << /S /GoTo /D (section.5) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 152.117 395.416 204.466 407.226 ]/A << /S /GoTo /D (section*.5) >> >> endobj 139 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 246.71 395.416 254.157 407.226 ]/A << /S /GoTo /D (section.5) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 246.71 395.416 254.157 407.226 ]/A << /S /GoTo /D (section*.5) >> >> endobj 140 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 153.928 335.848 219.553 348.749 ]/A << /S /GoTo /D (section.15) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 153.928 335.848 219.553 348.749 ]/A << /S /GoTo /D (section*.15) >> >> endobj 141 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 319.735 338.575 327.182 347.833 ]/A << /S /GoTo /D (cite.Barcelo:1992:caa) >> >> @@ -870,7 +870,7 @@ endobj [ 182 0 R 183 0 R ] endobj 182 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 117.514 445.58 169.862 454.958 ]/A << /S /GoTo /D (section.6) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 117.514 445.58 169.862 454.958 ]/A << /S /GoTo /D (section*.6) >> >> endobj 183 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 223.277 395.75 230 407.121 ]/A << /S /GoTo /D (Hfootnote.17) >> >> @@ -1137,16 +1137,16 @@ endobj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 411.632 443.375 468.683 453.178 ]/A << /S /GoTo /D (cite.Dallas:aia) >> >> endobj 220 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 306.613 195.781 359.257 208.683 ]/A << /S /GoTo /D (section.22) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 306.613 195.781 359.257 208.683 ]/A << /S /GoTo /D (section*.22) >> >> endobj 221 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 443.795 195.781 511.352 208.683 ]/A << /S /GoTo /D (subsection.24) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 443.795 195.781 511.352 208.683 ]/A << /S /GoTo /D (subsection*.24) >> >> endobj 240 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 151.701 183.228 166.243 194.137 ]/A << /S /GoTo /D (subsection.24) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 151.701 183.228 166.243 194.137 ]/A << /S /GoTo /D (subsection*.24) >> >> endobj 222 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 244.087 182.232 296.436 195.133 ]/A << /S /GoTo /D (section.25) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 244.087 182.232 296.436 195.133 ]/A << /S /GoTo /D (section*.25) >> >> endobj 223 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 376.785 184.959 384.232 194.217 ]/A << /S /GoTo /D (cite.Barcelo:1992:caa) >> >> @@ -1155,7 +1155,7 @@ endobj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 388.905 184.719 445.956 194.523 ]/A << /S /GoTo /D (cite.Dallas:aia) >> >> endobj 226 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 230.641 121.539 301.361 132.739 ]/A << /S /GoTo /D (equation.33) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 230.641 121.539 301.361 132.739 ]/A << /S /GoTo /D (equation*.33) >> >> endobj 239 0 obj << /D [ 237 0 R /XYZ 150.701 697.09 null ] >> @@ -1595,25 +1595,25 @@ endobj [ 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R ] endobj 284 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 191.45 650.274 223.737 662.063 ]/A << /S /GoTo /D (Item.41) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 191.45 650.274 223.737 662.063 ]/A << /S /GoTo /D (Item*.41) >> >> endobj 285 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 228.41 650.274 235.857 662.063 ]/A << /S /GoTo /D (Item.42) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 228.41 650.274 235.857 662.063 ]/A << /S /GoTo /D (Item*.42) >> >> endobj 286 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 240.53 650.274 253.432 662.063 ]/A << /S /GoTo /D (Item.44) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 240.53 650.274 253.432 662.063 ]/A << /S /GoTo /D (Item*.44) >> >> endobj 287 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 276.29 650.274 314.643 662.063 ]/A << /S /GoTo /D (Item.45) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 276.29 650.274 314.643 662.063 ]/A << /S /GoTo /D (Item*.45) >> >> endobj 288 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 161.709 636.583 214.02 648.514 ]/A << /S /GoTo /D (section.22) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 161.709 636.583 214.02 648.514 ]/A << /S /GoTo /D (section*.22) >> >> endobj 289 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 242.92 636.583 295.231 648.514 ]/A << /S /GoTo /D (section.25) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 242.92 636.583 295.231 648.514 ]/A << /S /GoTo /D (section*.25) >> >> endobj 290 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 320.749 636.583 383.783 648.514 ]/A << /S /GoTo /D (equation.33) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 320.749 636.583 383.783 648.514 ]/A << /S /GoTo /D (equation*.33) >> >> endobj 291 0 obj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 410.217 636.583 460.543 648.514 ]/A << /S /GoTo /D (figure.29) >> >> @@ -1699,7 +1699,7 @@ endobj << /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[0 1 0] /Rect [ 342.629 652.14 399.679 661.943 ]/A << /S /GoTo /D (cite.Dallas:aia) >> >> endobj 302 0 obj -<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 460.091 649.653 476.025 662.554 ]/A << /S /GoTo /D (section.22) >> >> +<< /Type /Annot /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [ 460.091 649.653 476.025 662.554 ]/A << /S /GoTo /D (section*.22) >> >> endobj 306 0 obj << /D [ 304 0 R /XYZ 150.701 697.09 null ] >> @@ -3106,13 +3106,13 @@ endobj << /Title 4 0 R /A 1 0 R /Parent 442 0 R /Next 7 0 R >> endobj 443 0 obj -<< /Names [ (Doc-Start) 70 0 R (Hfootnote.17) 190 0 R (Hfootnote.8) 157 0 R (Hfootnote.9) 159 0 R (Item.36) 274 0 R (Item.37) 275 0 R (Item.38) 276 0 R (Item.39) 277 0 R (Item.40) 278 0 R (Item.41) 279 0 R (Item.42) 280 0 R (Item.43) 281 0 R (Item.44) 282 0 R (Item.45) 283 0 R (chapter*.1) 98 0 R (chapter*.2) 114 0 R (chapter*.3) 6 0 R (chapter*.46) 62 0 R (chapter*.47) 359 0 R (chapter.14) 30 0 R (chapter.4) 10 0 R (cite.Barcelo:1992:caa) 161 0 R (cite.Dallas:aia) 116 0 R (cite.stankovic:88) 325 0 R (equation.2.2) 315 0 R (equation.33) 242 0 R (equation.34) 271 0 R (equation.35) 273 0 R (figure.29) 130 0 R (figure.30) 131 0 R (page.1) 69 0 R (page.10) 166 0 R ] /Limits [ (Doc-Start) (page.10) ] >> +<< /Names [ (Doc-Start) 70 0 R (Hfootnote.17) 190 0 R (Hfootnote.8) 157 0 R (Hfootnote.9) 159 0 R (Item*.36) 274 0 R (Item*.37) 275 0 R (Item*.38) 276 0 R (Item*.39) 277 0 R (Item*.40) 278 0 R (Item*.41) 279 0 R (Item*.42) 280 0 R (Item*.43) 281 0 R (Item*.44) 282 0 R (Item*.45) 283 0 R (chapter*.1) 98 0 R (chapter*.14) 30 0 R (chapter*.2) 114 0 R (chapter*.3) 6 0 R (chapter*.4) 10 0 R (chapter*.46) 62 0 R (chapter*.47) 359 0 R (cite.Barcelo:1992:caa) 161 0 R (cite.Dallas:aia) 116 0 R (cite.stankovic:88) 325 0 R (equation*.33) 242 0 R (equation*.34) 271 0 R (equation.2.2) 315 0 R (equation.35) 273 0 R (figure.29) 130 0 R (figure.30) 131 0 R (page.1) 69 0 R (page.10) 166 0 R ] /Limits [ (Doc-Start) (page.10) ] >> endobj 444 0 obj -<< /Names [ (page.11) 172 0 R (page.12) 180 0 R (page.13) 187 0 R (page.14) 196 0 R (page.15) 204 0 R (page.16) 210 0 R (page.17) 217 0 R (page.18) 239 0 R (page.19) 246 0 R (page.2) 77 0 R (page.20) 268 0 R (page.21) 296 0 R (page.22) 306 0 R (page.23) 313 0 R (page.24) 319 0 R (page.25) 323 0 R (page.26) 329 0 R (page.27) 333 0 R (page.28) 337 0 R (page.29) 341 0 R (page.3) 97 0 R (page.30) 345 0 R (page.31) 349 0 R (page.32) 354 0 R (page.33) 358 0 R (page.4) 105 0 R (page.5) 113 0 R (page.6) 121 0 R (page.7) 128 0 R (page.8) 135 0 R (page.9) 151 0 R (section.11) 26 0 R ] /Limits [ (page.11) (section.11) ] >> +<< /Names [ (page.11) 172 0 R (page.12) 180 0 R (page.13) 187 0 R (page.14) 196 0 R (page.15) 204 0 R (page.16) 210 0 R (page.17) 217 0 R (page.18) 239 0 R (page.19) 246 0 R (page.2) 77 0 R (page.20) 268 0 R (page.21) 296 0 R (page.22) 306 0 R (page.23) 313 0 R (page.24) 319 0 R (page.25) 323 0 R (page.26) 329 0 R (page.27) 333 0 R (page.28) 337 0 R (page.29) 341 0 R (page.3) 97 0 R (page.30) 345 0 R (page.31) 349 0 R (page.32) 354 0 R (page.33) 358 0 R (page.4) 105 0 R (page.5) 113 0 R (page.6) 121 0 R (page.7) 128 0 R (page.8) 135 0 R (page.9) 151 0 R (section*.11) 26 0 R ] /Limits [ (page.11) (section*.11) ] >> endobj 445 0 obj -<< /Names [ (section.15) 34 0 R (section.19) 38 0 R (section.22) 42 0 R (section.25) 46 0 R (section.28) 50 0 R (section.31) 54 0 R (section.32) 58 0 R (section.5) 14 0 R (section.6) 18 0 R (section.7) 22 0 R (subsection.10) 155 0 R (subsection.12) 173 0 R (subsection.13) 174 0 R (subsection.16) 188 0 R (subsection.18) 189 0 R (subsection.20) 197 0 R (subsection.21) 198 0 R (subsection.23) 205 0 R (subsection.24) 211 0 R (subsection.26) 218 0 R (subsection.27) 219 0 R (table.2.1) 117 0 R (test.test1) 200 0 R (testpiccy) 213 0 R (tit.0) 2 0 R ] /Limits [ (section.15) (tit.0) ] >> +<< /Names [ (section*.15) 34 0 R (section*.19) 38 0 R (section*.22) 42 0 R (section*.25) 46 0 R (section*.28) 50 0 R (section*.31) 54 0 R (section*.32) 58 0 R (section*.5) 14 0 R (section*.6) 18 0 R (section*.7) 22 0 R (subsection*.10) 155 0 R (subsection*.12) 173 0 R (subsection*.13) 174 0 R (subsection*.16) 188 0 R (subsection*.18) 189 0 R (subsection*.20) 197 0 R (subsection*.21) 198 0 R (subsection*.23) 205 0 R (subsection*.24) 211 0 R (subsection*.26) 218 0 R (subsection*.27) 219 0 R (table.2.1) 117 0 R (test.test1) 200 0 R (testpiccy) 213 0 R (tit.0) 2 0 R ] /Limits [ (section*.15) (tit.0) ] >> endobj 446 0 obj << /Kids [ 443 0 R 444 0 R 445 0 R ] /Limits [ (Doc-Start) (tit.0) ] >> @@ -3130,456 +3130,456 @@ xref 0 450 0000000299 65535 f 0000000020 00000 n -0000003381 00000 n -0000189613 00000 n +0000003394 00000 n +0000189659 00000 n 0000000061 00000 n 0000000113 00000 n -0000017449 00000 n -0000189529 00000 n +0000017476 00000 n +0000189575 00000 n 0000000159 00000 n 0000000275 00000 n -0000025989 00000 n -0000189407 00000 n -0000000320 00000 n -0000000414 00000 n -0000026052 00000 n -0000189333 00000 n -0000000460 00000 n -0000000574 00000 n -0000026115 00000 n -0000189246 00000 n -0000000620 00000 n -0000000773 00000 n -0000026178 00000 n -0000189159 00000 n -0000000819 00000 n -0000000975 00000 n -0000029228 00000 n -0000189085 00000 n -0000001022 00000 n -0000001224 00000 n -0000032435 00000 n -0000188961 00000 n -0000001271 00000 n -0000001370 00000 n -0000032498 00000 n -0000188887 00000 n -0000001417 00000 n -0000001590 00000 n -0000034244 00000 n -0000188800 00000 n -0000001637 00000 n -0000001830 00000 n -0000035234 00000 n -0000188713 00000 n -0000001877 00000 n -0000001988 00000 n -0000037789 00000 n -0000188626 00000 n -0000002035 00000 n -0000002101 00000 n -0000042615 00000 n -0000188539 00000 n -0000002148 00000 n -0000002224 00000 n -0000051310 00000 n -0000188452 00000 n -0000002271 00000 n -0000002370 00000 n -0000054759 00000 n -0000188378 00000 n -0000002417 00000 n -0000002534 00000 n -0000070438 00000 n -0000188303 00000 n -0000002582 00000 n -0000002670 00000 n -0000003149 00000 n -0000003442 00000 n -0000002720 00000 n -0000003259 00000 n -0000003319 00000 n -0000145617 00000 n -0000141701 00000 n -0000187593 00000 n -0000003852 00000 n -0000003681 00000 n -0000003524 00000 n -0000003791 00000 n -0000137348 00000 n -0000010227 00000 n -0000010380 00000 n -0000010532 00000 n -0000010684 00000 n -0000010837 00000 n -0000010990 00000 n -0000011144 00000 n -0000011298 00000 n -0000011452 00000 n -0000011606 00000 n -0000011760 00000 n -0000011913 00000 n -0000012066 00000 n -0000012220 00000 n -0000012373 00000 n -0000012650 00000 n -0000009975 00000 n -0000003922 00000 n -0000012528 00000 n -0000012588 00000 n -0000125042 00000 n -0000115770 00000 n -0000010101 00000 n -0000013162 00000 n -0000012986 00000 n -0000012745 00000 n -0000013099 00000 n -0000109021 00000 n -0000014286 00000 n -0000014445 00000 n -0000014599 00000 n -0000014879 00000 n -0000014112 00000 n -0000013246 00000 n -0000014753 00000 n -0000014815 00000 n -0000014241 00000 n -0000070565 00000 n -0000063200 00000 n -0000015411 00000 n -0000015235 00000 n -0000014962 00000 n -0000015348 00000 n -0000016920 00000 n -0000017074 00000 n -0000017233 00000 n -0000017511 00000 n -0000016746 00000 n -0000015495 00000 n -0000017387 00000 n -0000016875 00000 n -0000042489 00000 n -0000042553 00000 n -0000017995 00000 n -0000017819 00000 n -0000017594 00000 n -0000017932 00000 n -0000024207 00000 n -0000024360 00000 n -0000024514 00000 n -0000024668 00000 n -0000024821 00000 n -0000024976 00000 n -0000025142 00000 n -0000025297 00000 n -0000025452 00000 n -0000025605 00000 n -0000025766 00000 n -0000027669 00000 n -0000026433 00000 n -0000023969 00000 n -0000018079 00000 n -0000025927 00000 n -0000187025 00000 n -0000187310 00000 n -0000101315 00000 n -0000026241 00000 n -0000099079 00000 n -0000026305 00000 n -0000096856 00000 n -0000026369 00000 n -0000024098 00000 n -0000070501 00000 n -0000027838 00000 n -0000028071 00000 n -0000027503 00000 n -0000026594 00000 n -0000028008 00000 n -0000089755 00000 n -0000027632 00000 n -0000029419 00000 n -0000029052 00000 n -0000028168 00000 n -0000029166 00000 n -0000029291 00000 n -0000029355 00000 n -0000187741 00000 n -0000030186 00000 n -0000030413 00000 n -0000030027 00000 n -0000029515 00000 n -0000030350 00000 n -0000030157 00000 n -0000032068 00000 n -0000032221 00000 n -0000032753 00000 n -0000031901 00000 n -0000030497 00000 n -0000032373 00000 n -0000032561 00000 n -0000032625 00000 n -0000032689 00000 n -0000032031 00000 n -0000034026 00000 n -0000034433 00000 n -0000033867 00000 n -0000032875 00000 n -0000034181 00000 n -0000034307 00000 n -0000034370 00000 n -0000033997 00000 n -0000036862 00000 n -0000035360 00000 n -0000035058 00000 n -0000034529 00000 n -0000035172 00000 n -0000035297 00000 n -0000036581 00000 n -0000036926 00000 n -0000036422 00000 n -0000035456 00000 n -0000036735 00000 n -0000036798 00000 n -0000036552 00000 n -0000042425 00000 n -0000037980 00000 n -0000037613 00000 n -0000037022 00000 n -0000037727 00000 n -0000037852 00000 n -0000037916 00000 n -0000041254 00000 n -0000041409 00000 n -0000041725 00000 n -0000041880 00000 n -0000042046 00000 n -0000041094 00000 n -0000042206 00000 n -0000046211 00000 n -0000046780 00000 n -0000047357 00000 n -0000047926 00000 n -0000048501 00000 n -0000049348 00000 n -0000049924 00000 n -0000050524 00000 n -0000051085 00000 n -0000042678 00000 n -0000040879 00000 n -0000038076 00000 n -0000042362 00000 n -0000041567 00000 n -0000041009 00000 n -0000054822 00000 n -0000051373 00000 n -0000045852 00000 n -0000042787 00000 n -0000051248 00000 n -0000046400 00000 n -0000046591 00000 n -0000046972 00000 n -0000047164 00000 n -0000047546 00000 n -0000047736 00000 n -0000048117 00000 n -0000048309 00000 n -0000048712 00000 n -0000048924 00000 n -0000049136 00000 n -0000049540 00000 n -0000049733 00000 n -0000050123 00000 n -0000050324 00000 n -0000050711 00000 n -0000050898 00000 n -0000045982 00000 n -0000055651 00000 n -0000054582 00000 n -0000051482 00000 n -0000054696 00000 n -0000186881 00000 n -0000187168 00000 n -0000054886 00000 n -0000187452 00000 n -0000054950 00000 n -0000055014 00000 n -0000055078 00000 n -0000055142 00000 n -0000055206 00000 n -0000055270 00000 n -0000055333 00000 n -0000055397 00000 n -0000055461 00000 n -0000055525 00000 n -0000055587 00000 n -0000057688 00000 n -0000057839 00000 n -0000057990 00000 n -0000058141 00000 n -0000058292 00000 n -0000058446 00000 n -0000058600 00000 n -0000058756 00000 n -0000058910 00000 n -0000059137 00000 n -0000057465 00000 n -0000055786 00000 n -0000059075 00000 n -0000187893 00000 n -0000057595 00000 n +0000026021 00000 n +0000189453 00000 n +0000000321 00000 n +0000000415 00000 n +0000026084 00000 n +0000189379 00000 n +0000000462 00000 n +0000000576 00000 n +0000026147 00000 n +0000189292 00000 n +0000000623 00000 n +0000000776 00000 n +0000026210 00000 n +0000189205 00000 n +0000000823 00000 n +0000000979 00000 n +0000029260 00000 n +0000189131 00000 n +0000001027 00000 n +0000001229 00000 n +0000032468 00000 n +0000189007 00000 n +0000001277 00000 n +0000001376 00000 n +0000032531 00000 n +0000188933 00000 n +0000001424 00000 n +0000001597 00000 n +0000034277 00000 n +0000188846 00000 n +0000001645 00000 n +0000001838 00000 n +0000035267 00000 n +0000188759 00000 n +0000001886 00000 n +0000001997 00000 n +0000037822 00000 n +0000188672 00000 n +0000002045 00000 n +0000002111 00000 n +0000042653 00000 n +0000188585 00000 n +0000002159 00000 n +0000002235 00000 n +0000051348 00000 n +0000188498 00000 n +0000002283 00000 n +0000002382 00000 n +0000054797 00000 n +0000188424 00000 n +0000002430 00000 n +0000002547 00000 n +0000070484 00000 n +0000188349 00000 n +0000002595 00000 n +0000002683 00000 n +0000003162 00000 n +0000003455 00000 n +0000002733 00000 n +0000003272 00000 n +0000003332 00000 n +0000145663 00000 n +0000141747 00000 n +0000187639 00000 n +0000003865 00000 n +0000003694 00000 n +0000003537 00000 n +0000003804 00000 n +0000137394 00000 n +0000010240 00000 n +0000010393 00000 n +0000010546 00000 n +0000010699 00000 n +0000010853 00000 n +0000011007 00000 n +0000011162 00000 n +0000011317 00000 n +0000011472 00000 n +0000011627 00000 n +0000011782 00000 n +0000011936 00000 n +0000012090 00000 n +0000012245 00000 n +0000012399 00000 n +0000012676 00000 n +0000009988 00000 n +0000003935 00000 n +0000012554 00000 n +0000012614 00000 n +0000125088 00000 n +0000115816 00000 n +0000010114 00000 n +0000013188 00000 n +0000013012 00000 n +0000012771 00000 n +0000013125 00000 n +0000109067 00000 n +0000014312 00000 n +0000014471 00000 n +0000014626 00000 n +0000014906 00000 n +0000014138 00000 n +0000013272 00000 n +0000014780 00000 n +0000014842 00000 n +0000014267 00000 n +0000070611 00000 n +0000063246 00000 n +0000015438 00000 n +0000015262 00000 n +0000014989 00000 n +0000015375 00000 n +0000016947 00000 n +0000017101 00000 n +0000017260 00000 n +0000017538 00000 n +0000016773 00000 n +0000015522 00000 n +0000017414 00000 n +0000016902 00000 n +0000042527 00000 n +0000042591 00000 n +0000018022 00000 n +0000017846 00000 n +0000017621 00000 n +0000017959 00000 n +0000024234 00000 n +0000024388 00000 n +0000024543 00000 n +0000024698 00000 n +0000024852 00000 n +0000025008 00000 n +0000025174 00000 n +0000025329 00000 n +0000025484 00000 n +0000025637 00000 n +0000025798 00000 n +0000027701 00000 n +0000026465 00000 n +0000023996 00000 n +0000018106 00000 n +0000025959 00000 n +0000187071 00000 n +0000187356 00000 n +0000101361 00000 n +0000026273 00000 n +0000099125 00000 n +0000026337 00000 n +0000096902 00000 n +0000026401 00000 n +0000024125 00000 n +0000070547 00000 n +0000027870 00000 n +0000028103 00000 n +0000027535 00000 n +0000026626 00000 n +0000028040 00000 n +0000089801 00000 n +0000027664 00000 n +0000029451 00000 n +0000029084 00000 n +0000028200 00000 n +0000029198 00000 n +0000029323 00000 n +0000029387 00000 n +0000187787 00000 n +0000030218 00000 n +0000030445 00000 n +0000030059 00000 n +0000029547 00000 n +0000030382 00000 n +0000030189 00000 n +0000032100 00000 n +0000032254 00000 n +0000032786 00000 n +0000031933 00000 n +0000030529 00000 n +0000032406 00000 n +0000032594 00000 n +0000032658 00000 n +0000032722 00000 n +0000032063 00000 n +0000034059 00000 n +0000034466 00000 n +0000033900 00000 n +0000032908 00000 n +0000034214 00000 n +0000034340 00000 n +0000034403 00000 n +0000034030 00000 n +0000036895 00000 n +0000035393 00000 n +0000035091 00000 n +0000034562 00000 n +0000035205 00000 n +0000035330 00000 n +0000036614 00000 n +0000036959 00000 n +0000036455 00000 n +0000035489 00000 n +0000036768 00000 n +0000036831 00000 n +0000036585 00000 n +0000042463 00000 n +0000038013 00000 n +0000037646 00000 n +0000037055 00000 n +0000037760 00000 n +0000037885 00000 n +0000037949 00000 n +0000041287 00000 n +0000041443 00000 n +0000041761 00000 n +0000041917 00000 n +0000042083 00000 n +0000041127 00000 n +0000042243 00000 n +0000046249 00000 n +0000046818 00000 n +0000047395 00000 n +0000047964 00000 n +0000048539 00000 n +0000049386 00000 n +0000049962 00000 n +0000050562 00000 n +0000051123 00000 n +0000042716 00000 n +0000040912 00000 n +0000038109 00000 n +0000042400 00000 n +0000041602 00000 n +0000041042 00000 n +0000054860 00000 n +0000051411 00000 n +0000045890 00000 n +0000042825 00000 n +0000051286 00000 n +0000046438 00000 n +0000046629 00000 n +0000047010 00000 n +0000047202 00000 n +0000047584 00000 n +0000047774 00000 n +0000048155 00000 n +0000048347 00000 n +0000048750 00000 n +0000048962 00000 n +0000049174 00000 n +0000049578 00000 n +0000049771 00000 n +0000050161 00000 n +0000050362 00000 n +0000050749 00000 n +0000050936 00000 n +0000046020 00000 n +0000055689 00000 n +0000054620 00000 n +0000051520 00000 n +0000054734 00000 n +0000186927 00000 n +0000187214 00000 n +0000054924 00000 n +0000187498 00000 n +0000054988 00000 n +0000055052 00000 n +0000055116 00000 n +0000055180 00000 n +0000055244 00000 n +0000055308 00000 n +0000055371 00000 n +0000055435 00000 n +0000055499 00000 n +0000055563 00000 n +0000055625 00000 n +0000057726 00000 n +0000057878 00000 n +0000058030 00000 n +0000058182 00000 n +0000058334 00000 n +0000058489 00000 n +0000058644 00000 n +0000058801 00000 n +0000058955 00000 n +0000059182 00000 n +0000057503 00000 n +0000055824 00000 n +0000059120 00000 n +0000187939 00000 n +0000057633 00000 n 0000000300 00000 f 0000000000 00000 f -0000062823 00000 n -0000062982 00000 n -0000063264 00000 n -0000062656 00000 n -0000059221 00000 n -0000063137 00000 n -0000062786 00000 n -0000065625 00000 n -0000065782 00000 n -0000066000 00000 n -0000065458 00000 n -0000063348 00000 n -0000065938 00000 n -0000065588 00000 n -0000075947 00000 n -0000066572 00000 n -0000066395 00000 n -0000066084 00000 n -0000066509 00000 n -0000070693 00000 n -0000070262 00000 n -0000066656 00000 n -0000070376 00000 n -0000082113 00000 n -0000070629 00000 n -0000071381 00000 n -0000071204 00000 n -0000070789 00000 n -0000071318 00000 n -0000072040 00000 n -0000071864 00000 n -0000071465 00000 n -0000071978 00000 n -0000072716 00000 n -0000072539 00000 n -0000072124 00000 n -0000072653 00000 n -0000073375 00000 n -0000073199 00000 n -0000072800 00000 n -0000073313 00000 n -0000074051 00000 n -0000073874 00000 n -0000073459 00000 n -0000073988 00000 n -0000074710 00000 n -0000074534 00000 n -0000074135 00000 n -0000074648 00000 n -0000188045 00000 n -0000075227 00000 n -0000075050 00000 n -0000074794 00000 n -0000075164 00000 n -0000075864 00000 n -0000075624 00000 n -0000075311 00000 n -0000075738 00000 n -0000075800 00000 n -0000075981 00000 n -0000080799 00000 n -0000076250 00000 n -0000076326 00000 n -0000081040 00000 n -0000082269 00000 n -0000082471 00000 n -0000082497 00000 n -0000082563 00000 n -0000082657 00000 n -0000088248 00000 n -0000083056 00000 n -0000083133 00000 n -0000088486 00000 n -0000089911 00000 n -0000090113 00000 n -0000095447 00000 n -0000090398 00000 n -0000090474 00000 n -0000095685 00000 n -0000097012 00000 n -0000097214 00000 n -0000098104 00000 n -0000097258 00000 n -0000097333 00000 n -0000098343 00000 n -0000099235 00000 n -0000099437 00000 n -0000100341 00000 n -0000099481 00000 n -0000099556 00000 n -0000100579 00000 n -0000101471 00000 n -0000101673 00000 n -0000101793 00000 n -0000101831 00000 n -0000107560 00000 n -0000102164 00000 n -0000102261 00000 n -0000107806 00000 n -0000109183 00000 n -0000109391 00000 n -0000114358 00000 n -0000109677 00000 n -0000109753 00000 n -0000114595 00000 n -0000115924 00000 n -0000116124 00000 n -0000123360 00000 n -0000116543 00000 n -0000116640 00000 n -0000123597 00000 n -0000125195 00000 n -0000125395 00000 n -0000135375 00000 n -0000125869 00000 n -0000125993 00000 n -0000135614 00000 n -0000137504 00000 n -0000137707 00000 n -0000140538 00000 n -0000137882 00000 n -0000137959 00000 n -0000140777 00000 n -0000141857 00000 n -0000142060 00000 n -0000144496 00000 n -0000142208 00000 n -0000142284 00000 n -0000144735 00000 n -0000145773 00000 n -0000154875 00000 n -0000145976 00000 n -0000163219 00000 n -0000155117 00000 n -0000170968 00000 n -0000163449 00000 n -0000178995 00000 n -0000171199 00000 n -0000186653 00000 n -0000179250 00000 n -0000188140 00000 n -0000188228 00000 n -0000189684 00000 n -0000190409 00000 n -0000191046 00000 n -0000191649 00000 n -0000191738 00000 n -0000191776 00000 n -0000191943 00000 n +0000062868 00000 n +0000063027 00000 n +0000063310 00000 n +0000062701 00000 n +0000059266 00000 n +0000063183 00000 n +0000062831 00000 n +0000065671 00000 n +0000065828 00000 n +0000066046 00000 n +0000065504 00000 n +0000063394 00000 n +0000065984 00000 n +0000065634 00000 n +0000075993 00000 n +0000066618 00000 n +0000066441 00000 n +0000066130 00000 n +0000066555 00000 n +0000070739 00000 n +0000070308 00000 n +0000066702 00000 n +0000070422 00000 n +0000082159 00000 n +0000070675 00000 n +0000071427 00000 n +0000071250 00000 n +0000070835 00000 n +0000071364 00000 n +0000072086 00000 n +0000071910 00000 n +0000071511 00000 n +0000072024 00000 n +0000072762 00000 n +0000072585 00000 n +0000072170 00000 n +0000072699 00000 n +0000073421 00000 n +0000073245 00000 n +0000072846 00000 n +0000073359 00000 n +0000074097 00000 n +0000073920 00000 n +0000073505 00000 n +0000074034 00000 n +0000074756 00000 n +0000074580 00000 n +0000074181 00000 n +0000074694 00000 n +0000188091 00000 n +0000075273 00000 n +0000075096 00000 n +0000074840 00000 n +0000075210 00000 n +0000075910 00000 n +0000075670 00000 n +0000075357 00000 n +0000075784 00000 n +0000075846 00000 n +0000076027 00000 n +0000080845 00000 n +0000076296 00000 n +0000076372 00000 n +0000081086 00000 n +0000082315 00000 n +0000082517 00000 n +0000082543 00000 n +0000082609 00000 n +0000082703 00000 n +0000088294 00000 n +0000083102 00000 n +0000083179 00000 n +0000088532 00000 n +0000089957 00000 n +0000090159 00000 n +0000095493 00000 n +0000090444 00000 n +0000090520 00000 n +0000095731 00000 n +0000097058 00000 n +0000097260 00000 n +0000098150 00000 n +0000097304 00000 n +0000097379 00000 n +0000098389 00000 n +0000099281 00000 n +0000099483 00000 n +0000100387 00000 n +0000099527 00000 n +0000099602 00000 n +0000100625 00000 n +0000101517 00000 n +0000101719 00000 n +0000101839 00000 n +0000101877 00000 n +0000107606 00000 n +0000102210 00000 n +0000102307 00000 n +0000107852 00000 n +0000109229 00000 n +0000109437 00000 n +0000114404 00000 n +0000109723 00000 n +0000109799 00000 n +0000114641 00000 n +0000115970 00000 n +0000116170 00000 n +0000123406 00000 n +0000116589 00000 n +0000116686 00000 n +0000123643 00000 n +0000125241 00000 n +0000125441 00000 n +0000135421 00000 n +0000125915 00000 n +0000126039 00000 n +0000135660 00000 n +0000137550 00000 n +0000137753 00000 n +0000140584 00000 n +0000137928 00000 n +0000138005 00000 n +0000140823 00000 n +0000141903 00000 n +0000142106 00000 n +0000144542 00000 n +0000142254 00000 n +0000142330 00000 n +0000144781 00000 n +0000145819 00000 n +0000154921 00000 n +0000146022 00000 n +0000163265 00000 n +0000155163 00000 n +0000171014 00000 n +0000163495 00000 n +0000179041 00000 n +0000171245 00000 n +0000186699 00000 n +0000179296 00000 n +0000188186 00000 n +0000188274 00000 n +0000189730 00000 n +0000190469 00000 n +0000191108 00000 n +0000191733 00000 n +0000191822 00000 n +0000191860 00000 n +0000192027 00000 n trailer << /Size 450 /Root 448 0 R /Info 449 0 R >> startxref -192068 +192152 %%EOF diff --git a/testfiles-3/test1-pdf.tpf b/testfiles-3/test1-pdf.tpf index 6e45f8b..9ab6761 100644 --- a/testfiles-3/test1-pdf.tpf +++ b/testfiles-3/test1-pdf.tpf @@ -13,79 +13,79 @@ endobj (\376\377\000\040\000L\000I\000S\000T\000\040\000O\000F\000\040\000F\000I\000G\000U\000R\000E\000S) endobj 9 0 obj -<< /S /GoTo /D (chapter.4) >> +<< /S /GoTo /D (chapter*.4) >> endobj 12 0 obj (\376\377\0001\000\040\000F\000i\000r\000s\000t\000\040\000p\000a\000r\000t) endobj 13 0 obj -<< /S /GoTo /D (section.5) >> +<< /S /GoTo /D (section*.5) >> endobj 16 0 obj (\376\377\0001\000.\0001\000\040\000T\000e\000s\000t\000\040\000s\000e\000c\000t\000i\000o\000n) endobj 17 0 obj -<< /S /GoTo /D (section.6) >> +<< /S /GoTo /D (section*.6) >> endobj 20 0 obj (\376\377\0001\000.\0002\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000O\000n\000e\000\040\040\024\000\040\000c\000a\000t\000s) endobj 21 0 obj -<< /S /GoTo /D (section.7) >> +<< /S /GoTo /D (section*.7) >> endobj 24 0 obj (\376\377\0001\000.\0003\000\040\000o\000n\000e\000.\0001\000\040\040\023\000\040\000c\000a\000n\000\040\000w\000e\000\040\000s\000e\000e) endobj 25 0 obj -<< /S /GoTo /D (section.11) >> +<< /S /GoTo /D (section*.11) >> endobj 28 0 obj (\376\377\0001\000.\0004\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000T\000w\000o\000\040\040\024\000\040\000T\000e\000X\000\040\000i\000s\000\040\000a\000\040\000d\000o\000g) endobj 29 0 obj -<< /S /GoTo /D (chapter.14) >> +<< /S /GoTo /D (chapter*.14) >> endobj 32 0 obj (\376\377\0002\000\040\000S\000e\000c\000o\000n\000d\000\040\000p\000a\000r\000t) endobj 33 0 obj -<< /S /GoTo /D (section.15) >> +<< /S /GoTo /D (section*.15) >> endobj 36 0 obj (\376\377\0002\000.\0001\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000T\000h\000r\000e\000e\000\040\040\024\000\040\000C\000a\000m\000e\000l\000s) endobj 37 0 obj -<< /S /GoTo /D (section.19) >> +<< /S /GoTo /D (section*.19) >> endobj 40 0 obj (\376\377\0002\000.\0002\000\040\000S\000e\000c\000t\000i\000o\000n\000\040\000F\000o\000u\000r\000\040\040\024\000\040\000B\000u\000t\000t\000e\000r\000f\000l\000i\000e\000s) endobj 41 0 obj -<< /S /GoTo /D (section.22) >> +<< /S /GoTo /D (section*.22) >> endobj 44 0 obj (\376\377\0002\000.\0003\000\040\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n) endobj 45 0 obj -<< /S /GoTo /D (section.25) >> +<< /S /GoTo /D (section*.25) >> endobj 48 0 obj (\376\377\0002\000.\0004\000\040\000t\000w\000o) endobj 49 0 obj -<< /S /GoTo /D (section.28) >> +<< /S /GoTo /D (section*.28) >> endobj 52 0 obj (\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e) endobj 53 0 obj -<< /S /GoTo /D (section.31) >> +<< /S /GoTo /D (section*.31) >> endobj 56 0 obj (\376\377\0002\000.\0006\000\040\000S\000o\000m\000e\000\040\000U\000R\000L\000s) endobj 57 0 obj -<< /S /GoTo /D (section.32) >> +<< /S /GoTo /D (section*.32) >> endobj 60 0 obj (\376\377\0002\000.\0007\000\040\000B\000a\000c\000k\000\040\000t\000o\000\040\000m\000a\000t\000h) @@ -300,7 +300,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [452.278 483.911 460.543 492.934] -/A << /S /GoTo /D (chapter.4) >> +/A << /S /GoTo /D (chapter*.4) >> >> endobj 81 0 obj @@ -309,7 +309,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 470.362 460.543 479.385] -/A << /S /GoTo /D (section.5) >> +/A << /S /GoTo /D (section*.5) >> >> endobj 82 0 obj @@ -318,7 +318,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 456.813 460.543 465.836] -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section*.6) >> >> endobj 83 0 obj @@ -327,7 +327,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 443.264 460.543 452.287] -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section*.7) >> >> endobj 84 0 obj @@ -336,7 +336,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 429.715 460.543 438.738] -/A << /S /GoTo /D (section.11) >> +/A << /S /GoTo /D (section*.11) >> >> endobj 85 0 obj @@ -345,7 +345,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [452.278 405.256 460.543 414.279] -/A << /S /GoTo /D (chapter.14) >> +/A << /S /GoTo /D (chapter*.14) >> >> endobj 86 0 obj @@ -354,7 +354,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 391.707 460.543 400.73] -/A << /S /GoTo /D (section.15) >> +/A << /S /GoTo /D (section*.15) >> >> endobj 87 0 obj @@ -363,7 +363,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 378.158 460.543 387.181] -/A << /S /GoTo /D (section.19) >> +/A << /S /GoTo /D (section*.19) >> >> endobj 88 0 obj @@ -372,7 +372,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [453.096 364.609 460.543 373.632] -/A << /S /GoTo /D (section.22) >> +/A << /S /GoTo /D (section*.22) >> >> endobj 89 0 obj @@ -381,7 +381,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [447.641 351.06 460.543 360.082] -/A << /S /GoTo /D (section.25) >> +/A << /S /GoTo /D (section*.25) >> >> endobj 90 0 obj @@ -390,7 +390,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [447.641 337.51 460.543 346.533] -/A << /S /GoTo /D (section.28) >> +/A << /S /GoTo /D (section*.28) >> >> endobj 91 0 obj @@ -399,7 +399,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [447.641 323.961 460.543 332.984] -/A << /S /GoTo /D (section.31) >> +/A << /S /GoTo /D (section*.31) >> >> endobj 92 0 obj @@ -408,7 +408,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [447.641 310.412 460.543 319.435] -/A << /S /GoTo /D (section.32) >> +/A << /S /GoTo /D (section*.32) >> >> endobj 93 0 obj @@ -523,7 +523,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [369.623 506.589 385.555 519.491] -/A << /S /GoTo /D (section.22) >> +/A << /S /GoTo /D (section*.22) >> >> endobj 108 0 obj @@ -786,7 +786,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [99.895 497.846 230.956 517.052] -/A << /S /GoTo /D (section.5) >> +/A << /S /GoTo /D (section*.5) >> >> endobj 135 0 obj @@ -795,7 +795,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [378.18 436.42 454.267 452.759] -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section*.6) >> >> endobj 136 0 obj @@ -804,7 +804,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [152.138 395.491 204.494 407.181] -/A << /S /GoTo /D (section.5) >> +/A << /S /GoTo /D (section*.5) >> >> endobj 137 0 obj @@ -813,7 +813,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [246.744 395.491 254.191 407.181] -/A << /S /GoTo /D (section.5) >> +/A << /S /GoTo /D (section*.5) >> >> endobj 138 0 obj @@ -822,7 +822,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [153.956 335.73 219.585 348.631] -/A << /S /GoTo /D (section.15) >> +/A << /S /GoTo /D (section*.15) >> >> endobj 139 0 obj @@ -1129,7 +1129,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [117.532 445.711 169.888 454.99] -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section*.6) >> >> endobj 176 0 obj @@ -1473,7 +1473,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [306.62 195.809 359.267 208.71] -/A << /S /GoTo /D (section.22) >> +/A << /S /GoTo /D (section*.22) >> >> endobj 212 0 obj @@ -1482,7 +1482,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [443.796 195.809 511.352 208.71] -/A << /S /GoTo /D (subsection.24) >> +/A << /S /GoTo /D (subsection*.24) >> >> endobj 231 0 obj @@ -1491,7 +1491,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [150.705 182.26 167.243 195.161] -/A << /S /GoTo /D (subsection.24) >> +/A << /S /GoTo /D (subsection*.24) >> >> endobj 213 0 obj @@ -1500,7 +1500,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [244.099 182.26 296.455 195.161] -/A << /S /GoTo /D (section.25) >> +/A << /S /GoTo /D (section*.25) >> >> endobj 214 0 obj @@ -1527,7 +1527,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [230.641 121.537 301.36 132.62] -/A << /S /GoTo /D (equation.33) >> +/A << /S /GoTo /D (equation*.33) >> >> endobj 230 0 obj @@ -2061,7 +2061,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [191.468 650.259 223.764 661.948] -/A << /S /GoTo /D (Item.41) >> +/A << /S /GoTo /D (Item*.41) >> >> endobj 274 0 obj @@ -2070,7 +2070,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [228.438 650.259 235.885 661.948] -/A << /S /GoTo /D (Item.42) >> +/A << /S /GoTo /D (Item*.42) >> >> endobj 275 0 obj @@ -2079,7 +2079,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [240.559 650.259 253.461 661.948] -/A << /S /GoTo /D (Item.44) >> +/A << /S /GoTo /D (Item*.44) >> >> endobj 276 0 obj @@ -2088,7 +2088,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [276.317 650.259 314.673 661.948] -/A << /S /GoTo /D (Item.45) >> +/A << /S /GoTo /D (Item*.45) >> >> endobj 277 0 obj @@ -2097,7 +2097,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [161.737 636.709 214.049 648.399] -/A << /S /GoTo /D (section.22) >> +/A << /S /GoTo /D (section*.22) >> >> endobj 278 0 obj @@ -2106,7 +2106,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [242.962 636.709 295.275 648.399] -/A << /S /GoTo /D (section.25) >> +/A << /S /GoTo /D (section*.25) >> >> endobj 279 0 obj @@ -2115,7 +2115,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [320.793 636.709 383.803 648.399] -/A << /S /GoTo /D (equation.33) >> +/A << /S /GoTo /D (equation*.33) >> >> endobj 280 0 obj @@ -2195,7 +2195,7 @@ endobj /Subtype /Link /Border[0 0 0]/H/I/C[1 0 0] /Rect [460.093 649.653 476.025 662.554] -/A << /S /GoTo /D (section.22) >> +/A << /S /GoTo /D (section*.22) >> >> endobj 293 0 obj @@ -5122,32 +5122,32 @@ endobj endobj 404 0 obj << -/Names [(Doc-Start) 70 0 R (Hfootnote.17) 183 0 R (Hfootnote.8) 154 0 R (Hfootnote.9) 156 0 R (Item.36) 263 0 R (Item.37) 264 0 R] -/Limits [(Doc-Start) (Item.37)] +/Names [(Doc-Start) 70 0 R (Hfootnote.17) 183 0 R (Hfootnote.8) 154 0 R (Hfootnote.9) 156 0 R (Item*.36) 263 0 R (Item*.37) 264 0 R] +/Limits [(Doc-Start) (Item*.37)] >> endobj 405 0 obj << -/Names [(Item.38) 265 0 R (Item.39) 266 0 R (Item.40) 267 0 R (Item.41) 268 0 R (Item.42) 269 0 R (Item.43) 270 0 R] -/Limits [(Item.38) (Item.43)] +/Names [(Item*.38) 265 0 R (Item*.39) 266 0 R (Item*.40) 267 0 R (Item*.41) 268 0 R (Item*.42) 269 0 R (Item*.43) 270 0 R] +/Limits [(Item*.38) (Item*.43)] >> endobj 406 0 obj << -/Names [(Item.44) 271 0 R (Item.45) 272 0 R (chapter*.1) 98 0 R (chapter*.2) 113 0 R (chapter*.3) 6 0 R (chapter*.46) 62 0 R] -/Limits [(Item.44) (chapter*.46)] +/Names [(Item*.44) 271 0 R (Item*.45) 272 0 R (chapter*.1) 98 0 R (chapter*.14) 30 0 R (chapter*.2) 113 0 R (chapter*.3) 6 0 R] +/Limits [(Item*.44) (chapter*.3)] >> endobj 407 0 obj << -/Names [(chapter*.47) 345 0 R (chapter.14) 30 0 R (chapter.4) 10 0 R (cite.Barcelo:1992:caa) 157 0 R (cite.Dallas:aia) 114 0 R (cite.stankovic:88) 310 0 R] -/Limits [(chapter*.47) (cite.stankovic:88)] +/Names [(chapter*.4) 10 0 R (chapter*.46) 62 0 R (chapter*.47) 345 0 R (cite.Barcelo:1992:caa) 157 0 R (cite.Dallas:aia) 114 0 R (cite.stankovic:88) 310 0 R] +/Limits [(chapter*.4) (cite.stankovic:88)] >> endobj 408 0 obj << -/Names [(equation.2.2) 300 0 R (equation.33) 232 0 R (equation.34) 260 0 R (equation.35) 262 0 R (figure.29) 128 0 R (figure.30) 129 0 R] -/Limits [(equation.2.2) (figure.30)] +/Names [(equation*.33) 232 0 R (equation*.34) 260 0 R (equation.2.2) 300 0 R (equation.35) 262 0 R (figure.29) 128 0 R (figure.30) 129 0 R] +/Limits [(equation*.33) (figure.30)] >> endobj 409 0 obj @@ -5182,32 +5182,32 @@ endobj endobj 414 0 obj << -/Names [(page.7) 126 0 R (page.8) 133 0 R (page.9) 149 0 R (section.11) 26 0 R (section.15) 34 0 R (section.19) 38 0 R] -/Limits [(page.7) (section.19)] +/Names [(page.7) 126 0 R (page.8) 133 0 R (page.9) 149 0 R (section*.11) 26 0 R (section*.15) 34 0 R (section*.19) 38 0 R] +/Limits [(page.7) (section*.19)] >> endobj 415 0 obj << -/Names [(section.22) 42 0 R (section.25) 46 0 R (section.28) 50 0 R (section.31) 54 0 R (section.32) 58 0 R (section.5) 14 0 R] -/Limits [(section.22) (section.5)] +/Names [(section*.22) 42 0 R (section*.25) 46 0 R (section*.28) 50 0 R (section*.31) 54 0 R (section*.32) 58 0 R (section*.5) 14 0 R] +/Limits [(section*.22) (section*.5)] >> endobj 416 0 obj << -/Names [(section.6) 18 0 R (section.7) 22 0 R (subsection.10) 152 0 R (subsection.12) 168 0 R (subsection.13) 169 0 R (subsection.16) 181 0 R] -/Limits [(section.6) (subsection.16)] +/Names [(section*.6) 18 0 R (section*.7) 22 0 R (subsection*.10) 152 0 R (subsection*.12) 168 0 R (subsection*.13) 169 0 R (subsection*.16) 181 0 R] +/Limits [(section*.6) (subsection*.16)] >> endobj 417 0 obj << -/Names [(subsection.18) 182 0 R (subsection.20) 190 0 R (subsection.21) 191 0 R (subsection.23) 197 0 R (subsection.24) 203 0 R (subsection.26) 209 0 R] -/Limits [(subsection.18) (subsection.26)] +/Names [(subsection*.18) 182 0 R (subsection*.20) 190 0 R (subsection*.21) 191 0 R (subsection*.23) 197 0 R (subsection*.24) 203 0 R (subsection*.26) 209 0 R] +/Limits [(subsection*.18) (subsection*.26)] >> endobj 418 0 obj << -/Names [(subsection.27) 210 0 R (table.2.1) 115 0 R (test.test1) 192 0 R (testpiccy) 204 0 R (tit.0) 2 0 R] -/Limits [(subsection.27) (tit.0)] +/Names [(subsection*.27) 210 0 R (table.2.1) 115 0 R (test.test1) 192 0 R (testpiccy) 204 0 R (tit.0) 2 0 R] +/Limits [(subsection*.27) (tit.0)] >> endobj 419 0 obj @@ -5219,13 +5219,13 @@ endobj 420 0 obj << /Kids [410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R] -/Limits [(page.15) (section.5)] +/Limits [(page.15) (section*.5)] >> endobj 421 0 obj << /Kids [416 0 R 417 0 R 418 0 R] -/Limits [(section.6) (tit.0)] +/Limits [(section*.6) (tit.0)] >> endobj 422 0 obj @@ -5259,435 +5259,435 @@ xref 0 426 0000000286 65535 f 0000000015 00000 n -0000003218 00000 n -0000271140 00000 n +0000003231 00000 n +0000271186 00000 n 0000000056 00000 n 0000000107 00000 n -0000014088 00000 n -0000271056 00000 n +0000014115 00000 n +0000271102 00000 n 0000000153 00000 n 0000000268 00000 n -0000019910 00000 n -0000270934 00000 n -0000000313 00000 n -0000000406 00000 n -0000019971 00000 n -0000270860 00000 n -0000000452 00000 n -0000000565 00000 n -0000020032 00000 n -0000270773 00000 n -0000000611 00000 n -0000000763 00000 n -0000020093 00000 n -0000270686 00000 n -0000000809 00000 n -0000000964 00000 n -0000022416 00000 n -0000270612 00000 n -0000001011 00000 n -0000001212 00000 n -0000024879 00000 n -0000270488 00000 n -0000001259 00000 n -0000001357 00000 n -0000024940 00000 n -0000270414 00000 n -0000001404 00000 n -0000001576 00000 n -0000026240 00000 n -0000270327 00000 n -0000001623 00000 n -0000001815 00000 n -0000027033 00000 n -0000270240 00000 n -0000001862 00000 n -0000001972 00000 n -0000028939 00000 n -0000270153 00000 n -0000002019 00000 n -0000002084 00000 n -0000032361 00000 n -0000270066 00000 n -0000002131 00000 n -0000002206 00000 n -0000039426 00000 n -0000269979 00000 n -0000002253 00000 n -0000002351 00000 n -0000041590 00000 n -0000269905 00000 n -0000002398 00000 n -0000002514 00000 n -0000052225 00000 n -0000269830 00000 n -0000002562 00000 n -0000002649 00000 n -0000002992 00000 n -0000003277 00000 n -0000002697 00000 n -0000003100 00000 n -0000003158 00000 n -0000255037 00000 n -0000253092 00000 n -0000268980 00000 n -0000003667 00000 n -0000003500 00000 n -0000003359 00000 n -0000003608 00000 n -0000251147 00000 n -0000007913 00000 n -0000008064 00000 n -0000008215 00000 n -0000008366 00000 n -0000008517 00000 n -0000008668 00000 n -0000008820 00000 n -0000008972 00000 n -0000009123 00000 n -0000009275 00000 n -0000009427 00000 n -0000009578 00000 n -0000009729 00000 n -0000009881 00000 n -0000010033 00000 n -0000010304 00000 n -0000007688 00000 n -0000003737 00000 n -0000010186 00000 n -0000010244 00000 n -0000245686 00000 n -0000243734 00000 n -0000010749 00000 n -0000010577 00000 n -0000010399 00000 n -0000010688 00000 n -0000262805 00000 n -0000011506 00000 n -0000011664 00000 n -0000011817 00000 n -0000012091 00000 n -0000011359 00000 n -0000010833 00000 n -0000011969 00000 n -0000012029 00000 n -0000052348 00000 n -0000047824 00000 n -0000012544 00000 n -0000012372 00000 n -0000012174 00000 n -0000012483 00000 n -0000013567 00000 n -0000013719 00000 n -0000013877 00000 n -0000014148 00000 n -0000013419 00000 n -0000012628 00000 n -0000014028 00000 n -0000269093 00000 n -0000032238 00000 n -0000032300 00000 n -0000014578 00000 n -0000014405 00000 n -0000014231 00000 n -0000014517 00000 n -0000018160 00000 n -0000018311 00000 n -0000018461 00000 n -0000018613 00000 n -0000018765 00000 n -0000018917 00000 n -0000019080 00000 n -0000019234 00000 n -0000019387 00000 n -0000019536 00000 n -0000019693 00000 n -0000021175 00000 n -0000020340 00000 n -0000017948 00000 n -0000014662 00000 n -0000019850 00000 n -0000249201 00000 n -0000258916 00000 n -0000020154 00000 n -0000256977 00000 n -0000020216 00000 n -0000260855 00000 n -0000020278 00000 n -0000052286 00000 n -0000021340 00000 n -0000021567 00000 n -0000021035 00000 n -0000020500 00000 n -0000021506 00000 n -0000268817 00000 n -0000022600 00000 n -0000022244 00000 n -0000021664 00000 n -0000022356 00000 n -0000022477 00000 n -0000022539 00000 n -0000023149 00000 n -0000023373 00000 n -0000023017 00000 n -0000022696 00000 n -0000023312 00000 n -0000024513 00000 n -0000024664 00000 n -0000025187 00000 n -0000024373 00000 n -0000023457 00000 n -0000024819 00000 n -0000025001 00000 n -0000025063 00000 n -0000025125 00000 n -0000269210 00000 n -0000026028 00000 n -0000026424 00000 n -0000025896 00000 n -0000025309 00000 n -0000026179 00000 n -0000026301 00000 n -0000026363 00000 n -0000028230 00000 n -0000027156 00000 n -0000026861 00000 n -0000026520 00000 n -0000026973 00000 n -0000027094 00000 n -0000027955 00000 n -0000028292 00000 n -0000027823 00000 n -0000027252 00000 n -0000028107 00000 n -0000028168 00000 n -0000032176 00000 n -0000029123 00000 n -0000028767 00000 n -0000028388 00000 n -0000028879 00000 n -0000029000 00000 n -0000029062 00000 n -0000031029 00000 n -0000031180 00000 n -0000031490 00000 n -0000031642 00000 n -0000031805 00000 n -0000030871 00000 n -0000031963 00000 n -0000034446 00000 n -0000035004 00000 n -0000035568 00000 n -0000036122 00000 n -0000036681 00000 n -0000037508 00000 n -0000038072 00000 n -0000038659 00000 n -0000039206 00000 n -0000032422 00000 n -0000030683 00000 n -0000029219 00000 n -0000032115 00000 n -0000031335 00000 n -0000041651 00000 n -0000039487 00000 n -0000034114 00000 n -0000032531 00000 n -0000039366 00000 n -0000034632 00000 n -0000034818 00000 n -0000035192 00000 n -0000035380 00000 n -0000035753 00000 n -0000035938 00000 n -0000036308 00000 n -0000036495 00000 n -0000036887 00000 n -0000037094 00000 n -0000037301 00000 n -0000037696 00000 n -0000037884 00000 n -0000038268 00000 n -0000038464 00000 n -0000038842 00000 n -0000039024 00000 n -0000269327 00000 n -0000042454 00000 n -0000041417 00000 n -0000039596 00000 n -0000041529 00000 n -0000247443 00000 n -0000041713 00000 n -0000265078 00000 n -0000041774 00000 n -0000041836 00000 n -0000041896 00000 n -0000041958 00000 n -0000042020 00000 n -0000042082 00000 n -0000042144 00000 n -0000042206 00000 n -0000042268 00000 n -0000042330 00000 n -0000042392 00000 n -0000043666 00000 n -0000043816 00000 n -0000043966 00000 n -0000044116 00000 n -0000044266 00000 n -0000044419 00000 n -0000044572 00000 n -0000044726 00000 n -0000044877 00000 n -0000045101 00000 n -0000043470 00000 n -0000042576 00000 n -0000045041 00000 n +0000019942 00000 n +0000270980 00000 n +0000000314 00000 n +0000000407 00000 n +0000020003 00000 n +0000270906 00000 n +0000000454 00000 n +0000000567 00000 n +0000020064 00000 n +0000270819 00000 n +0000000614 00000 n +0000000766 00000 n +0000020125 00000 n +0000270732 00000 n +0000000813 00000 n +0000000968 00000 n +0000022448 00000 n +0000270658 00000 n +0000001016 00000 n +0000001217 00000 n +0000024912 00000 n +0000270534 00000 n +0000001265 00000 n +0000001363 00000 n +0000024973 00000 n +0000270460 00000 n +0000001411 00000 n +0000001583 00000 n +0000026273 00000 n +0000270373 00000 n +0000001631 00000 n +0000001823 00000 n +0000027066 00000 n +0000270286 00000 n +0000001871 00000 n +0000001981 00000 n +0000028972 00000 n +0000270199 00000 n +0000002029 00000 n +0000002094 00000 n +0000032399 00000 n +0000270112 00000 n +0000002142 00000 n +0000002217 00000 n +0000039464 00000 n +0000270025 00000 n +0000002265 00000 n +0000002363 00000 n +0000041628 00000 n +0000269951 00000 n +0000002411 00000 n +0000002527 00000 n +0000052271 00000 n +0000269876 00000 n +0000002575 00000 n +0000002662 00000 n +0000003005 00000 n +0000003290 00000 n +0000002710 00000 n +0000003113 00000 n +0000003171 00000 n +0000255083 00000 n +0000253138 00000 n +0000269026 00000 n +0000003680 00000 n +0000003513 00000 n +0000003372 00000 n +0000003621 00000 n +0000251193 00000 n +0000007926 00000 n +0000008077 00000 n +0000008229 00000 n +0000008381 00000 n +0000008533 00000 n +0000008685 00000 n +0000008838 00000 n +0000008991 00000 n +0000009143 00000 n +0000009296 00000 n +0000009449 00000 n +0000009601 00000 n +0000009753 00000 n +0000009906 00000 n +0000010059 00000 n +0000010330 00000 n +0000007701 00000 n +0000003750 00000 n +0000010212 00000 n +0000010270 00000 n +0000245732 00000 n +0000243780 00000 n +0000010775 00000 n +0000010603 00000 n +0000010425 00000 n +0000010714 00000 n +0000262851 00000 n +0000011532 00000 n +0000011690 00000 n +0000011844 00000 n +0000012118 00000 n +0000011385 00000 n +0000010859 00000 n +0000011996 00000 n +0000012056 00000 n +0000052394 00000 n +0000047870 00000 n +0000012571 00000 n +0000012399 00000 n +0000012201 00000 n +0000012510 00000 n +0000013594 00000 n +0000013746 00000 n +0000013904 00000 n +0000014175 00000 n +0000013446 00000 n +0000012655 00000 n +0000014055 00000 n +0000269139 00000 n +0000032276 00000 n +0000032338 00000 n +0000014605 00000 n +0000014432 00000 n +0000014258 00000 n +0000014544 00000 n +0000018187 00000 n +0000018339 00000 n +0000018490 00000 n +0000018643 00000 n +0000018796 00000 n +0000018949 00000 n +0000019112 00000 n +0000019266 00000 n +0000019419 00000 n +0000019568 00000 n +0000019725 00000 n +0000021207 00000 n +0000020372 00000 n +0000017975 00000 n +0000014689 00000 n +0000019882 00000 n +0000249247 00000 n +0000258962 00000 n +0000020186 00000 n +0000257023 00000 n +0000020248 00000 n +0000260901 00000 n +0000020310 00000 n +0000052332 00000 n +0000021372 00000 n +0000021599 00000 n +0000021067 00000 n +0000020532 00000 n +0000021538 00000 n +0000268863 00000 n +0000022632 00000 n +0000022276 00000 n +0000021696 00000 n +0000022388 00000 n +0000022509 00000 n +0000022571 00000 n +0000023181 00000 n +0000023405 00000 n +0000023049 00000 n +0000022728 00000 n +0000023344 00000 n +0000024545 00000 n +0000024697 00000 n +0000025220 00000 n +0000024405 00000 n +0000023489 00000 n +0000024852 00000 n +0000025034 00000 n +0000025096 00000 n +0000025158 00000 n +0000269256 00000 n +0000026061 00000 n +0000026457 00000 n +0000025929 00000 n +0000025342 00000 n +0000026212 00000 n +0000026334 00000 n +0000026396 00000 n +0000028263 00000 n +0000027189 00000 n +0000026894 00000 n +0000026553 00000 n +0000027006 00000 n +0000027127 00000 n +0000027988 00000 n +0000028325 00000 n +0000027856 00000 n +0000027285 00000 n +0000028140 00000 n +0000028201 00000 n +0000032214 00000 n +0000029156 00000 n +0000028800 00000 n +0000028421 00000 n +0000028912 00000 n +0000029033 00000 n +0000029095 00000 n +0000031062 00000 n +0000031214 00000 n +0000031526 00000 n +0000031679 00000 n +0000031842 00000 n +0000030904 00000 n +0000032000 00000 n +0000034484 00000 n +0000035042 00000 n +0000035606 00000 n +0000036160 00000 n +0000036719 00000 n +0000037546 00000 n +0000038110 00000 n +0000038697 00000 n +0000039244 00000 n +0000032460 00000 n +0000030716 00000 n +0000029252 00000 n +0000032153 00000 n +0000031370 00000 n +0000041689 00000 n +0000039525 00000 n +0000034152 00000 n +0000032569 00000 n +0000039404 00000 n +0000034670 00000 n +0000034856 00000 n +0000035230 00000 n +0000035418 00000 n +0000035791 00000 n +0000035976 00000 n +0000036346 00000 n +0000036533 00000 n +0000036925 00000 n +0000037132 00000 n +0000037339 00000 n +0000037734 00000 n +0000037922 00000 n +0000038306 00000 n +0000038502 00000 n +0000038880 00000 n +0000039062 00000 n +0000269373 00000 n +0000042492 00000 n +0000041455 00000 n +0000039634 00000 n +0000041567 00000 n +0000247489 00000 n +0000041751 00000 n +0000265124 00000 n +0000041812 00000 n +0000041874 00000 n +0000041934 00000 n +0000041996 00000 n +0000042058 00000 n +0000042120 00000 n +0000042182 00000 n +0000042244 00000 n +0000042306 00000 n +0000042368 00000 n +0000042430 00000 n +0000043704 00000 n +0000043855 00000 n +0000044006 00000 n +0000044157 00000 n +0000044308 00000 n +0000044462 00000 n +0000044616 00000 n +0000044771 00000 n +0000044922 00000 n +0000045146 00000 n +0000043508 00000 n +0000042614 00000 n +0000045086 00000 n 0000000287 00000 f 0000000000 00000 f -0000047453 00000 n -0000047610 00000 n -0000047886 00000 n -0000047313 00000 n -0000045185 00000 n -0000047763 00000 n -0000049380 00000 n -0000049534 00000 n -0000049748 00000 n -0000049240 00000 n -0000047970 00000 n -0000049688 00000 n -0000056695 00000 n -0000050220 00000 n -0000050047 00000 n -0000049832 00000 n -0000050159 00000 n -0000052472 00000 n -0000052053 00000 n -0000050304 00000 n -0000052165 00000 n -0000267051 00000 n -0000052410 00000 n -0000269444 00000 n -0000053015 00000 n -0000052842 00000 n -0000052568 00000 n -0000052954 00000 n -0000053530 00000 n -0000053358 00000 n -0000053099 00000 n -0000053470 00000 n -0000054061 00000 n -0000053888 00000 n -0000053614 00000 n -0000054000 00000 n -0000054576 00000 n -0000054404 00000 n -0000054145 00000 n -0000054516 00000 n -0000055107 00000 n -0000054934 00000 n -0000054660 00000 n -0000055046 00000 n -0000055622 00000 n -0000055450 00000 n -0000055191 00000 n -0000055562 00000 n -0000269561 00000 n -0000056061 00000 n -0000055888 00000 n -0000055706 00000 n -0000056000 00000 n -0000056612 00000 n -0000056378 00000 n -0000056145 00000 n -0000056490 00000 n -0000056550 00000 n -0000056726 00000 n -0000057165 00000 n -0000057190 00000 n -0000057353 00000 n -0000057740 00000 n -0000058190 00000 n -0000058221 00000 n -0000058252 00000 n -0000058289 00000 n -0000058732 00000 n -0000059157 00000 n -0000059805 00000 n -0000060437 00000 n -0000060847 00000 n -0000061162 00000 n -0000076879 00000 n -0000077188 00000 n -0000094589 00000 n -0000094981 00000 n -0000103857 00000 n -0000104091 00000 n -0000112170 00000 n -0000112396 00000 n -0000136467 00000 n -0000136980 00000 n -0000147692 00000 n -0000147977 00000 n -0000157794 00000 n -0000158034 00000 n -0000165602 00000 n -0000165826 00000 n -0000173391 00000 n -0000173615 00000 n -0000188899 00000 n -0000189186 00000 n -0000204187 00000 n -0000204501 00000 n -0000211881 00000 n -0000212107 00000 n -0000226065 00000 n -0000226342 00000 n -0000241602 00000 n -0000241945 00000 n -0000243897 00000 n -0000245848 00000 n -0000247606 00000 n -0000249363 00000 n -0000251308 00000 n -0000253253 00000 n -0000255198 00000 n -0000257137 00000 n -0000259076 00000 n -0000261016 00000 n -0000262968 00000 n -0000265238 00000 n -0000267214 00000 n -0000269654 00000 n -0000269755 00000 n -0000271211 00000 n -0000271397 00000 n -0000271567 00000 n -0000271750 00000 n -0000271973 00000 n -0000272171 00000 n -0000272338 00000 n -0000272505 00000 n -0000272675 00000 n -0000272843 00000 n -0000273009 00000 n -0000273184 00000 n -0000273370 00000 n -0000273574 00000 n -0000273792 00000 n -0000273957 00000 n -0000274068 00000 n -0000274179 00000 n -0000274264 00000 n -0000274349 00000 n -0000274387 00000 n -0000274554 00000 n +0000047498 00000 n +0000047655 00000 n +0000047932 00000 n +0000047358 00000 n +0000045230 00000 n +0000047809 00000 n +0000049426 00000 n +0000049580 00000 n +0000049794 00000 n +0000049286 00000 n +0000048016 00000 n +0000049734 00000 n +0000056741 00000 n +0000050266 00000 n +0000050093 00000 n +0000049878 00000 n +0000050205 00000 n +0000052518 00000 n +0000052099 00000 n +0000050350 00000 n +0000052211 00000 n +0000267097 00000 n +0000052456 00000 n +0000269490 00000 n +0000053061 00000 n +0000052888 00000 n +0000052614 00000 n +0000053000 00000 n +0000053576 00000 n +0000053404 00000 n +0000053145 00000 n +0000053516 00000 n +0000054107 00000 n +0000053934 00000 n +0000053660 00000 n +0000054046 00000 n +0000054622 00000 n +0000054450 00000 n +0000054191 00000 n +0000054562 00000 n +0000055153 00000 n +0000054980 00000 n +0000054706 00000 n +0000055092 00000 n +0000055668 00000 n +0000055496 00000 n +0000055237 00000 n +0000055608 00000 n +0000269607 00000 n +0000056107 00000 n +0000055934 00000 n +0000055752 00000 n +0000056046 00000 n +0000056658 00000 n +0000056424 00000 n +0000056191 00000 n +0000056536 00000 n +0000056596 00000 n +0000056772 00000 n +0000057211 00000 n +0000057236 00000 n +0000057399 00000 n +0000057786 00000 n +0000058236 00000 n +0000058267 00000 n +0000058298 00000 n +0000058335 00000 n +0000058778 00000 n +0000059203 00000 n +0000059851 00000 n +0000060483 00000 n +0000060893 00000 n +0000061208 00000 n +0000076925 00000 n +0000077234 00000 n +0000094635 00000 n +0000095027 00000 n +0000103903 00000 n +0000104137 00000 n +0000112216 00000 n +0000112442 00000 n +0000136513 00000 n +0000137026 00000 n +0000147738 00000 n +0000148023 00000 n +0000157840 00000 n +0000158080 00000 n +0000165648 00000 n +0000165872 00000 n +0000173437 00000 n +0000173661 00000 n +0000188945 00000 n +0000189232 00000 n +0000204233 00000 n +0000204547 00000 n +0000211927 00000 n +0000212153 00000 n +0000226111 00000 n +0000226388 00000 n +0000241648 00000 n +0000241991 00000 n +0000243943 00000 n +0000245894 00000 n +0000247652 00000 n +0000249409 00000 n +0000251354 00000 n +0000253299 00000 n +0000255244 00000 n +0000257183 00000 n +0000259122 00000 n +0000261062 00000 n +0000263014 00000 n +0000265284 00000 n +0000267260 00000 n +0000269700 00000 n +0000269801 00000 n +0000271257 00000 n +0000271446 00000 n +0000271624 00000 n +0000271809 00000 n +0000272033 00000 n +0000272233 00000 n +0000272400 00000 n +0000272567 00000 n +0000272737 00000 n +0000272905 00000 n +0000273071 00000 n +0000273250 00000 n +0000273444 00000 n +0000273656 00000 n +0000273882 00000 n +0000274049 00000 n +0000274160 00000 n +0000274272 00000 n +0000274358 00000 n +0000274443 00000 n +0000274481 00000 n +0000274648 00000 n trailer << /Size 426 /Root 424 0 R /Info 425 0 R >> startxref -274679 +274773 %%EOF diff --git a/testfiles-pdftex/patch.tlg b/testfiles-pdftex/patch.tlg index 6fd90a9..704c80a 100644 --- a/testfiles-pdftex/patch.tlg +++ b/testfiles-pdftex/patch.tlg @@ -33,7 +33,7 @@ l. ...\ShowCommand\@footnotetext \caption l. ...\ShowCommand\caption > \@caption=\long macro: -#1[#2]#3->\expandafter \ifx \csname if@capstart\expandafter \endcsname \csname iftrue\endcsname \global \let \@currentHref \hc@currentHref \else \hyper@makecurrent {\@captype }\fi \@ifundefined {NR@gettitle}{\def \@currentlabelname {#2}}{\NR@gettitle {#2}}\par \addcontentsline {\csname ext@#1\endcsname }{#1}{\protect \numberline {\csname the#1\endcsname }{\ignorespaces #2}}\begingroup \@parboxrestore \if@minipage \@setminipage \fi \normalsize \expandafter \ifx \csname if@capstart\expandafter \endcsname \csname iftrue\endcsname \global \@capstartfalse \@makecaption {\csname fnum@#1\endcsname }{\ignorespaces #3}\else \@makecaption {\csname fnum@#1\endcsname }{\ignorespaces \ifHy@nesting \expandafter \hyper@@anchor \expandafter {\@currentHref }{#3}\else \Hy@raisedlink {\expandafter \hyper@@anchor \expandafter {\@currentHref }{\relax }}#3\fi \IfFormatAtLeastTF {....-..-..}{\UseTaggingSocket {recordtarget}}{}}\fi \par \endgroup . +#1[#2]#3->\expandafter \ifx \csname if@capstart\expandafter \endcsname \csname iftrue\endcsname \global \let \@currentHref \hc@currentHref \else \hyper@makecurrent {\@captype }\fi \@ifundefined {NR@gettitle}{\def \@currentlabelname {#2}}{\NR@gettitle {#2}}\par \addcontentsline {\csname ext@#1\endcsname }{#1}{\protect \numberline {\csname the#1\endcsname }{\ignorespaces #2}}\begingroup \@parboxrestore \if@minipage \@setminipage \fi \normalsize \expandafter \ifx \csname if@capstart\expandafter \endcsname \csname iftrue\endcsname \global \@capstartfalse \@makecaption {\csname fnum@#1\endcsname }{\ignorespaces #3}\else \@makecaption {\csname fnum@#1\endcsname }{\ignorespaces \ifHy@nesting \expandafter \hyper@@anchor \expandafter {\@currentHref }{#3}\else \Hy@raisedlink {\expandafter \hyper@@anchor \expandafter {\@currentHref }{\relax }}#3\fi \UseTaggingSocket {recordtarget}}\fi \par \endgroup . \@caption l. ...\ShowCommand\@caption > \addcontentsline=macro: diff --git a/testfiles-pdftex/thm-003-cleveref.tlg b/testfiles-pdftex/thm-003-cleveref.tlg index 427e59a..79a84cb 100644 --- a/testfiles-pdftex/thm-003-cleveref.tlg +++ b/testfiles-pdftex/thm-003-cleveref.tlg @@ -189,6 +189,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0, shifted -14.5 .......\pdfdest name{definition.1.0.1} xyz .......\penalty 10000 +.....\kern 0.0 .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 @@ -458,6 +459,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0, shifted -14.5 .......\pdfdest name{definition.1.0.2} xyz .......\penalty 10000 +.....\kern 0.0 .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 @@ -728,6 +730,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0, shifted -14.5 .......\pdfdest name{definition.1.0.3} xyz .......\penalty 10000 +.....\kern 0.0 .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 @@ -997,6 +1000,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0, shifted -14.5 .......\pdfdest name{definition.1.0.4} xyz .......\penalty 10000 +.....\kern 0.0 .....\penalty 10000 .....\glue(\parfillskip) 0.0 plus 1.0fil .....\glue(\rightskip) 0.0 diff --git a/testfiles-pdftex/thm-007-gh360.tlg b/testfiles-pdftex/thm-007-gh360.tlg index 8c014ca..f2f840c 100644 --- a/testfiles-pdftex/thm-007-gh360.tlg +++ b/testfiles-pdftex/thm-007-gh360.tlg @@ -62,6 +62,7 @@ Completed box being shipped out [1] ......\hbox(0.0+0.0)x0.0, shifted -12.0 .......\pdfdest name{lstnumber.-1.1} xyz .......\penalty 10000 +.....\kern 0.0 .....\hbox(0.0+0.0)x0.0 .....\hbox(6.83331+0.0)x18.00018 ......\hbox(6.83331+0.0)x18.00018, glue set 0.36809fil diff --git a/testfiles/test1.etex.tlg b/testfiles/test1.etex.tlg index c6dba4b..523a640 100644 --- a/testfiles/test1.etex.tlg +++ b/testfiles/test1.etex.tlg @@ -10,19 +10,19 @@ Package hyperref Info: Anchor `page.2' on input line .... Package hyperref Info: Anchor `chapter*.1' on input line .... (test1.toc Package hyperref Info: Reference (link) `chapter*.3' on input line .... -Package hyperref Info: Reference (link) `chapter.4' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Reference (link) `section.7' on input line .... -Package hyperref Info: Reference (link) `section.11' on input line .... -Package hyperref Info: Reference (link) `chapter.14' on input line .... -Package hyperref Info: Reference (link) `section.15' on input line .... -Package hyperref Info: Reference (link) `section.19' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `section.28' on input line .... -Package hyperref Info: Reference (link) `section.31' on input line .... -Package hyperref Info: Reference (link) `section.32' on input line .... +Package hyperref Info: Reference (link) `chapter*.4' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Reference (link) `section*.7' on input line .... +Package hyperref Info: Reference (link) `section*.11' on input line .... +Package hyperref Info: Reference (link) `chapter*.14' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... +Package hyperref Info: Reference (link) `section*.19' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `section*.28' on input line .... +Package hyperref Info: Reference (link) `section*.31' on input line .... +Package hyperref Info: Reference (link) `section*.32' on input line .... Package hyperref Info: Reference (link) `chapter*.46' on input line .... ) \tf@toc=\write... @@ -34,7 +34,7 @@ Package hyperref Info: Anchor `page.4' on input line .... Package hyperref Info: Anchor `chapter*.2' on input line .... (test1.lot Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... ) \tf@lot=\write... @@ -62,39 +62,39 @@ Package hyperref Info: Anchor `page.7' on input line .... Package hyperref Info: Anchor `page.8' on input line .... [2 ] -Package hyperref Info: Anchor `chapter.4' on input line .... +Package hyperref Info: Anchor `chapter*.4' on input line .... Chapter 1. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1} (hyperref) text {\protect \numberline {\thechapter }First part} -(hyperref) reference {chapter.4} +(hyperref) reference {chapter*.4} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Test section} -(hyperref) reference {section.5} +(hyperref) reference {section*.5} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section One --- cats} -(hyperref) reference {section.6} +(hyperref) reference {section*.6} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.15' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... -Package hyperref Info: Anchor `section.7' on input line .... +Package hyperref Info: Anchor `section*.7' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi one.1 -- can we see} -(hyperref) reference {section.7} +(hyperref) reference {section*.7} (hyperref) toclevel {1} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.8' on input line .... @@ -102,11 +102,11 @@ Package hyperref Info: Anchor `Hfootnote.8' on input line .... Package hyperref Info: Reference (link) `Hfootnote.9' on input line .... Package hyperref Info: Anchor `Hfootnote.9' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... -Package hyperref Info: Anchor `subsection.10' on input line .... +Package hyperref Info: Anchor `subsection*.10' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi one.2} -(hyperref) reference {subsection.10} +(hyperref) reference {subsection*.10} (hyperref) toclevel {2} (hyperref) type {toc}. LaTeX Warning: Reference `ss:first' on page 3 undefined on input line .... @@ -114,25 +114,25 @@ Package hyperref Info: Anchor `page.9' on input line .... [3] Package hyperref Info: Anchor `page.10' on input line .... [4] -Package hyperref Info: Anchor `section.11' on input line .... +Package hyperref Info: Anchor `section*.11' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Two --- \TeX \ is a dog} -(hyperref) reference {section.11} +(hyperref) reference {section*.11} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.12' on input line .... +Package hyperref Info: Anchor `subsection*.12' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.1} -(hyperref) reference {subsection.12} +(hyperref) reference {subsection*.12} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.13' on input line .... +Package hyperref Info: Anchor `subsection*.13' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.2} -(hyperref) reference {subsection.13} +(hyperref) reference {subsection*.13} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.11' on input line .... @@ -140,86 +140,86 @@ Package hyperref Info: Anchor `page.11' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Anchor `page.12' on input line .... [6] -Package hyperref Info: Anchor `chapter.14' on input line .... +Package hyperref Info: Anchor `chapter*.14' on input line .... Chapter 2. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2} (hyperref) text {\protect \numberline {\thechapter }Second part} -(hyperref) reference {chapter.14} +(hyperref) reference {chapter*.14} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Anchor `section.15' on input line .... +Package hyperref Info: Anchor `section*.15' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Three --- Camels} -(hyperref) reference {section.15} +(hyperref) reference {section*.15} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Anchor `subsection.16' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Anchor `subsection*.16' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.1} -(hyperref) reference {subsection.16} +(hyperref) reference {subsection*.16} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.17' on input line .... Package hyperref Info: Anchor `Hfootnote.17' on input line .... -Package hyperref Info: Anchor `subsection.18' on input line .... +Package hyperref Info: Anchor `subsection*.18' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.2} -(hyperref) reference {subsection.18} +(hyperref) reference {subsection*.18} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.13' on input line .... [7 ] -Package hyperref Info: Anchor `section.19' on input line .... +Package hyperref Info: Anchor `section*.19' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Four --- Butterflies} -(hyperref) reference {section.19} +(hyperref) reference {section*.19} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.20' on input line .... +Package hyperref Info: Anchor `subsection*.20' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.1} -(hyperref) reference {subsection.20} +(hyperref) reference {subsection*.20} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.21' on input line .... +Package hyperref Info: Anchor `subsection*.21' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.2} -(hyperref) reference {subsection.21} +(hyperref) reference {subsection*.21} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `test.test1' on input line .... Package hyperref Info: Anchor `page.14' on input line .... [8] -Package hyperref Info: Anchor `section.22' on input line .... +Package hyperref Info: Anchor `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Introduction} -(hyperref) reference {section.22} +(hyperref) reference {section*.22} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.23' on input line .... +Package hyperref Info: Anchor `subsection*.23' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.23} +(hyperref) reference {subsection*.23} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.15' on input line .... [9] -Package hyperref Info: Anchor `subsection.24' on input line .... +Package hyperref Info: Anchor `subsection*.24' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.24} +(hyperref) reference {subsection*.24} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `test.test1' on input line .... @@ -230,39 +230,39 @@ File: picture.eps Graphic file (type eps) Package hyperref Info: Anchor `page.16' on input line .... [10] -Package hyperref Info: Anchor `section.25' on input line .... +Package hyperref Info: Anchor `section*.25' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi two} -(hyperref) reference {section.25} +(hyperref) reference {section*.25} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.26' on input line .... +Package hyperref Info: Anchor `subsection*.26' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 2} -(hyperref) reference {subsection.26} +(hyperref) reference {subsection*.26} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.27' on input line .... +Package hyperref Info: Anchor `subsection*.27' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 3} -(hyperref) reference {subsection.27} +(hyperref) reference {subsection*.27} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.17' on input line .... [11] -Package hyperref Info: Anchor `section.28' on input line .... +Package hyperref Info: Anchor `section*.28' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.5} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi three} -(hyperref) reference {section.28} +(hyperref) reference {section*.28} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `subsection.24' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `subsection*.24' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... Overfull \hbox (7.00789pt too wide) in paragraph at lines ... @@ -328,7 +328,7 @@ Overfull \hbox (7.00789pt too wide) in paragraph at lines ... ..\special{color pop} .\hbox(0.0+0.0)x0.0, shifted -7.31305 ..\special{ps:SDict begin H.R end} -.\special{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 0]BorderArrayPatch/Subtype /Link/Dest (section.22) cvn H.B /ANN pdfmark end} +.\special{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 0]BorderArrayPatch/Subtype /Link/Dest (section*.22) cvn H.B /ANN pdfmark end} .\special{color pop} .\OT1/cmr/m/n/10.95 ) .\OT1/cmr/m/n/10.95 , @@ -382,7 +382,7 @@ Overfull \hbox (7.00789pt too wide) in paragraph at lines ... ..\special{color pop} .\hbox(0.0+0.0)x0.0, shifted -7.60416 ..\special{ps:SDict begin H.R end} -.\special{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 0]BorderArrayPatch/Subtype /Link/Dest (subsection.24) cvn H.B /ANN pdfmark end} +.\special{ps:SDict begin [/Color [1 0 0]/H /I/Border [0 0 0]BorderArrayPatch/Subtype /Link/Dest (subsection*.24) cvn H.B /ANN pdfmark end} .\special{color pop} .\OT1/cmr/m/n/10.95 ) .\glue(\rightskip) 0.0 @@ -402,12 +402,12 @@ Package hyperref Info: bookmark on input line ...: (hyperref) type {lof}. Package hyperref Info: Anchor `figure.30' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... -Package hyperref Info: Anchor `section.31' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... +Package hyperref Info: Anchor `section*.31' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.6} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Some URLs} -(hyperref) reference {section.31} +(hyperref) reference {section*.31} (hyperref) toclevel {1} (hyperref) type {toc}. Overfull \hbox (115.79382pt too wide) in paragraph at lines ... @@ -1061,44 +1061,50 @@ Overfull \hbox (92.79907pt too wide) in paragraph at lines ... .\glue(\rightskip) 0.0 Package hyperref Info: Anchor `page.18' on input line .... [12] -Package hyperref Info: Anchor `section.32' on input line .... +Package hyperref Info: Anchor `section*.32' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.7} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Back to math} -(hyperref) reference {section.32} +(hyperref) reference {section*.32} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... -Package hyperref Info: Anchor `Item.36' on input line .... -Package hyperref Info: Anchor `Item.37' on input line .... -Package hyperref Info: Anchor `Item.38' on input line .... -Package hyperref Info: Anchor `Item.39' on input line .... -Package hyperref Info: Anchor `Item.40' on input line .... -Package hyperref Info: Anchor `Item.41' on input line .... -Package hyperref Info: Anchor `Item.42' on input line .... -Package hyperref Info: Anchor `Item.43' on input line .... -Package hyperref Info: Anchor `Item.44' on input line .... -Package hyperref Info: Anchor `Item.45' on input line .... +Package hyperref Info: Anchor `Item*.36' on input line .... +Package hyperref Info: Anchor `Item*.37' on input line .... +Package hyperref Info: Anchor `Item*.38' on input line .... +Package hyperref Info: Anchor `Item*.39' on input line .... +Package hyperref Info: Anchor `Item*.40' on input line .... +Package hyperref Info: Anchor `Item*.41' on input line .... +Package hyperref Info: Anchor `Item*.42' on input line .... +Package hyperref Info: Anchor `Item*.43' on input line .... +Package hyperref Info: Anchor `Item*.44' on input line .... +Package hyperref Info: Anchor `Item*.45' on input line .... Package hyperref Info: Anchor `page.19' on input line .... [13] -Package hyperref Info: Reference (link) `Item.41' on input line .... -Package hyperref Info: Reference (link) `Item.42' on input line .... -Package hyperref Info: Reference (link) `Item.44' on input line .... -Package hyperref Info: Reference (link) `Item.45' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... +Package hyperref Info: Reference (link) `Item*.41' on input line .... +Package hyperref Info: Reference (link) `Item*.42' on input line .... +Package hyperref Info: Reference (link) `Item*.44' on input line .... +Package hyperref Info: Reference (link) `Item*.45' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... Package hyperref Info: Reference (link) `figure.29' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Anchor `page.20' on input line .... [14 ] Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\protect \numberline {\@nameuse {the\LTcaptype }}{A test long table (see \protect \cite {Dallas:aia} and section \protect \ref {sec1}}} @@ -1168,4 +1174,4 @@ Package hyperref Info: Anchor `page.32' on input line .... ]) (test1.aux) LaTeX Warning: There were undefined references. Package rerunfilecheck Info: File `test1.out' has not changed. -(rerunfilecheck) Checksum: E4C64B0886D76FA719CE3476389224C6;2267. +(rerunfilecheck) Checksum: FD2BE320F4D78D8629FD20E114C84785;2291. diff --git a/testfiles/test1.luatex.tlg b/testfiles/test1.luatex.tlg index 536bc9a..d3c8289 100644 --- a/testfiles/test1.luatex.tlg +++ b/testfiles/test1.luatex.tlg @@ -10,38 +10,38 @@ Package hyperref Info: Anchor `page.2' on input line .... Package hyperref Info: Anchor `chapter*.1' on input line .... (test1.toc Package hyperref Info: Reference (link) `chapter*.3' on input line .... -Package hyperref Info: Reference (link) `chapter.4' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Reference (link) `section.7' on input line .... -Package hyperref Info: Reference (link) `section.11' on input line .... -Package hyperref Info: Reference (link) `chapter.14' on input line .... -Package hyperref Info: Reference (link) `section.15' on input line .... -Package hyperref Info: Reference (link) `section.19' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `section.28' on input line .... -Package hyperref Info: Reference (link) `section.31' on input line .... -Package hyperref Info: Reference (link) `section.32' on input line .... +Package hyperref Info: Reference (link) `chapter*.4' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Reference (link) `section*.7' on input line .... +Package hyperref Info: Reference (link) `section*.11' on input line .... +Package hyperref Info: Reference (link) `chapter*.14' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... +Package hyperref Info: Reference (link) `section*.19' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `section*.28' on input line .... +Package hyperref Info: Reference (link) `section*.31' on input line .... +Package hyperref Info: Reference (link) `section*.32' on input line .... Package hyperref Info: Reference (link) `chapter*.46' on input line .... ) \tf@toc=\write... Package hyperref Info: Anchor `page.3' on input line .... [3 Package `hyperref' Info: End of reference (link) `chapter*.3', line 1. -Package `hyperref' Info: End of reference (link) `chapter.4', line 2. -Package `hyperref' Info: End of reference (link) `section.5', line 3. -Package `hyperref' Info: End of reference (link) `section.6', line 4. -Package `hyperref' Info: End of reference (link) `section.7', line 5. -Package `hyperref' Info: End of reference (link) `section.11', line 7. -Package `hyperref' Info: End of reference (link) `chapter.14', line 10. -Package `hyperref' Info: End of reference (link) `section.15', line 11. -Package `hyperref' Info: End of reference (link) `section.19', line 14. -Package `hyperref' Info: End of reference (link) `section.22', line 17. -Package `hyperref' Info: End of reference (link) `section.25', line 20. -Package `hyperref' Info: End of reference (link) `section.28', line 23. -Package `hyperref' Info: End of reference (link) `section.31', line 24. -Package `hyperref' Info: End of reference (link) `section.32', line 25. +Package `hyperref' Info: End of reference (link) `chapter*.4', line 2. +Package `hyperref' Info: End of reference (link) `section*.5', line 3. +Package `hyperref' Info: End of reference (link) `section*.6', line 4. +Package `hyperref' Info: End of reference (link) `section*.7', line 5. +Package `hyperref' Info: End of reference (link) `section*.11', line 7. +Package `hyperref' Info: End of reference (link) `chapter*.14', line 10. +Package `hyperref' Info: End of reference (link) `section*.15', line 11. +Package `hyperref' Info: End of reference (link) `section*.19', line 14. +Package `hyperref' Info: End of reference (link) `section*.22', line 17. +Package `hyperref' Info: End of reference (link) `section*.25', line 20. +Package `hyperref' Info: End of reference (link) `section*.28', line 23. +Package `hyperref' Info: End of reference (link) `section*.31', line 24. +Package `hyperref' Info: End of reference (link) `section*.32', line 25. Package `hyperref' Info: End of reference (link) `chapter*.46', line 26. ] Package hyperref Info: Anchor `page.4' on input line .... @@ -50,14 +50,14 @@ Package hyperref Info: Anchor `page.4' on input line .... Package hyperref Info: Anchor `chapter*.2' on input line .... (test1.lot Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... ) \tf@lot=\write... Package hyperref Info: Anchor `page.5' on input line .... [5 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 3. -Package `hyperref' Info: End of reference (link) `section.22', line 3. +Package `hyperref' Info: End of reference (link) `section*.22', line 3. Package `hyperref' Info: End of reference (link) `table.2.1', line 3. ] Package hyperref Info: Anchor `page.6' on input line .... @@ -86,39 +86,39 @@ Package `hyperref' Info: End of reference (link) `figure.30', line 4. Package hyperref Info: Anchor `page.8' on input line .... [2 ] -Package hyperref Info: Anchor `chapter.4' on input line .... +Package hyperref Info: Anchor `chapter*.4' on input line .... Chapter 1. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1} (hyperref) text {\protect \numberline {\thechapter }First part} -(hyperref) reference {chapter.4} +(hyperref) reference {chapter*.4} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Test section} -(hyperref) reference {section.5} +(hyperref) reference {section*.5} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section One --- cats} -(hyperref) reference {section.6} +(hyperref) reference {section*.6} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.15' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... -Package hyperref Info: Anchor `section.7' on input line .... +Package hyperref Info: Anchor `section*.7' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi one.1 -- can we see} -(hyperref) reference {section.7} +(hyperref) reference {section*.7} (hyperref) toclevel {1} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.8' on input line .... @@ -126,21 +126,21 @@ Package hyperref Info: Anchor `Hfootnote.8' on input line .... Package hyperref Info: Reference (link) `Hfootnote.9' on input line .... Package hyperref Info: Anchor `Hfootnote.9' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... -Package hyperref Info: Anchor `subsection.10' on input line .... +Package hyperref Info: Anchor `subsection*.10' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi one.2} -(hyperref) reference {subsection.10} +(hyperref) reference {subsection*.10} (hyperref) toclevel {2} (hyperref) type {toc}. LaTeX Warning: Reference `ss:first' on page 3 undefined on input line .... Package hyperref Info: Anchor `page.9' on input line .... [3 -Package `hyperref' Info: End of reference (link) `section.5', line 50. -Package `hyperref' Info: End of reference (link) `section.6', line 53. -Package `hyperref' Info: End of reference (link) `section.5', line 54. -Package `hyperref' Info: End of reference (link) `section.5', line 54. -Package `hyperref' Info: End of reference (link) `section.15', line 57. +Package `hyperref' Info: End of reference (link) `section*.5', line 50. +Package `hyperref' Info: End of reference (link) `section*.6', line 53. +Package `hyperref' Info: End of reference (link) `section*.5', line 54. +Package `hyperref' Info: End of reference (link) `section*.5', line 54. +Package `hyperref' Info: End of reference (link) `section*.15', line 57. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 59. Package `hyperref' Info: End of reference (link) `Hfootnote.8', line 62. Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. @@ -153,25 +153,25 @@ Package hyperref Info: Anchor `page.10' on input line .... Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. ] -Package hyperref Info: Anchor `section.11' on input line .... +Package hyperref Info: Anchor `section*.11' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Two --- \TeX \ is a dog} -(hyperref) reference {section.11} +(hyperref) reference {section*.11} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.12' on input line .... +Package hyperref Info: Anchor `subsection*.12' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.1} -(hyperref) reference {subsection.12} +(hyperref) reference {subsection*.12} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.13' on input line .... +Package hyperref Info: Anchor `subsection*.13' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.2} -(hyperref) reference {subsection.13} +(hyperref) reference {subsection*.13} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.11' on input line .... @@ -181,62 +181,62 @@ Package hyperref Info: Anchor `page.12' on input line .... [6 Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 92. ] -Package hyperref Info: Anchor `chapter.14' on input line .... +Package hyperref Info: Anchor `chapter*.14' on input line .... Chapter 2. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2} (hyperref) text {\protect \numberline {\thechapter }Second part} -(hyperref) reference {chapter.14} +(hyperref) reference {chapter*.14} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Anchor `section.15' on input line .... +Package hyperref Info: Anchor `section*.15' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Three --- Camels} -(hyperref) reference {section.15} +(hyperref) reference {section*.15} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Anchor `subsection.16' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Anchor `subsection*.16' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.1} -(hyperref) reference {subsection.16} +(hyperref) reference {subsection*.16} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.17' on input line .... Package hyperref Info: Anchor `Hfootnote.17' on input line .... -Package hyperref Info: Anchor `subsection.18' on input line .... +Package hyperref Info: Anchor `subsection*.18' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.2} -(hyperref) reference {subsection.18} +(hyperref) reference {subsection*.18} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.13' on input line .... [7 -Package `hyperref' Info: End of reference (link) `section.6', line 96. +Package `hyperref' Info: End of reference (link) `section*.6', line 96. Package `hyperref' Info: End of reference (link) `Hfootnote.17', line 98. ] -Package hyperref Info: Anchor `section.19' on input line .... +Package hyperref Info: Anchor `section*.19' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Four --- Butterflies} -(hyperref) reference {section.19} +(hyperref) reference {section*.19} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.20' on input line .... +Package hyperref Info: Anchor `subsection*.20' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.1} -(hyperref) reference {subsection.20} +(hyperref) reference {subsection*.20} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.21' on input line .... +Package hyperref Info: Anchor `subsection*.21' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.2} -(hyperref) reference {subsection.21} +(hyperref) reference {subsection*.21} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `test.test1' on input line .... @@ -244,27 +244,27 @@ Package hyperref Info: Anchor `page.14' on input line .... [8 Package `hyperref' Info: End of reference (link) `test.test1', line 107. ] -Package hyperref Info: Anchor `section.22' on input line .... +Package hyperref Info: Anchor `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Introduction} -(hyperref) reference {section.22} +(hyperref) reference {section*.22} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.23' on input line .... +Package hyperref Info: Anchor `subsection*.23' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.23} +(hyperref) reference {subsection*.23} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.15' on input line .... [9] -Package hyperref Info: Anchor `subsection.24' on input line .... +Package hyperref Info: Anchor `subsection*.24' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.24} +(hyperref) reference {subsection*.24} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `test.test1' on input line .... @@ -282,39 +282,39 @@ Package hyperref Info: Anchor `page.16' on input line .... [10 Package `hyperref' Info: End of reference (link) `testpiccy', line 116. <./picture.png>] -Package hyperref Info: Anchor `section.25' on input line .... +Package hyperref Info: Anchor `section*.25' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi two} -(hyperref) reference {section.25} +(hyperref) reference {section*.25} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.26' on input line .... +Package hyperref Info: Anchor `subsection*.26' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 2} -(hyperref) reference {subsection.26} +(hyperref) reference {subsection*.26} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.27' on input line .... +Package hyperref Info: Anchor `subsection*.27' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 3} -(hyperref) reference {subsection.27} +(hyperref) reference {subsection*.27} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.17' on input line .... [11] -Package hyperref Info: Anchor `section.28' on input line .... +Package hyperref Info: Anchor `section*.28' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.5} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi three} -(hyperref) reference {section.28} +(hyperref) reference {section*.28} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `subsection.24' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `subsection*.24' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... Package hyperref Info: Anchor `testpiccy' on input line .... @@ -333,12 +333,12 @@ Package hyperref Info: bookmark on input line ...: (hyperref) type {lof}. Package hyperref Info: Anchor `figure.30' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... -Package hyperref Info: Anchor `section.31' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... +Package hyperref Info: Anchor `section*.31' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.6} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Some URLs} -(hyperref) reference {section.31} +(hyperref) reference {section*.31} (hyperref) toclevel {1} (hyperref) type {toc}. Underfull \hbox (badness 10000) in paragraph at lines ... @@ -1144,7 +1144,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active .\glue 12.0 plus 2.0 minus 2.0 .\glue -12.0 plus -2.0 minus -2.0 .\glue 20.0 plus 2.0 minus 4.0 -.\pdfdest name{section.28} xyz +.\pdfdest name{section*.28} xyz .\glue(\topskip) 1.00641 .\hbox(9.99359+0.1728)x360.0, glue set 288.17285fil, direction TLT ..\localpar @@ -1168,8 +1168,8 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\glue(\rightskip) 0.0 .\marks2{\__mark_value:nn {30}{\MakeUppercase []{2.5. \ three}}} .\marks3{\__mark_value:nn {31}{\MakeUppercase []{2.5. \ three}}} -.\write4{\protect \BOOKMARK [1][-]{section.28}{\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e}{chapter.14}% 13} -.\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.5}three}{\thepage }{section.28}\protected@file@percent }} +.\write4{\protect \BOOKMARK [1][-]{section*.28}{\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e}{chapter*.14}% 13} +.\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.5}three}{\thepage }{section*.28}\protected@file@percent }} .\penalty 10000 .\glue 10.85475 plus 0.94386 .\glue(\parskip) 0.0 plus 1.0 @@ -1221,7 +1221,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 1 ..\glue(\spaceskip) 3.64635 plus 1.82318 minus 1.21545 ..\TU/lmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section.22} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section*.22} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\TU/lmr/m/n/10.95 s ..\TU/lmr/m/n/10.95 e @@ -1239,7 +1239,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 3 ..\hbox(0.0+0.0)x0.0, direction TLT ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `section.22', line 125.} +..\write-{Package `hyperref' Info: End of reference (link) `section*.22', line 125.} ..\pdfendlink ..\TU/lmr/m/n/10.95 ) ..\TU/lmr/m/n/10.95 , @@ -1264,7 +1264,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 2 ..\glue(\spaceskip) 3.64635 plus 1.82318 minus 1.21545 ..\TU/lmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{subsection.24} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{subsection*.24} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\TU/lmr/m/n/10.95 s ..\TU/lmr/m/n/10.95 u @@ -1296,7 +1296,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 2 ..\hbox(0.0+0.0)x0.0, direction TLT ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `subsection.24', line 126.} +..\write-{Package `hyperref' Info: End of reference (link) `subsection*.24', line 126.} ..\pdfendlink ..\TU/lmr/m/n/10.95 ) ..\glue(\spaceskip) 3.64635 plus 1.82318 minus 1.21545 @@ -1317,7 +1317,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 2 ..\glue(\spaceskip) 3.64635 plus 1.82318 minus 1.21545 ..\TU/lmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section.25} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section*.25} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\TU/lmr/m/n/10.95 s ..\TU/lmr/m/n/10.95 e @@ -1335,7 +1335,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmr/m/n/10.95 4 ..\hbox(0.0+0.0)x0.0, direction TLT ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `section.25', line 126.} +..\write-{Package `hyperref' Info: End of reference (link) `section*.25', line 126.} ..\pdfendlink ..\TU/lmr/m/n/10.95 ) ..\TU/lmr/m/n/10.95 . @@ -1418,7 +1418,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmtt/m/n/10.95 i ..\TU/lmtt/m/n/10.95 s ..\glue(\spaceskip) 5.74875 -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{equation.33} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{equation*.33} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\TU/lmtt/m/n/10.95 E ..\TU/lmtt/m/n/10.95 q @@ -1435,7 +1435,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\TU/lmtt/m/n/10.95 1 ..\hbox(0.0+0.0)x0.0, direction TLT ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `equation.33', line 152.} +..\write-{Package `hyperref' Info: End of reference (link) `equation*.33', line 152.} ..\pdfendlink ..\TU/lmtt/m/n/10.95 > ..\TU/lmtt/m/n/10.95 > @@ -1447,12 +1447,12 @@ Underfull \vbox (badness 10000) has occurred while \output is active Package hyperref Info: Anchor `page.18' on input line .... [12 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 149. -Package `hyperref' Info: End of reference (link) `section.22', line 125. -Package `hyperref' Info: End of reference (link) `subsection.24', line 126. -Package `hyperref' Info: End of reference (link) `section.25', line 126. +Package `hyperref' Info: End of reference (link) `section*.22', line 125. +Package `hyperref' Info: End of reference (link) `subsection*.24', line 126. +Package `hyperref' Info: End of reference (link) `section*.25', line 126. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 127. Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 127. -Package `hyperref' Info: End of reference (link) `equation.33', line 152. +Package `hyperref' Info: End of reference (link) `equation*.33', line 152. ] Package hyperref Info: Anchor `page.19' on input line .... [13 @@ -1466,62 +1466,62 @@ Package `hyperref' Info: End of reference (link) `testpiccy', line 116. Package `hyperref' Info: End of reference (link) `testpiccy', line 116. Package `hyperref' Info: End of reference (link) `testpiccy', line 116. ] -Package hyperref Info: Anchor `section.32' on input line .... +Package hyperref Info: Anchor `section*.32' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.7} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Back to math} -(hyperref) reference {section.32} +(hyperref) reference {section*.32} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... -Package hyperref Info: Anchor `Item.36' on input line .... -Package hyperref Info: Anchor `Item.37' on input line .... -Package hyperref Info: Anchor `Item.38' on input line .... -Package hyperref Info: Anchor `Item.39' on input line .... -Package hyperref Info: Anchor `Item.40' on input line .... -Package hyperref Info: Anchor `Item.41' on input line .... -Package hyperref Info: Anchor `Item.42' on input line .... -Package hyperref Info: Anchor `Item.43' on input line .... -Package hyperref Info: Anchor `Item.44' on input line .... -Package hyperref Info: Anchor `Item.45' on input line .... +Package hyperref Info: Anchor `Item*.36' on input line .... +Package hyperref Info: Anchor `Item*.37' on input line .... +Package hyperref Info: Anchor `Item*.38' on input line .... +Package hyperref Info: Anchor `Item*.39' on input line .... +Package hyperref Info: Anchor `Item*.40' on input line .... +Package hyperref Info: Anchor `Item*.41' on input line .... +Package hyperref Info: Anchor `Item*.42' on input line .... +Package hyperref Info: Anchor `Item*.43' on input line .... +Package hyperref Info: Anchor `Item*.44' on input line .... +Package hyperref Info: Anchor `Item*.45' on input line .... Package hyperref Info: Anchor `page.20' on input line .... [14] -Package hyperref Info: Reference (link) `Item.41' on input line .... -Package hyperref Info: Reference (link) `Item.42' on input line .... -Package hyperref Info: Reference (link) `Item.44' on input line .... -Package hyperref Info: Reference (link) `Item.45' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... +Package hyperref Info: Reference (link) `Item*.41' on input line .... +Package hyperref Info: Reference (link) `Item*.42' on input line .... +Package hyperref Info: Reference (link) `Item*.44' on input line .... +Package hyperref Info: Reference (link) `Item*.45' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... Package hyperref Info: Reference (link) `figure.29' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Anchor `page.21' on input line .... [15 -Package `hyperref' Info: End of reference (link) `Item.41', line 219. -Package `hyperref' Info: End of reference (link) `Item.42', line 219. -Package `hyperref' Info: End of reference (link) `Item.44', line 219. -Package `hyperref' Info: End of reference (link) `Item.45', line 220. -Package `hyperref' Info: End of reference (link) `section.22', line 224. -Package `hyperref' Info: End of reference (link) `section.25', line 225. -Package `hyperref' Info: End of reference (link) `equation.33', line 226. +Package `hyperref' Info: End of reference (link) `Item*.41', line 219. +Package `hyperref' Info: End of reference (link) `Item*.42', line 219. +Package `hyperref' Info: End of reference (link) `Item*.44', line 219. +Package `hyperref' Info: End of reference (link) `Item*.45', line 220. +Package `hyperref' Info: End of reference (link) `section*.22', line 224. +Package `hyperref' Info: End of reference (link) `section*.25', line 225. +Package `hyperref' Info: End of reference (link) `equation*.33', line 226. Package `hyperref' Info: End of reference (link) `figure.29', line 227. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 228. ] Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\protect \numberline {\@nameuse {the\LTcaptype }}{A test long table (see \protect \cite {Dallas:aia} and section \protect \ref {sec1}}} @@ -1533,7 +1533,7 @@ ignored error Infinite glue shrinkage found in box being split Package hyperref Info: Anchor `page.22' on input line .... [16 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 232. -Package `hyperref' Info: End of reference (link) `section.22', line 232. +Package `hyperref' Info: End of reference (link) `section*.22', line 232. ] Package hyperref Info: Reference (link) `equation.2.2' on input line .... Package hyperref Info: Reference (link) `equation.35' on input line .... @@ -1609,4 +1609,4 @@ Package `hyperref' Info: End of reference (link) `page.ii', line 39. ]) (test1.aux) LaTeX Warning: There were undefined references. Package rerunfilecheck Info: File `test1.out' has not changed. -(rerunfilecheck) Checksum: E4C64B0886D76FA719CE3476389224C6;2267. +(rerunfilecheck) Checksum: FD2BE320F4D78D8629FD20E114C84785;2291. diff --git a/testfiles/test1.tlg b/testfiles/test1.tlg index 41faac9..8c66396 100644 --- a/testfiles/test1.tlg +++ b/testfiles/test1.tlg @@ -10,38 +10,38 @@ Package hyperref Info: Anchor `page.2' on input line .... Package hyperref Info: Anchor `chapter*.1' on input line .... (test1.toc Package hyperref Info: Reference (link) `chapter*.3' on input line .... -Package hyperref Info: Reference (link) `chapter.4' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Reference (link) `section.7' on input line .... -Package hyperref Info: Reference (link) `section.11' on input line .... -Package hyperref Info: Reference (link) `chapter.14' on input line .... -Package hyperref Info: Reference (link) `section.15' on input line .... -Package hyperref Info: Reference (link) `section.19' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `section.28' on input line .... -Package hyperref Info: Reference (link) `section.31' on input line .... -Package hyperref Info: Reference (link) `section.32' on input line .... +Package hyperref Info: Reference (link) `chapter*.4' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Reference (link) `section*.7' on input line .... +Package hyperref Info: Reference (link) `section*.11' on input line .... +Package hyperref Info: Reference (link) `chapter*.14' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... +Package hyperref Info: Reference (link) `section*.19' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `section*.28' on input line .... +Package hyperref Info: Reference (link) `section*.31' on input line .... +Package hyperref Info: Reference (link) `section*.32' on input line .... Package hyperref Info: Reference (link) `chapter*.46' on input line .... ) \tf@toc=\write... Package hyperref Info: Anchor `page.3' on input line .... [3 Package `hyperref' Info: End of reference (link) `chapter*.3', line 1. -Package `hyperref' Info: End of reference (link) `chapter.4', line 2. -Package `hyperref' Info: End of reference (link) `section.5', line 3. -Package `hyperref' Info: End of reference (link) `section.6', line 4. -Package `hyperref' Info: End of reference (link) `section.7', line 5. -Package `hyperref' Info: End of reference (link) `section.11', line 7. -Package `hyperref' Info: End of reference (link) `chapter.14', line 10. -Package `hyperref' Info: End of reference (link) `section.15', line 11. -Package `hyperref' Info: End of reference (link) `section.19', line 14. -Package `hyperref' Info: End of reference (link) `section.22', line 17. -Package `hyperref' Info: End of reference (link) `section.25', line 20. -Package `hyperref' Info: End of reference (link) `section.28', line 23. -Package `hyperref' Info: End of reference (link) `section.31', line 24. -Package `hyperref' Info: End of reference (link) `section.32', line 25. +Package `hyperref' Info: End of reference (link) `chapter*.4', line 2. +Package `hyperref' Info: End of reference (link) `section*.5', line 3. +Package `hyperref' Info: End of reference (link) `section*.6', line 4. +Package `hyperref' Info: End of reference (link) `section*.7', line 5. +Package `hyperref' Info: End of reference (link) `section*.11', line 7. +Package `hyperref' Info: End of reference (link) `chapter*.14', line 10. +Package `hyperref' Info: End of reference (link) `section*.15', line 11. +Package `hyperref' Info: End of reference (link) `section*.19', line 14. +Package `hyperref' Info: End of reference (link) `section*.22', line 17. +Package `hyperref' Info: End of reference (link) `section*.25', line 20. +Package `hyperref' Info: End of reference (link) `section*.28', line 23. +Package `hyperref' Info: End of reference (link) `section*.31', line 24. +Package `hyperref' Info: End of reference (link) `section*.32', line 25. Package `hyperref' Info: End of reference (link) `chapter*.46', line 26. ] Package hyperref Info: Anchor `page.4' on input line .... @@ -50,14 +50,14 @@ Package hyperref Info: Anchor `page.4' on input line .... Package hyperref Info: Anchor `chapter*.2' on input line .... (test1.lot Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... ) \tf@lot=\write... Package hyperref Info: Anchor `page.5' on input line .... [5 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 3. -Package `hyperref' Info: End of reference (link) `section.22', line 3. +Package `hyperref' Info: End of reference (link) `section*.22', line 3. Package `hyperref' Info: End of reference (link) `table.2.1', line 3. ] Package hyperref Info: Anchor `page.6' on input line .... @@ -86,39 +86,39 @@ Package `hyperref' Info: End of reference (link) `figure.30', line 4. Package hyperref Info: Anchor `page.8' on input line .... [2 ] -Package hyperref Info: Anchor `chapter.4' on input line .... +Package hyperref Info: Anchor `chapter*.4' on input line .... Chapter 1. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1} (hyperref) text {\protect \numberline {\thechapter }First part} -(hyperref) reference {chapter.4} +(hyperref) reference {chapter*.4} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.5' on input line .... -Package hyperref Info: Reference (link) `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Test section} -(hyperref) reference {section.5} +(hyperref) reference {section*.5} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Reference (link) `section.5' on input line .... -Package hyperref Info: Anchor `section.6' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Reference (link) `section*.5' on input line .... +Package hyperref Info: Anchor `section*.6' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section One --- cats} -(hyperref) reference {section.6} +(hyperref) reference {section*.6} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.15' on input line .... +Package hyperref Info: Reference (link) `section*.15' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... -Package hyperref Info: Anchor `section.7' on input line .... +Package hyperref Info: Anchor `section*.7' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi one.1 -- can we see} -(hyperref) reference {section.7} +(hyperref) reference {section*.7} (hyperref) toclevel {1} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.8' on input line .... @@ -126,21 +126,21 @@ Package hyperref Info: Anchor `Hfootnote.8' on input line .... Package hyperref Info: Reference (link) `Hfootnote.9' on input line .... Package hyperref Info: Anchor `Hfootnote.9' on input line .... Package hyperref Info: Reference (link) `table.2.1' on input line .... -Package hyperref Info: Anchor `subsection.10' on input line .... +Package hyperref Info: Anchor `subsection*.10' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi one.2} -(hyperref) reference {subsection.10} +(hyperref) reference {subsection*.10} (hyperref) toclevel {2} (hyperref) type {toc}. LaTeX Warning: Reference `ss:first' on page 3 undefined on input line .... Package hyperref Info: Anchor `page.9' on input line .... [3 -Package `hyperref' Info: End of reference (link) `section.5', line 50. -Package `hyperref' Info: End of reference (link) `section.6', line 53. -Package `hyperref' Info: End of reference (link) `section.5', line 54. -Package `hyperref' Info: End of reference (link) `section.5', line 54. -Package `hyperref' Info: End of reference (link) `section.15', line 57. +Package `hyperref' Info: End of reference (link) `section*.5', line 50. +Package `hyperref' Info: End of reference (link) `section*.6', line 53. +Package `hyperref' Info: End of reference (link) `section*.5', line 54. +Package `hyperref' Info: End of reference (link) `section*.5', line 54. +Package `hyperref' Info: End of reference (link) `section*.15', line 57. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 59. Package `hyperref' Info: End of reference (link) `Hfootnote.8', line 62. Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. @@ -153,25 +153,25 @@ Package hyperref Info: Anchor `page.10' on input line .... Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. Package `hyperref' Info: End of reference (link) `Hfootnote.9', line 64. ] -Package hyperref Info: Anchor `section.11' on input line .... +Package hyperref Info: Anchor `section*.11' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {1.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Two --- \TeX \ is a dog} -(hyperref) reference {section.11} +(hyperref) reference {section*.11} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.12' on input line .... +Package hyperref Info: Anchor `subsection*.12' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.1} -(hyperref) reference {subsection.12} +(hyperref) reference {subsection*.12} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.13' on input line .... +Package hyperref Info: Anchor `subsection*.13' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi two.2} -(hyperref) reference {subsection.13} +(hyperref) reference {subsection*.13} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.11' on input line .... @@ -181,62 +181,62 @@ Package hyperref Info: Anchor `page.12' on input line .... [6 Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 92. ] -Package hyperref Info: Anchor `chapter.14' on input line .... +Package hyperref Info: Anchor `chapter*.14' on input line .... Chapter 2. Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2} (hyperref) text {\protect \numberline {\thechapter }Second part} -(hyperref) reference {chapter.14} +(hyperref) reference {chapter*.14} (hyperref) toclevel {0} (hyperref) type {toc}. -Package hyperref Info: Anchor `section.15' on input line .... +Package hyperref Info: Anchor `section*.15' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Three --- Camels} -(hyperref) reference {section.15} +(hyperref) reference {section*.15} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.6' on input line .... -Package hyperref Info: Anchor `subsection.16' on input line .... +Package hyperref Info: Reference (link) `section*.6' on input line .... +Package hyperref Info: Anchor `subsection*.16' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.1} -(hyperref) reference {subsection.16} +(hyperref) reference {subsection*.16} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `Hfootnote.17' on input line .... Package hyperref Info: Anchor `Hfootnote.17' on input line .... -Package hyperref Info: Anchor `subsection.18' on input line .... +Package hyperref Info: Anchor `subsection*.18' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {I -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi three.2} -(hyperref) reference {subsection.18} +(hyperref) reference {subsection*.18} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.13' on input line .... [7 -Package `hyperref' Info: End of reference (link) `section.6', line 96. +Package `hyperref' Info: End of reference (link) `section*.6', line 96. Package `hyperref' Info: End of reference (link) `Hfootnote.17', line 98. ] -Package hyperref Info: Anchor `section.19' on input line .... +Package hyperref Info: Anchor `section*.19' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.2} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Section Four --- Butterflies} -(hyperref) reference {section.19} +(hyperref) reference {section*.19} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.20' on input line .... +Package hyperref Info: Anchor `subsection*.20' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.1} -(hyperref) reference {subsection.20} +(hyperref) reference {subsection*.20} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.21' on input line .... +Package hyperref Info: Anchor `subsection*.21' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {II -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi four.2} -(hyperref) reference {subsection.21} +(hyperref) reference {subsection*.21} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Reference (link) `test.test1' on input line .... @@ -244,27 +244,27 @@ Package hyperref Info: Anchor `page.14' on input line .... [8 Package `hyperref' Info: End of reference (link) `test.test1', line 107. ] -Package hyperref Info: Anchor `section.22' on input line .... +Package hyperref Info: Anchor `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.3} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Introduction} -(hyperref) reference {section.22} +(hyperref) reference {section*.22} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.23' on input line .... +Package hyperref Info: Anchor `subsection*.23' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.23} +(hyperref) reference {subsection*.23} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.15' on input line .... [9] -Package hyperref Info: Anchor `subsection.24' on input line .... +Package hyperref Info: Anchor `subsection*.24' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {III -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi subsec} -(hyperref) reference {subsection.24} +(hyperref) reference {subsection*.24} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `test.test1' on input line .... @@ -282,39 +282,39 @@ Package hyperref Info: Anchor `page.16' on input line .... [10 Package `hyperref' Info: End of reference (link) `testpiccy', line 116. <./picture.png (PNG copy)>] -Package hyperref Info: Anchor `section.25' on input line .... +Package hyperref Info: Anchor `section*.25' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.4} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi two} -(hyperref) reference {section.25} +(hyperref) reference {section*.25} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.26' on input line .... +Package hyperref Info: Anchor `subsection*.26' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 1} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 2} -(hyperref) reference {subsection.26} +(hyperref) reference {subsection*.26} (hyperref) toclevel {2} (hyperref) type {toc}. -Package hyperref Info: Anchor `subsection.27' on input line .... +Package hyperref Info: Anchor `subsection*.27' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {IV -- 2} (hyperref) text {\ifnum 2>\c@secnumdepth \else \protect \numberline {\csname thesubsection\endcsname }\fi Subsection 3} -(hyperref) reference {subsection.27} +(hyperref) reference {subsection*.27} (hyperref) toclevel {2} (hyperref) type {toc}. Package hyperref Info: Anchor `page.17' on input line .... [11] -Package hyperref Info: Anchor `section.28' on input line .... +Package hyperref Info: Anchor `section*.28' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.5} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi three} -(hyperref) reference {section.28} +(hyperref) reference {section*.28} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `subsection.24' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `subsection*.24' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... Package hyperref Info: Anchor `testpiccy' on input line .... @@ -333,12 +333,12 @@ Package hyperref Info: bookmark on input line ...: (hyperref) type {lof}. Package hyperref Info: Anchor `figure.30' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... -Package hyperref Info: Anchor `section.31' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... +Package hyperref Info: Anchor `section*.31' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.6} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Some URLs} -(hyperref) reference {section.31} +(hyperref) reference {section*.31} (hyperref) toclevel {1} (hyperref) type {toc}. Underfull \hbox (badness 10000) in paragraph at lines ... @@ -1075,7 +1075,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active .\glue 12.0 plus 2.0 minus 2.0 .\glue -12.0 plus -2.0 minus -2.0 .\glue 20.0 plus 2.0 minus 4.0 -.\pdfdest name{section.28} xyz +.\pdfdest name{section*.28} xyz .\glue(\topskip) 1.00002 .\hbox(9.99998+0.0)x360.0, glue set 286.40009fil ..\hbox(9.27998+0.0)x36.89995 @@ -1094,8 +1094,8 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\glue(\rightskip) 0.0 .\marks2{\__mark_value:nn {30}{\MakeUppercase []{2.5. \ three}}} .\marks3{\__mark_value:nn {31}{\MakeUppercase []{2.5. \ three}}} -.\write4{\protect \BOOKMARK [1][-]{section.28}{\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e}{chapter.14}% 13} -.\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.5}three}{\thepage }{section.28}\protected@file@percent }} +.\write4{\protect \BOOKMARK [1][-]{section*.28}{\376\377\0002\000.\0005\000\040\000t\000h\000r\000e\000e}{chapter*.14}% 13} +.\write1{\@writefile{toc}{\protect \contentsline {section}{\protect \numberline {2.5}three}{\thepage }{section*.28}\protected@file@percent }} .\penalty 10000 .\glue 10.84352 plus 0.94289 .\glue(\parskip) 0.0 plus 1.0 @@ -1136,7 +1136,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 1 ..\glue 3.65 plus 1.825 minus 1.21666 ..\OT1/cmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section.22} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section*.22} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\OT1/cmr/m/n/10.95 s ..\OT1/cmr/m/n/10.95 e @@ -1152,7 +1152,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 3 ..\hbox(0.0+0.0)x0.0 ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `section.22', line 125.} +..\write-{Package `hyperref' Info: End of reference (link) `section*.22', line 125.} ..\pdfendlink ..\OT1/cmr/m/n/10.95 ) ..\OT1/cmr/m/n/10.95 , @@ -1173,7 +1173,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 2 ..\glue 3.65 plus 1.825 minus 1.21666 ..\OT1/cmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{subsection.24} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{subsection*.24} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\OT1/cmr/m/n/10.95 s ..\OT1/cmr/m/n/10.95 u @@ -1202,7 +1202,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 2 ..\hbox(0.0+0.0)x0.0 ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `subsection.24', line 126.} +..\write-{Package `hyperref' Info: End of reference (link) `subsection*.24', line 126.} ..\pdfendlink ..\OT1/cmr/m/n/10.95 ) ..\glue 3.65 plus 1.825 minus 1.21666 @@ -1221,7 +1221,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 2 ..\glue 3.65 plus 1.825 minus 1.21666 ..\OT1/cmr/m/n/10.95 ( -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section.25} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{section*.25} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\OT1/cmr/m/n/10.95 s ..\OT1/cmr/m/n/10.95 e @@ -1237,7 +1237,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmr/m/n/10.95 4 ..\hbox(0.0+0.0)x0.0 ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `section.25', line 126.} +..\write-{Package `hyperref' Info: End of reference (link) `section*.25', line 126.} ..\pdfendlink ..\OT1/cmr/m/n/10.95 ) ..\OT1/cmr/m/n/10.95 . @@ -1309,7 +1309,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmtt/m/n/10.95 i ..\OT1/cmtt/m/n/10.95 s ..\glue 5.74869 -..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{equation.33} +..\pdfstartlink(*+*)x* attr{/Border[0 0 0]/H/I/C[1 0 0]} action goto name{equation*.33} ..\pdfcolorstack 0 push {1 0 0 rg 1 0 0 RG} ..\OT1/cmtt/m/n/10.95 E ..\OT1/cmtt/m/n/10.95 q @@ -1326,7 +1326,7 @@ Underfull \vbox (badness 10000) has occurred while \output is active ..\OT1/cmtt/m/n/10.95 1 ..\hbox(0.0+0.0)x0.0 ..\pdfcolorstack 0 pop -..\write-{Package `hyperref' Info: End of reference (link) `equation.33', line 152.} +..\write-{Package `hyperref' Info: End of reference (link) `equation*.33', line 152.} ..\pdfendlink ..\OT1/cmtt/m/n/10.95 > ..\OT1/cmtt/m/n/10.95 > @@ -1338,12 +1338,12 @@ Underfull \vbox (badness 10000) has occurred while \output is active Package hyperref Info: Anchor `page.18' on input line .... [12 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 149. -Package `hyperref' Info: End of reference (link) `section.22', line 125. -Package `hyperref' Info: End of reference (link) `subsection.24', line 126. -Package `hyperref' Info: End of reference (link) `section.25', line 126. +Package `hyperref' Info: End of reference (link) `section*.22', line 125. +Package `hyperref' Info: End of reference (link) `subsection*.24', line 126. +Package `hyperref' Info: End of reference (link) `section*.25', line 126. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 127. Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 127. -Package `hyperref' Info: End of reference (link) `equation.33', line 152. +Package `hyperref' Info: End of reference (link) `equation*.33', line 152. ] Package hyperref Info: Anchor `page.19' on input line .... [13 @@ -1357,62 +1357,62 @@ Package `hyperref' Info: End of reference (link) `testpiccy', line 116. Package `hyperref' Info: End of reference (link) `testpiccy', line 116. Package `hyperref' Info: End of reference (link) `testpiccy', line 116. ] -Package hyperref Info: Anchor `section.32' on input line .... +Package hyperref Info: Anchor `section*.32' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.7} (hyperref) text {\ifnum 1>\c@secnumdepth \else \protect \numberline {\csname thesection\endcsname }\fi Back to math} -(hyperref) reference {section.32} +(hyperref) reference {section*.32} (hyperref) toclevel {1} (hyperref) type {toc}. -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.33' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... -Package hyperref Info: Anchor `equation.34' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.33' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... +Package hyperref Info: Anchor `equation*.34' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... Package hyperref Info: Anchor `equation.35' on input line .... -Package hyperref Info: Anchor `Item.36' on input line .... -Package hyperref Info: Anchor `Item.37' on input line .... -Package hyperref Info: Anchor `Item.38' on input line .... -Package hyperref Info: Anchor `Item.39' on input line .... -Package hyperref Info: Anchor `Item.40' on input line .... -Package hyperref Info: Anchor `Item.41' on input line .... -Package hyperref Info: Anchor `Item.42' on input line .... -Package hyperref Info: Anchor `Item.43' on input line .... -Package hyperref Info: Anchor `Item.44' on input line .... -Package hyperref Info: Anchor `Item.45' on input line .... +Package hyperref Info: Anchor `Item*.36' on input line .... +Package hyperref Info: Anchor `Item*.37' on input line .... +Package hyperref Info: Anchor `Item*.38' on input line .... +Package hyperref Info: Anchor `Item*.39' on input line .... +Package hyperref Info: Anchor `Item*.40' on input line .... +Package hyperref Info: Anchor `Item*.41' on input line .... +Package hyperref Info: Anchor `Item*.42' on input line .... +Package hyperref Info: Anchor `Item*.43' on input line .... +Package hyperref Info: Anchor `Item*.44' on input line .... +Package hyperref Info: Anchor `Item*.45' on input line .... Package hyperref Info: Anchor `page.20' on input line .... [14] -Package hyperref Info: Reference (link) `Item.41' on input line .... -Package hyperref Info: Reference (link) `Item.42' on input line .... -Package hyperref Info: Reference (link) `Item.44' on input line .... -Package hyperref Info: Reference (link) `Item.45' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... -Package hyperref Info: Reference (link) `section.25' on input line .... -Package hyperref Info: Reference (link) `equation.33' on input line .... +Package hyperref Info: Reference (link) `Item*.41' on input line .... +Package hyperref Info: Reference (link) `Item*.42' on input line .... +Package hyperref Info: Reference (link) `Item*.44' on input line .... +Package hyperref Info: Reference (link) `Item*.45' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... +Package hyperref Info: Reference (link) `section*.25' on input line .... +Package hyperref Info: Reference (link) `equation*.33' on input line .... Package hyperref Info: Reference (link) `figure.29' on input line .... Package hyperref Info: Reference (cite) `cite.Barcelo:1992:caa' on input line .... Package hyperref Info: Anchor `page.21' on input line .... [15 -Package `hyperref' Info: End of reference (link) `Item.41', line 219. -Package `hyperref' Info: End of reference (link) `Item.42', line 219. -Package `hyperref' Info: End of reference (link) `Item.44', line 219. -Package `hyperref' Info: End of reference (link) `Item.45', line 220. -Package `hyperref' Info: End of reference (link) `section.22', line 224. -Package `hyperref' Info: End of reference (link) `section.25', line 225. -Package `hyperref' Info: End of reference (link) `equation.33', line 226. +Package `hyperref' Info: End of reference (link) `Item*.41', line 219. +Package `hyperref' Info: End of reference (link) `Item*.42', line 219. +Package `hyperref' Info: End of reference (link) `Item*.44', line 219. +Package `hyperref' Info: End of reference (link) `Item*.45', line 220. +Package `hyperref' Info: End of reference (link) `section*.22', line 224. +Package `hyperref' Info: End of reference (link) `section*.25', line 225. +Package `hyperref' Info: End of reference (link) `equation*.33', line 226. Package `hyperref' Info: End of reference (link) `figure.29', line 227. Package `hyperref' Info: End of reference (cite) `cite.Barcelo:1992:caa', line 228. ] Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: Reference (cite) `cite.Dallas:aia' on input line .... -Package hyperref Info: Reference (link) `section.22' on input line .... +Package hyperref Info: Reference (link) `section*.22' on input line .... Package hyperref Info: bookmark on input line ...: (hyperref) thecounter {2.1} (hyperref) text {\protect \numberline {\@nameuse {the\LTcaptype }}{A test long table (see \protect \cite {Dallas:aia} and section \protect \ref {sec1}}} @@ -1424,7 +1424,7 @@ ignored error: Infinite glue shrinkage found in box being split Package hyperref Info: Anchor `page.22' on input line .... [16 Package `hyperref' Info: End of reference (cite) `cite.Dallas:aia', line 232. -Package `hyperref' Info: End of reference (link) `section.22', line 232. +Package `hyperref' Info: End of reference (link) `section*.22', line 232. ] Package hyperref Info: Reference (link) `equation.2.2' on input line .... Package hyperref Info: Reference (link) `equation.35' on input line .... @@ -1500,4 +1500,4 @@ Package `hyperref' Info: End of reference (link) `page.ii', line 39. ]) (test1.aux) LaTeX Warning: There were undefined references. Package rerunfilecheck Info: File `test1.out' has not changed. -(rerunfilecheck) Checksum: E4C64B0886D76FA719CE3476389224C6;2267. +(rerunfilecheck) Checksum: FD2BE320F4D78D8629FD20E114C84785;2291.