[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[7025] tp remove setcontentsaftertitlepage
From: |
Gavin D. Smith |
Subject: |
[7025] tp remove setcontentsaftertitlepage |
Date: |
Sun, 21 Feb 2016 13:57:22 +0000 |
Revision: 7025
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=7025
Author: gavin
Date: 2016-02-21 13:56:34 +0000 (Sun, 21 Feb 2016)
Log Message:
-----------
tp remove setcontentsaftertitlepage
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/Texinfo/Common.pm
trunk/tp/Texinfo/Convert/Converter.pm
trunk/tp/Texinfo/Convert/HTML.pm
trunk/tp/Texinfo/Convert/Plaintext.pm
trunk/tp/t/30sectioning.t
trunk/tp/t/results/info_tests/contents_setcontentsaftertitlepage_before_node.pl
trunk/tp/t/results/sectioning/section_in_unnumbered_info.pl
trunk/tp/t/results/sectioning/section_in_unnumbered_plaintext.pl
Removed Paths:
-------------
trunk/tp/t/results/sectioning/setcontentsaftertitlepage.pl
trunk/tp/t/results/sectioning/setshortcontentsaftertitlepage.pl
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/ChangeLog 2016-02-21 13:56:34 UTC (rev 7025)
@@ -1,3 +1,31 @@
+2016-02-21 Gavin Smith <address@hidden>
+
+ * tp/Texinfo/Common.pm (%misc_commands): Move
+ 'setcontentsaftertitlepage' and 'setshortcontentsaftertitlepage'
+ to obsolete section.
+ (%deprecated_commands): Add these two commands.
+
+ * tp/Texinfo/Common.pm (%document_settable_unique_at_commands):
+ Remove these two commands.
+ * tp/Texinfo/Convert/Converter.pm (converter): Remove handling
+ of these two commands.
+
+ * tp/Texinfo/Convert/HTML.pm (@informative_global_commands):
+ Remove these two commands.
+ * tp/Texinfo/Convert/Plaintext.pm (@informative_global_commands):
+ Remove these two commands.
+ (_convert) <sectioning commands, @contents, @shortcontents>:
+ Remove handling of these two commands.
+ (_prepare_special_element, _prepare_contents_elements)
+ (_convert_informative_command): Remove handling of these two
+ commands.
+ (_contents_short_contents_in_title): Removed.
+
+ * tp/t/30sectioning.t (setcontentsaftertitlepage)
+ (setshortcontentsaftertitlepage): Remove tests.
+ (section_in_unnumbered_plaintext, section_in_unnumbered_info): Remove
+ use of @setcontentsaftertitlepage in tests.
+
2016-02-20 Gavin Smith <address@hidden>
* doc/texinfo.tex (\setchapterstyle): Remove implementation.
Modified: trunk/tp/Texinfo/Common.pm
===================================================================
--- trunk/tp/Texinfo/Common.pm 2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/tp/Texinfo/Common.pm 2016-02-21 13:56:34 UTC (rev 7025)
@@ -182,9 +182,7 @@
# FIXME not clear here.
'pagesizes' => undef,
'setchapternewpage' => 'on',
- 'setcontentsaftertitlepage' => 0,
'setfilename' => undef,
- 'setshortcontentsaftertitlepage' => 0,
'everyheading' => undef,
'everyfooting' => undef,
'evenheading' => undef,
@@ -426,8 +424,6 @@
'insertcopying' => 'noarg', # no arg
'clickstyle' => 'special', # arg should be an @-command
# more relevant in preamble
- 'setcontentsaftertitlepage' => 'skipline', # no arg
- 'setshortcontentsaftertitlepage' => 'skipline', # no arg
'documentencoding' => 'text', # or 1?
'novalidate' => 'skipline', # no arg
'validatemenus' => 1, # on off
@@ -514,6 +510,8 @@
'vskip' => 'lineraw', # arg line in TeX
# obsolete @-commands.
'refill' => 'noarg', # no arg (obsolete, to be ignored)
+ 'setcontentsaftertitlepage' => 'skipline', # no arg
+ 'setshortcontentsaftertitlepage' => 'skipline', # no arg
# Remove spaces and end of lines after the
# commands? If no, they can lead to empty lines
'quote-arg' => 'skipline',
@@ -880,6 +878,13 @@
'ctrl' => '',
'allow-recursion' => N__('recursion is always allowed'),
'quote-arg' => N__('arguments are quoted by default'),
+
+ 'setcontentsaftertitlepage' =>
+N__('move your @contents command if you want the contents after the title
page'),
+
+ 'setshortcontentsaftertitlepage' =>
+N__('move your @shortcontents and @contents commands if you want the contents
after the title page'),
+
);
my %unformatted_block_commands;
Modified: trunk/tp/Texinfo/Convert/Converter.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Converter.pm 2016-02-20 22:49:56 UTC (rev
7024)
+++ trunk/tp/Texinfo/Convert/Converter.pm 2016-02-21 13:56:34 UTC (rev
7025)
@@ -245,16 +245,6 @@
}
}
}
- $converter->set_conf('setcontentsaftertitlepage', 1)
- if ($converter->get_conf('contents')
- and $converter->{'extra'}->{'setcontentsaftertitlepage'}
- and $converter->{'structuring'}
- and $converter->{'structuring'}->{'sectioning_root'});
- $converter->set_conf('setshortcontentsaftertitlepage', 1)
- if ($converter->get_conf('shortcontents')
- and $converter->{'extra'}->{'setshortcontentsaftertitlepage'}
- and $converter->{'structuring'}
- and $converter->{'structuring'}->{'sectioning_root'});
$converter->{'gettext'} = $converter->{'parser'}->{'gettext'};
$converter->{'pgettext'} = $converter->{'parser'}->{'pgettext'};
delete $conf->{'parser'};
@@ -372,12 +362,14 @@
}
}
+use Carp;
sub get_conf($$)
{
my $self = shift;
my $conf = shift;
if (!Texinfo::Common::valid_option($conf)) {
- warn "BUG: unknown option $conf\n";
+ cluck "CBUG: unknown option $conf\n";
+ die;
return undef;
}
return $self->{'conf'}->{$conf};
@@ -389,7 +381,7 @@
my $conf = shift;
my $value = shift;
if (!Texinfo::Common::valid_option($conf)) {
- warn "BUG: unknown option $conf\n";
+ die "BBUG: unknown option $conf\n";
return undef;
} elsif (Texinfo::Common::obsolete_option($conf)) {
warn(sprintf(main::__("Obsolete variable %s\n"), $conf));
@@ -408,7 +400,7 @@
my $conf = shift;
my $value = shift;
if (!Texinfo::Common::valid_option($conf)) {
- warn "BUG: unknown option $conf\n";
+ die "ABUG: unknown option $conf\n";
return undef;
} elsif (Texinfo::Common::obsolete_option($conf)) {
warn(sprintf(main::__("Obsolete variable %s\n"), $conf));
Modified: trunk/tp/Texinfo/Convert/HTML.pm
===================================================================
--- trunk/tp/Texinfo/Convert/HTML.pm 2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/tp/Texinfo/Convert/HTML.pm 2016-02-21 13:56:34 UTC (rev 7025)
@@ -1137,7 +1137,6 @@
my @informative_global_commands = ('contents', 'shortcontents',
'summarycontents', 'allowcodebreaks', 'documentlanguage',
'footnotestyle', 'documentencoding',
- 'setcontentsaftertitlepage', 'setshortcontentsaftertitlepage',
'xrefautomaticsectiontitle', 'deftypefnnewline');
# taken from global
# 'documentencoding'
@@ -3543,8 +3542,7 @@
and ($cmdname eq 'contents' or $cmdname eq 'shortcontents')
and $self->get_conf($cmdname)
and $self->{'structuring'} and
$self->{'structuring'}->{'sectioning_root'}
- and scalar(@{$self->{'structuring'}->{'sections_list'}}) > 1
- and ! $self->get_conf('set'.$cmdname.'aftertitlepage')) {
+ and scalar(@{$self->{'structuring'}->{'sections_list'}}) > 1) {
return $self->_contents_inline_element($cmdname, $command);
}
if ($cmdname eq 'documentlanguage') {
@@ -4306,27 +4304,6 @@
$default_types_conversion{'text_root'} = \&_convert_root_text_type;
-sub _contents_shortcontents_in_title($)
-{
- my $self = shift;
-
- my $result = '';
-
- if ($self->{'structuring'} and $self->{'structuring'}->{'sectioning_root'}
- and scalar(@{$self->{'structuring'}->{'sections_list'}}) > 1) {
- foreach my $command ('contents', 'shortcontents') {
- if ($self->get_conf($command)
- and $self->get_conf('set'.$command.'aftertitlepage')) {
- my $contents_text = $self->_contents_inline_element($command, undef);
- if ($contents_text ne '') {
- $result .= $contents_text . $self->get_conf('DEFAULT_RULE')."\n";
- }
- }
- }
- }
- return $result;
-}
-
# Convert @titlepage. Falls back to simpletitle.
sub _default_titlepage($)
{
@@ -4346,7 +4323,6 @@
my $result = '';
$result .= $titlepage_text.$self->get_conf('DEFAULT_RULE')."\n"
if (defined($titlepage_text));
- $result .= $self->_contents_shortcontents_in_title();
return $result;
}
@@ -4366,7 +4342,6 @@
0, {'cmdname' => 'settitle',
'contents' => $self->{'simpletitle_tree'}->{'contents'}});
}
- $result .= $self->_contents_shortcontents_in_title();
}
}
return $result;
@@ -5437,9 +5412,7 @@
foreach my $cmdname ('contents', 'shortcontents') {
my $type = $contents_command_element_name{$cmdname};
if ($self->get_conf($cmdname)) {
- if ($self->get_conf('INLINE_CONTENTS')
- or ($self->get_conf('set'.$cmdname.'aftertitlepage'))) {
- } else {
+ if (not $self->get_conf('INLINE_CONTENTS')) {
$do_special{$type} = 1;
}
}
@@ -5551,11 +5524,7 @@
my $type = $contents_command_element_name{$cmdname};
if ($self->get_conf($cmdname)) {
my $default_filename;
- if ($self->get_conf('set'.$cmdname.'aftertitlepage')) {
- if ($self->{'elements'}) {
- $default_filename = $self->{'elements'}->[0]->{'filename'};
- }
- } elsif ($self->get_conf('INLINE_CONTENTS')) {
+ if ($self->get_conf('INLINE_CONTENTS')) {
if ($self->{'extra'} and $self->{'extra'}->{$cmdname}) {
foreach my $command(@{$self->{'extra'}->{$cmdname}}) {
my ($element, $root_command)
Modified: trunk/tp/Texinfo/Convert/Plaintext.pm
===================================================================
--- trunk/tp/Texinfo/Convert/Plaintext.pm 2016-02-20 22:49:56 UTC (rev
7024)
+++ trunk/tp/Texinfo/Convert/Plaintext.pm 2016-02-21 13:56:34 UTC (rev
7025)
@@ -64,8 +64,7 @@
my @informative_global_commands = ('paragraphindent', 'firstparagraphindent',
'frenchspacing', 'documentencoding', 'footnotestyle', 'documentlanguage',
-'contents', 'shortcontents', 'summarycontents', 'setcontentsaftertitlepage',
-'setshortcontentsaftertitlepage', 'deftypefnnewline');
+'contents', 'shortcontents', 'summarycontents', 'deftypefnnewline');
my %informative_commands;
foreach my $informative_command (@informative_global_commands) {
@@ -2539,37 +2538,6 @@
$result .= $self->_node($root);
$self->{'format_context'}->[-1]->{'paragraph_count'} = 0;
} elsif ($sectioning_commands{$root->{'cmdname'}}) {
- if ($self->get_conf('setcontentsaftertitlepage')
- and $root_commands{$root->{'cmdname'}}
- and !$self->{'setcontentsaftertitlepage_done'}) {
- my ($contents, $lines_count)
- =
$self->_contents($self->{'structuring'}->{'sectioning_root'},
- 'contents');
- if ($contents ne '') {
- $contents .= "\n";
- $self->{'empty_lines_count'} = 1;
- _add_text_count($self, $contents);
- _add_lines_count($self, $lines_count+1);
- }
- $self->{'setcontentsaftertitlepage_done'} = 1;
- $result .= $contents;
- }
- if ($self->get_conf('setshortcontentsaftertitlepage')
- and $root_commands{$root->{'cmdname'}}
- and !$self->{'setshortcontentsaftertitlepage_done'}) {
- my ($contents, $lines_count)
- =
$self->_contents($self->{'structuring'}->{'sectioning_root'},
- 'shortcontents');
- if ($contents ne '') {
- $contents .= "\n";
- $self->{'empty_lines_count'} = 1;
- _add_text_count($self, $contents);
- _add_lines_count($self, $lines_count+1);
- }
-
- $self->{'setshortcontentsaftertitlepage_done'} = 1;
- $result .= $contents;
- }
# use settitle for empty @top
# ignore @part
my $contents;
@@ -2822,9 +2790,8 @@
}
return $result;
} elsif ($root->{'cmdname'} eq 'contents') {
- if (!defined($self->get_conf('setcontentsaftertitlepage'))
- and $self->{'structuring'}
- and $self->{'structuring'}->{'sectioning_root'}) {
+ if ($self->{'structuring'}
+ and $self->{'structuring'}->{'sectioning_root'}) {
my $lines_count;
($result, $lines_count)
= $self->_contents($self->{'structuring'}->{'sectioning_root'},
@@ -2835,8 +2802,7 @@
return $result;
} elsif ($root->{'cmdname'} eq 'shortcontents'
or $root->{'cmdname'} eq 'summarycontents') {
- if (!defined($self->get_conf('setshortcontentsaftertitlepage'))
- and $self->{'structuring'}
+ if ($self->{'structuring'}
and $self->{'structuring'}->{'sectioning_root'}) {
my $lines_count;
($result, $lines_count)
Modified: trunk/tp/t/30sectioning.t
===================================================================
--- trunk/tp/t/30sectioning.t 2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/tp/t/30sectioning.t 2016-02-21 13:56:34 UTC (rev 7025)
@@ -81,8 +81,6 @@
';
my $section_in_unnumbered_text = '
address@hidden
-
@node Top
@top Test section in unnumbered
@@ -305,20 +303,6 @@
';
my @tests_converted = (
-['setcontentsaftertitlepage',
-'@setcontentsaftertitlepage
-'
-.$test_text.
-'
address@hidden
-'],
-['setshortcontentsaftertitlepage',
-'@setshortcontentsaftertitlepage
-'
-.$test_text.
-'
address@hidden
-'],
['contents',
$test_text.
'
Modified:
trunk/tp/t/results/info_tests/contents_setcontentsaftertitlepage_before_node.pl
===================================================================
---
trunk/tp/t/results/info_tests/contents_setcontentsaftertitlepage_before_node.pl
2016-02-20 22:49:56 UTC (rev 7024)
+++
trunk/tp/t/results/info_tests/contents_setcontentsaftertitlepage_before_node.pl
2016-02-21 13:56:34 UTC (rev 7025)
@@ -42,11 +42,6 @@
}
],
'cmdname' => 'setcontentsaftertitlepage',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 3,
- 'macro' => ''
- },
'parent' => {}
},
{
@@ -245,7 +240,17 @@
}
};
-$result_errors{'contents_setcontentsaftertitlepage_before_node'} = [];
+$result_errors{'contents_setcontentsaftertitlepage_before_node'} = [
+ {
+ 'error_line' => ':3: warning: @setcontentsaftertitlepage is obsolete; move
your @contents command if you want the contents after the title page
+',
+ 'file_name' => '',
+ 'line_nr' => 3,
+ 'macro' => '',
+ 'text' => '@setcontentsaftertitlepage is obsolete; move your @contents
command if you want the contents after the title page',
+ 'type' => 'warning'
+ }
+];
Modified: trunk/tp/t/results/sectioning/section_in_unnumbered_info.pl
===================================================================
--- trunk/tp/t/results/sectioning/section_in_unnumbered_info.pl 2016-02-20
22:49:56 UTC (rev 7024)
+++ trunk/tp/t/results/sectioning/section_in_unnumbered_info.pl 2016-02-21
13:56:34 UTC (rev 7025)
@@ -14,29 +14,6 @@
'text' => '
',
'type' => 'empty_line'
- },
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'setcontentsaftertitlepage',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 2,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
}
],
'parent' => {},
@@ -86,7 +63,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 4,
+ 'line_nr' => 2,
'macro' => ''
},
'parent' => {}
@@ -138,7 +115,7 @@
'cmdname' => 'contents',
'line_nr' => {
'file_name' => '',
- 'line_nr' => 7,
+ 'line_nr' => 5,
'macro' => ''
},
'parent' => {}
@@ -229,7 +206,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 12,
+ 'line_nr' => 10,
'macro' => ''
},
'parent' => {},
@@ -286,7 +263,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 13,
+ 'line_nr' => 11,
'macro' => ''
},
'parent' => {},
@@ -343,7 +320,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 14,
+ 'line_nr' => 12,
'macro' => ''
},
'parent' => {},
@@ -400,7 +377,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 15,
+ 'line_nr' => 13,
'macro' => ''
},
'parent' => {},
@@ -457,7 +434,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 16,
+ 'line_nr' => 14,
'macro' => ''
},
'parent' => {},
@@ -499,7 +476,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 17,
+ 'line_nr' => 15,
'macro' => ''
},
'parent' => {}
@@ -511,7 +488,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 11,
+ 'line_nr' => 9,
'macro' => ''
},
'parent' => {}
@@ -532,7 +509,7 @@
'level' => 0,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 5,
+ 'line_nr' => 3,
'macro' => ''
},
'parent' => {}
@@ -581,7 +558,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 19,
+ 'line_nr' => 17,
'macro' => ''
},
'parent' => {}
@@ -684,7 +661,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 23,
+ 'line_nr' => 21,
'macro' => ''
},
'parent' => {},
@@ -726,7 +703,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 24,
+ 'line_nr' => 22,
'macro' => ''
},
'parent' => {}
@@ -738,7 +715,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 22,
+ 'line_nr' => 20,
'macro' => ''
},
'parent' => {}
@@ -759,7 +736,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 20,
+ 'line_nr' => 18,
'macro' => ''
},
'number' => 1,
@@ -809,7 +786,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 26,
+ 'line_nr' => 24,
'macro' => ''
},
'parent' => {}
@@ -859,7 +836,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 27,
+ 'line_nr' => 25,
'macro' => ''
},
'number' => '1.1',
@@ -909,7 +886,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 29,
+ 'line_nr' => 27,
'macro' => ''
},
'parent' => {}
@@ -1012,7 +989,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 33,
+ 'line_nr' => 31,
'macro' => ''
},
'parent' => {},
@@ -1054,7 +1031,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 34,
+ 'line_nr' => 32,
'macro' => ''
},
'parent' => {}
@@ -1066,7 +1043,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 32,
+ 'line_nr' => 30,
'macro' => ''
},
'parent' => {}
@@ -1087,7 +1064,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 30,
+ 'line_nr' => 28,
'macro' => ''
},
'parent' => {}
@@ -1136,7 +1113,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 36,
+ 'line_nr' => 34,
'macro' => ''
},
'parent' => {}
@@ -1186,7 +1163,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 37,
+ 'line_nr' => 35,
'macro' => ''
},
'parent' => {}
@@ -1235,7 +1212,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 39,
+ 'line_nr' => 37,
'macro' => ''
},
'parent' => {}
@@ -1338,7 +1315,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 43,
+ 'line_nr' => 41,
'macro' => ''
},
'parent' => {},
@@ -1395,7 +1372,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 44,
+ 'line_nr' => 42,
'macro' => ''
},
'parent' => {},
@@ -1437,7 +1414,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 45,
+ 'line_nr' => 43,
'macro' => ''
},
'parent' => {}
@@ -1449,7 +1426,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 42,
+ 'line_nr' => 40,
'macro' => ''
},
'parent' => {}
@@ -1470,7 +1447,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 40,
+ 'line_nr' => 38,
'macro' => ''
},
'number' => 2,
@@ -1520,7 +1497,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 47,
+ 'line_nr' => 45,
'macro' => ''
},
'parent' => {}
@@ -1623,7 +1600,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 51,
+ 'line_nr' => 49,
'macro' => ''
},
'parent' => {},
@@ -1680,7 +1657,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 52,
+ 'line_nr' => 50,
'macro' => ''
},
'parent' => {},
@@ -1737,7 +1714,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 53,
+ 'line_nr' => 51,
'macro' => ''
},
'parent' => {},
@@ -1794,7 +1771,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 54,
+ 'line_nr' => 52,
'macro' => ''
},
'parent' => {},
@@ -1836,7 +1813,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 55,
+ 'line_nr' => 53,
'macro' => ''
},
'parent' => {}
@@ -1848,7 +1825,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 50,
+ 'line_nr' => 48,
'macro' => ''
},
'parent' => {}
@@ -1869,7 +1846,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 48,
+ 'line_nr' => 46,
'macro' => ''
},
'parent' => {}
@@ -1918,7 +1895,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 57,
+ 'line_nr' => 55,
'macro' => ''
},
'parent' => {}
@@ -1968,7 +1945,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 58,
+ 'line_nr' => 56,
'macro' => ''
},
'parent' => {}
@@ -2017,7 +1994,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 60,
+ 'line_nr' => 58,
'macro' => ''
},
'parent' => {}
@@ -2067,7 +2044,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 61,
+ 'line_nr' => 59,
'macro' => ''
},
'parent' => {}
@@ -2116,7 +2093,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 63,
+ 'line_nr' => 61,
'macro' => ''
},
'parent' => {}
@@ -2166,7 +2143,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 64,
+ 'line_nr' => 62,
'macro' => ''
},
'parent' => {}
@@ -2215,7 +2192,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 66,
+ 'line_nr' => 64,
'macro' => ''
},
'parent' => {}
@@ -2265,7 +2242,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 67,
+ 'line_nr' => 65,
'macro' => ''
},
'parent' => {}
@@ -2314,7 +2291,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 69,
+ 'line_nr' => 67,
'macro' => ''
},
'parent' => {}
@@ -2417,7 +2394,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 73,
+ 'line_nr' => 71,
'macro' => ''
},
'parent' => {},
@@ -2459,7 +2436,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 74,
+ 'line_nr' => 72,
'macro' => ''
},
'parent' => {}
@@ -2471,7 +2448,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 72,
+ 'line_nr' => 70,
'macro' => ''
},
'parent' => {}
@@ -2492,7 +2469,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 70,
+ 'line_nr' => 68,
'macro' => ''
},
'parent' => {}
@@ -2541,7 +2518,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 76,
+ 'line_nr' => 74,
'macro' => ''
},
'parent' => {}
@@ -2597,7 +2574,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 77,
+ 'line_nr' => 75,
'macro' => ''
},
'parent' => {}
@@ -2646,7 +2623,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 80,
+ 'line_nr' => 78,
'macro' => ''
},
'parent' => {}
@@ -2749,7 +2726,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 84,
+ 'line_nr' => 82,
'macro' => ''
},
'parent' => {},
@@ -2806,7 +2783,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 85,
+ 'line_nr' => 83,
'macro' => ''
},
'parent' => {},
@@ -2863,7 +2840,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 86,
+ 'line_nr' => 84,
'macro' => ''
},
'parent' => {},
@@ -2920,7 +2897,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 87,
+ 'line_nr' => 85,
'macro' => ''
},
'parent' => {},
@@ -2977,7 +2954,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 88,
+ 'line_nr' => 86,
'macro' => ''
},
'parent' => {},
@@ -3019,7 +2996,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 89,
+ 'line_nr' => 87,
'macro' => ''
},
'parent' => {}
@@ -3031,7 +3008,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 83,
+ 'line_nr' => 81,
'macro' => ''
},
'parent' => {}
@@ -3052,7 +3029,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 81,
+ 'line_nr' => 79,
'macro' => ''
},
'number' => 3,
@@ -3102,7 +3079,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 91,
+ 'line_nr' => 89,
'macro' => ''
},
'parent' => {}
@@ -3205,7 +3182,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 95,
+ 'line_nr' => 93,
'macro' => ''
},
'parent' => {},
@@ -3262,7 +3239,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 96,
+ 'line_nr' => 94,
'macro' => ''
},
'parent' => {},
@@ -3319,7 +3296,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 97,
+ 'line_nr' => 95,
'macro' => ''
},
'parent' => {},
@@ -3376,7 +3353,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 98,
+ 'line_nr' => 96,
'macro' => ''
},
'parent' => {},
@@ -3418,7 +3395,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 99,
+ 'line_nr' => 97,
'macro' => ''
},
'parent' => {}
@@ -3430,7 +3407,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 94,
+ 'line_nr' => 92,
'macro' => ''
},
'parent' => {}
@@ -3451,7 +3428,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 92,
+ 'line_nr' => 90,
'macro' => ''
},
'parent' => {}
@@ -3500,7 +3477,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 101,
+ 'line_nr' => 99,
'macro' => ''
},
'parent' => {}
@@ -3550,7 +3527,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 102,
+ 'line_nr' => 100,
'macro' => ''
},
'parent' => {}
@@ -3599,7 +3576,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 104,
+ 'line_nr' => 102,
'macro' => ''
},
'parent' => {}
@@ -3649,7 +3626,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 105,
+ 'line_nr' => 103,
'macro' => ''
},
'parent' => {}
@@ -3698,7 +3675,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 107,
+ 'line_nr' => 105,
'macro' => ''
},
'parent' => {}
@@ -3748,7 +3725,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 108,
+ 'line_nr' => 106,
'macro' => ''
},
'parent' => {}
@@ -3797,7 +3774,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 110,
+ 'line_nr' => 108,
'macro' => ''
},
'parent' => {}
@@ -3847,7 +3824,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 111,
+ 'line_nr' => 109,
'macro' => ''
},
'parent' => {}
@@ -3896,7 +3873,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 113,
+ 'line_nr' => 111,
'macro' => ''
},
'parent' => {}
@@ -3946,7 +3923,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 114,
+ 'line_nr' => 112,
'macro' => ''
},
'number' => '3.1',
@@ -3996,7 +3973,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 116,
+ 'line_nr' => 114,
'macro' => ''
},
'parent' => {}
@@ -4099,7 +4076,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 120,
+ 'line_nr' => 118,
'macro' => ''
},
'parent' => {},
@@ -4141,7 +4118,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 121,
+ 'line_nr' => 119,
'macro' => ''
},
'parent' => {}
@@ -4153,7 +4130,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 119,
+ 'line_nr' => 117,
'macro' => ''
},
'parent' => {}
@@ -4174,7 +4151,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 117,
+ 'line_nr' => 115,
'macro' => ''
},
'parent' => {}
@@ -4223,7 +4200,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 123,
+ 'line_nr' => 121,
'macro' => ''
},
'parent' => {}
@@ -4273,7 +4250,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 124,
+ 'line_nr' => 122,
'macro' => ''
},
'parent' => {}
@@ -4322,7 +4299,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 126,
+ 'line_nr' => 124,
'macro' => ''
},
'parent' => {}
@@ -4425,7 +4402,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 130,
+ 'line_nr' => 128,
'macro' => ''
},
'parent' => {},
@@ -4467,7 +4444,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 131,
+ 'line_nr' => 129,
'macro' => ''
},
'parent' => {}
@@ -4479,7 +4456,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 129,
+ 'line_nr' => 127,
'macro' => ''
},
'parent' => {}
@@ -4500,7 +4477,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 127,
+ 'line_nr' => 125,
'macro' => ''
},
'number' => '3.2',
@@ -4550,7 +4527,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 133,
+ 'line_nr' => 131,
'macro' => ''
},
'parent' => {}
@@ -4600,7 +4577,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 134,
+ 'line_nr' => 132,
'macro' => ''
},
'number' => '3.2.1',
@@ -4650,7 +4627,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 136,
+ 'line_nr' => 134,
'macro' => ''
},
'parent' => {}
@@ -4753,7 +4730,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 140,
+ 'line_nr' => 138,
'macro' => ''
},
'parent' => {},
@@ -4795,7 +4772,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 141,
+ 'line_nr' => 139,
'macro' => ''
},
'parent' => {}
@@ -4807,7 +4784,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 139,
+ 'line_nr' => 137,
'macro' => ''
},
'parent' => {}
@@ -4828,7 +4805,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 137,
+ 'line_nr' => 135,
'macro' => ''
},
'parent' => {}
@@ -4877,7 +4854,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 143,
+ 'line_nr' => 141,
'macro' => ''
},
'parent' => {}
@@ -4927,7 +4904,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 144,
+ 'line_nr' => 142,
'macro' => ''
},
'parent' => {}
@@ -4976,7 +4953,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 146,
+ 'line_nr' => 144,
'macro' => ''
},
'parent' => {}
@@ -5079,7 +5056,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 150,
+ 'line_nr' => 148,
'macro' => ''
},
'parent' => {},
@@ -5121,7 +5098,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 151,
+ 'line_nr' => 149,
'macro' => ''
},
'parent' => {}
@@ -5133,7 +5110,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 149,
+ 'line_nr' => 147,
'macro' => ''
},
'parent' => {}
@@ -5154,7 +5131,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 147,
+ 'line_nr' => 145,
'macro' => ''
},
'parent' => {}
@@ -5203,7 +5180,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 153,
+ 'line_nr' => 151,
'macro' => ''
},
'parent' => {}
@@ -5306,7 +5283,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 157,
+ 'line_nr' => 155,
'macro' => ''
},
'parent' => {},
@@ -5363,7 +5340,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 158,
+ 'line_nr' => 156,
'macro' => ''
},
'parent' => {},
@@ -5420,7 +5397,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 159,
+ 'line_nr' => 157,
'macro' => ''
},
'parent' => {},
@@ -5477,7 +5454,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 160,
+ 'line_nr' => 158,
'macro' => ''
},
'parent' => {},
@@ -5519,7 +5496,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 161,
+ 'line_nr' => 159,
'macro' => ''
},
'parent' => {}
@@ -5531,7 +5508,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 156,
+ 'line_nr' => 154,
'macro' => ''
},
'parent' => {}
@@ -5552,7 +5529,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 154,
+ 'line_nr' => 152,
'macro' => ''
},
'parent' => {}
@@ -5601,7 +5578,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 163,
+ 'line_nr' => 161,
'macro' => ''
},
'parent' => {}
@@ -5651,7 +5628,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 164,
+ 'line_nr' => 162,
'macro' => ''
},
'parent' => {}
@@ -5700,7 +5677,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 166,
+ 'line_nr' => 164,
'macro' => ''
},
'parent' => {}
@@ -5750,7 +5727,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 167,
+ 'line_nr' => 165,
'macro' => ''
},
'parent' => {}
@@ -5799,7 +5776,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 169,
+ 'line_nr' => 167,
'macro' => ''
},
'parent' => {}
@@ -5849,7 +5826,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 170,
+ 'line_nr' => 168,
'macro' => ''
},
'parent' => {}
@@ -5898,7 +5875,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 172,
+ 'line_nr' => 170,
'macro' => ''
},
'parent' => {}
@@ -5941,7 +5918,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 173,
+ 'line_nr' => 171,
'macro' => ''
},
'parent' => {}
@@ -5950,9 +5927,6 @@
'type' => 'document_root'
};
$result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[0];
-$result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'contents'}[1];
-$result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'contents'}[1]{'parent'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[0];
-$result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'contents'}[2]{'parent'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[0];
$result_trees{'section_in_unnumbered_info'}{'contents'}[0]{'parent'} =
$result_trees{'section_in_unnumbered_info'};
$result_trees{'section_in_unnumbered_info'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[1];
$result_trees{'section_in_unnumbered_info'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'section_in_unnumbered_info'}{'contents'}[1]{'args'}[0];
@@ -7030,8 +7004,6 @@
$result_trees{'section_in_unnumbered_info'}{'contents'}[64]{'parent'} =
$result_trees{'section_in_unnumbered_info'};
$result_texis{'section_in_unnumbered_info'} = '
address@hidden
-
@node Top
@top Test section in unnumbered
@@ -7206,7 +7178,6 @@
$result_texts{'section_in_unnumbered_info'} = '
-
Test section in unnumbered
**************************
@@ -9316,6 +9287,15 @@
</head>
<body lang="en">
+
+<a name="Top"></a>
+<div class="header">
+<p>
+Next: <a href="#chapter" accesskey="n" rel="next">chapter</a>, Up: <a
href="dir.html#Top" accesskey="u" rel="up">(dir)</a> [<a
href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
+</div>
+<a name="Test-section-in-unnumbered"></a>
+<h1 class="top">Test section in unnumbered</h1>
+
<a name="SEC_Contents"></a>
<h2 class="contents-heading">Table of Contents</h2>
@@ -9380,18 +9360,7 @@
</ul>
</div>
-<hr>
-
-<a name="Top"></a>
-<div class="header">
-<p>
-Next: <a href="#chapter" accesskey="n" rel="next">chapter</a>, Up: <a
href="dir.html#Top" accesskey="u" rel="up">(dir)</a> [<a
href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
-</div>
-<a name="Test-section-in-unnumbered"></a>
-<h1 class="top">Test section in unnumbered</h1>
-
-
<p>Menu:
</p>
<table class="menu" border="0" cellspacing="0">
Modified: trunk/tp/t/results/sectioning/section_in_unnumbered_plaintext.pl
===================================================================
--- trunk/tp/t/results/sectioning/section_in_unnumbered_plaintext.pl
2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/tp/t/results/sectioning/section_in_unnumbered_plaintext.pl
2016-02-21 13:56:34 UTC (rev 7025)
@@ -14,29 +14,6 @@
'text' => '
',
'type' => 'empty_line'
- },
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'setcontentsaftertitlepage',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 2,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
}
],
'parent' => {},
@@ -86,7 +63,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 4,
+ 'line_nr' => 2,
'macro' => ''
},
'parent' => {}
@@ -138,7 +115,7 @@
'cmdname' => 'contents',
'line_nr' => {
'file_name' => '',
- 'line_nr' => 7,
+ 'line_nr' => 5,
'macro' => ''
},
'parent' => {}
@@ -229,7 +206,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 12,
+ 'line_nr' => 10,
'macro' => ''
},
'parent' => {},
@@ -286,7 +263,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 13,
+ 'line_nr' => 11,
'macro' => ''
},
'parent' => {},
@@ -343,7 +320,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 14,
+ 'line_nr' => 12,
'macro' => ''
},
'parent' => {},
@@ -400,7 +377,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 15,
+ 'line_nr' => 13,
'macro' => ''
},
'parent' => {},
@@ -457,7 +434,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 16,
+ 'line_nr' => 14,
'macro' => ''
},
'parent' => {},
@@ -499,7 +476,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 17,
+ 'line_nr' => 15,
'macro' => ''
},
'parent' => {}
@@ -511,7 +488,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 11,
+ 'line_nr' => 9,
'macro' => ''
},
'parent' => {}
@@ -532,7 +509,7 @@
'level' => 0,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 5,
+ 'line_nr' => 3,
'macro' => ''
},
'parent' => {}
@@ -581,7 +558,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 19,
+ 'line_nr' => 17,
'macro' => ''
},
'parent' => {}
@@ -684,7 +661,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 23,
+ 'line_nr' => 21,
'macro' => ''
},
'parent' => {},
@@ -726,7 +703,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 24,
+ 'line_nr' => 22,
'macro' => ''
},
'parent' => {}
@@ -738,7 +715,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 22,
+ 'line_nr' => 20,
'macro' => ''
},
'parent' => {}
@@ -759,7 +736,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 20,
+ 'line_nr' => 18,
'macro' => ''
},
'number' => 1,
@@ -809,7 +786,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 26,
+ 'line_nr' => 24,
'macro' => ''
},
'parent' => {}
@@ -859,7 +836,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 27,
+ 'line_nr' => 25,
'macro' => ''
},
'number' => '1.1',
@@ -909,7 +886,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 29,
+ 'line_nr' => 27,
'macro' => ''
},
'parent' => {}
@@ -1012,7 +989,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 33,
+ 'line_nr' => 31,
'macro' => ''
},
'parent' => {},
@@ -1054,7 +1031,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 34,
+ 'line_nr' => 32,
'macro' => ''
},
'parent' => {}
@@ -1066,7 +1043,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 32,
+ 'line_nr' => 30,
'macro' => ''
},
'parent' => {}
@@ -1087,7 +1064,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 30,
+ 'line_nr' => 28,
'macro' => ''
},
'parent' => {}
@@ -1136,7 +1113,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 36,
+ 'line_nr' => 34,
'macro' => ''
},
'parent' => {}
@@ -1186,7 +1163,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 37,
+ 'line_nr' => 35,
'macro' => ''
},
'parent' => {}
@@ -1235,7 +1212,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 39,
+ 'line_nr' => 37,
'macro' => ''
},
'parent' => {}
@@ -1338,7 +1315,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 43,
+ 'line_nr' => 41,
'macro' => ''
},
'parent' => {},
@@ -1395,7 +1372,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 44,
+ 'line_nr' => 42,
'macro' => ''
},
'parent' => {},
@@ -1437,7 +1414,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 45,
+ 'line_nr' => 43,
'macro' => ''
},
'parent' => {}
@@ -1449,7 +1426,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 42,
+ 'line_nr' => 40,
'macro' => ''
},
'parent' => {}
@@ -1470,7 +1447,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 40,
+ 'line_nr' => 38,
'macro' => ''
},
'number' => 2,
@@ -1520,7 +1497,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 47,
+ 'line_nr' => 45,
'macro' => ''
},
'parent' => {}
@@ -1623,7 +1600,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 51,
+ 'line_nr' => 49,
'macro' => ''
},
'parent' => {},
@@ -1680,7 +1657,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 52,
+ 'line_nr' => 50,
'macro' => ''
},
'parent' => {},
@@ -1737,7 +1714,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 53,
+ 'line_nr' => 51,
'macro' => ''
},
'parent' => {},
@@ -1794,7 +1771,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 54,
+ 'line_nr' => 52,
'macro' => ''
},
'parent' => {},
@@ -1836,7 +1813,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 55,
+ 'line_nr' => 53,
'macro' => ''
},
'parent' => {}
@@ -1848,7 +1825,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 50,
+ 'line_nr' => 48,
'macro' => ''
},
'parent' => {}
@@ -1869,7 +1846,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 48,
+ 'line_nr' => 46,
'macro' => ''
},
'parent' => {}
@@ -1918,7 +1895,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 57,
+ 'line_nr' => 55,
'macro' => ''
},
'parent' => {}
@@ -1968,7 +1945,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 58,
+ 'line_nr' => 56,
'macro' => ''
},
'parent' => {}
@@ -2017,7 +1994,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 60,
+ 'line_nr' => 58,
'macro' => ''
},
'parent' => {}
@@ -2067,7 +2044,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 61,
+ 'line_nr' => 59,
'macro' => ''
},
'parent' => {}
@@ -2116,7 +2093,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 63,
+ 'line_nr' => 61,
'macro' => ''
},
'parent' => {}
@@ -2166,7 +2143,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 64,
+ 'line_nr' => 62,
'macro' => ''
},
'parent' => {}
@@ -2215,7 +2192,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 66,
+ 'line_nr' => 64,
'macro' => ''
},
'parent' => {}
@@ -2265,7 +2242,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 67,
+ 'line_nr' => 65,
'macro' => ''
},
'parent' => {}
@@ -2314,7 +2291,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 69,
+ 'line_nr' => 67,
'macro' => ''
},
'parent' => {}
@@ -2417,7 +2394,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 73,
+ 'line_nr' => 71,
'macro' => ''
},
'parent' => {},
@@ -2459,7 +2436,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 74,
+ 'line_nr' => 72,
'macro' => ''
},
'parent' => {}
@@ -2471,7 +2448,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 72,
+ 'line_nr' => 70,
'macro' => ''
},
'parent' => {}
@@ -2492,7 +2469,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 70,
+ 'line_nr' => 68,
'macro' => ''
},
'parent' => {}
@@ -2541,7 +2518,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 76,
+ 'line_nr' => 74,
'macro' => ''
},
'parent' => {}
@@ -2597,7 +2574,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 77,
+ 'line_nr' => 75,
'macro' => ''
},
'parent' => {}
@@ -2646,7 +2623,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 80,
+ 'line_nr' => 78,
'macro' => ''
},
'parent' => {}
@@ -2749,7 +2726,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 84,
+ 'line_nr' => 82,
'macro' => ''
},
'parent' => {},
@@ -2806,7 +2783,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 85,
+ 'line_nr' => 83,
'macro' => ''
},
'parent' => {},
@@ -2863,7 +2840,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 86,
+ 'line_nr' => 84,
'macro' => ''
},
'parent' => {},
@@ -2920,7 +2897,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 87,
+ 'line_nr' => 85,
'macro' => ''
},
'parent' => {},
@@ -2977,7 +2954,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 88,
+ 'line_nr' => 86,
'macro' => ''
},
'parent' => {},
@@ -3019,7 +2996,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 89,
+ 'line_nr' => 87,
'macro' => ''
},
'parent' => {}
@@ -3031,7 +3008,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 83,
+ 'line_nr' => 81,
'macro' => ''
},
'parent' => {}
@@ -3052,7 +3029,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 81,
+ 'line_nr' => 79,
'macro' => ''
},
'number' => 3,
@@ -3102,7 +3079,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 91,
+ 'line_nr' => 89,
'macro' => ''
},
'parent' => {}
@@ -3205,7 +3182,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 95,
+ 'line_nr' => 93,
'macro' => ''
},
'parent' => {},
@@ -3262,7 +3239,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 96,
+ 'line_nr' => 94,
'macro' => ''
},
'parent' => {},
@@ -3319,7 +3296,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 97,
+ 'line_nr' => 95,
'macro' => ''
},
'parent' => {},
@@ -3376,7 +3353,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 98,
+ 'line_nr' => 96,
'macro' => ''
},
'parent' => {},
@@ -3418,7 +3395,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 99,
+ 'line_nr' => 97,
'macro' => ''
},
'parent' => {}
@@ -3430,7 +3407,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 94,
+ 'line_nr' => 92,
'macro' => ''
},
'parent' => {}
@@ -3451,7 +3428,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 92,
+ 'line_nr' => 90,
'macro' => ''
},
'parent' => {}
@@ -3500,7 +3477,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 101,
+ 'line_nr' => 99,
'macro' => ''
},
'parent' => {}
@@ -3550,7 +3527,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 102,
+ 'line_nr' => 100,
'macro' => ''
},
'parent' => {}
@@ -3599,7 +3576,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 104,
+ 'line_nr' => 102,
'macro' => ''
},
'parent' => {}
@@ -3649,7 +3626,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 105,
+ 'line_nr' => 103,
'macro' => ''
},
'parent' => {}
@@ -3698,7 +3675,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 107,
+ 'line_nr' => 105,
'macro' => ''
},
'parent' => {}
@@ -3748,7 +3725,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 108,
+ 'line_nr' => 106,
'macro' => ''
},
'parent' => {}
@@ -3797,7 +3774,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 110,
+ 'line_nr' => 108,
'macro' => ''
},
'parent' => {}
@@ -3847,7 +3824,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 111,
+ 'line_nr' => 109,
'macro' => ''
},
'parent' => {}
@@ -3896,7 +3873,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 113,
+ 'line_nr' => 111,
'macro' => ''
},
'parent' => {}
@@ -3946,7 +3923,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 114,
+ 'line_nr' => 112,
'macro' => ''
},
'number' => '3.1',
@@ -3996,7 +3973,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 116,
+ 'line_nr' => 114,
'macro' => ''
},
'parent' => {}
@@ -4099,7 +4076,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 120,
+ 'line_nr' => 118,
'macro' => ''
},
'parent' => {},
@@ -4141,7 +4118,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 121,
+ 'line_nr' => 119,
'macro' => ''
},
'parent' => {}
@@ -4153,7 +4130,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 119,
+ 'line_nr' => 117,
'macro' => ''
},
'parent' => {}
@@ -4174,7 +4151,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 117,
+ 'line_nr' => 115,
'macro' => ''
},
'parent' => {}
@@ -4223,7 +4200,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 123,
+ 'line_nr' => 121,
'macro' => ''
},
'parent' => {}
@@ -4273,7 +4250,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 124,
+ 'line_nr' => 122,
'macro' => ''
},
'parent' => {}
@@ -4322,7 +4299,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 126,
+ 'line_nr' => 124,
'macro' => ''
},
'parent' => {}
@@ -4425,7 +4402,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 130,
+ 'line_nr' => 128,
'macro' => ''
},
'parent' => {},
@@ -4467,7 +4444,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 131,
+ 'line_nr' => 129,
'macro' => ''
},
'parent' => {}
@@ -4479,7 +4456,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 129,
+ 'line_nr' => 127,
'macro' => ''
},
'parent' => {}
@@ -4500,7 +4477,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 127,
+ 'line_nr' => 125,
'macro' => ''
},
'number' => '3.2',
@@ -4550,7 +4527,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 133,
+ 'line_nr' => 131,
'macro' => ''
},
'parent' => {}
@@ -4600,7 +4577,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 134,
+ 'line_nr' => 132,
'macro' => ''
},
'number' => '3.2.1',
@@ -4650,7 +4627,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 136,
+ 'line_nr' => 134,
'macro' => ''
},
'parent' => {}
@@ -4753,7 +4730,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 140,
+ 'line_nr' => 138,
'macro' => ''
},
'parent' => {},
@@ -4795,7 +4772,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 141,
+ 'line_nr' => 139,
'macro' => ''
},
'parent' => {}
@@ -4807,7 +4784,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 139,
+ 'line_nr' => 137,
'macro' => ''
},
'parent' => {}
@@ -4828,7 +4805,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 137,
+ 'line_nr' => 135,
'macro' => ''
},
'parent' => {}
@@ -4877,7 +4854,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 143,
+ 'line_nr' => 141,
'macro' => ''
},
'parent' => {}
@@ -4927,7 +4904,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 144,
+ 'line_nr' => 142,
'macro' => ''
},
'parent' => {}
@@ -4976,7 +4953,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 146,
+ 'line_nr' => 144,
'macro' => ''
},
'parent' => {}
@@ -5079,7 +5056,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 150,
+ 'line_nr' => 148,
'macro' => ''
},
'parent' => {},
@@ -5121,7 +5098,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 151,
+ 'line_nr' => 149,
'macro' => ''
},
'parent' => {}
@@ -5133,7 +5110,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 149,
+ 'line_nr' => 147,
'macro' => ''
},
'parent' => {}
@@ -5154,7 +5131,7 @@
'level' => 1,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 147,
+ 'line_nr' => 145,
'macro' => ''
},
'parent' => {}
@@ -5203,7 +5180,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 153,
+ 'line_nr' => 151,
'macro' => ''
},
'parent' => {}
@@ -5306,7 +5283,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 157,
+ 'line_nr' => 155,
'macro' => ''
},
'parent' => {},
@@ -5363,7 +5340,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 158,
+ 'line_nr' => 156,
'macro' => ''
},
'parent' => {},
@@ -5420,7 +5397,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 159,
+ 'line_nr' => 157,
'macro' => ''
},
'parent' => {},
@@ -5477,7 +5454,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 160,
+ 'line_nr' => 158,
'macro' => ''
},
'parent' => {},
@@ -5519,7 +5496,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 161,
+ 'line_nr' => 159,
'macro' => ''
},
'parent' => {}
@@ -5531,7 +5508,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 156,
+ 'line_nr' => 154,
'macro' => ''
},
'parent' => {}
@@ -5552,7 +5529,7 @@
'level' => 2,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 154,
+ 'line_nr' => 152,
'macro' => ''
},
'parent' => {}
@@ -5601,7 +5578,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 163,
+ 'line_nr' => 161,
'macro' => ''
},
'parent' => {}
@@ -5651,7 +5628,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 164,
+ 'line_nr' => 162,
'macro' => ''
},
'parent' => {}
@@ -5700,7 +5677,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 166,
+ 'line_nr' => 164,
'macro' => ''
},
'parent' => {}
@@ -5750,7 +5727,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 167,
+ 'line_nr' => 165,
'macro' => ''
},
'parent' => {}
@@ -5799,7 +5776,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 169,
+ 'line_nr' => 167,
'macro' => ''
},
'parent' => {}
@@ -5849,7 +5826,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 170,
+ 'line_nr' => 168,
'macro' => ''
},
'parent' => {}
@@ -5898,7 +5875,7 @@
},
'line_nr' => {
'file_name' => '',
- 'line_nr' => 172,
+ 'line_nr' => 170,
'macro' => ''
},
'parent' => {}
@@ -5941,7 +5918,7 @@
'level' => 3,
'line_nr' => {
'file_name' => '',
- 'line_nr' => 173,
+ 'line_nr' => 171,
'macro' => ''
},
'parent' => {}
@@ -5950,9 +5927,6 @@
'type' => 'document_root'
};
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0];
-$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'contents'}[1];
-$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'contents'}[1]{'parent'}
= $result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0];
-$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'contents'}[2]{'parent'}
= $result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0];
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[0]{'parent'} =
$result_trees{'section_in_unnumbered_plaintext'};
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'section_in_unnumbered_plaintext'}{'contents'}[1];
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'section_in_unnumbered_plaintext'}{'contents'}[1]{'args'}[0];
@@ -7030,8 +7004,6 @@
$result_trees{'section_in_unnumbered_plaintext'}{'contents'}[64]{'parent'} =
$result_trees{'section_in_unnumbered_plaintext'};
$result_texis{'section_in_unnumbered_plaintext'} = '
address@hidden
-
@node Top
@top Test section in unnumbered
@@ -7206,7 +7178,6 @@
$result_texts{'section_in_unnumbered_plaintext'} = '
-
Test section in unnumbered
**************************
@@ -8966,6 +8937,9 @@
$result_converted{'plaintext'}->{'section_in_unnumbered_plaintext'} = 'Test
section in unnumbered
+**************************
+
+Test section in unnumbered
1 chapter
1.1 section in chapter
unnumbered
@@ -8997,10 +8971,6 @@
numbered subsection 4
unnumbered subsection2 4
numbered subsection2 4
-
-Test section in unnumbered
-**************************
-
Menu:
1 chapter
@@ -9144,6 +9114,15 @@
</head>
<body lang="en">
+
+<a name="Top"></a>
+<div class="header">
+<p>
+Next: <a href="#chapter" accesskey="n" rel="next">chapter</a>, Up: <a
href="dir.html#Top" accesskey="u" rel="up">(dir)</a> [<a
href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
+</div>
+<a name="Test-section-in-unnumbered"></a>
+<h1 class="top">Test section in unnumbered</h1>
+
<a name="SEC_Contents"></a>
<h2 class="contents-heading">Table of Contents</h2>
@@ -9208,18 +9187,7 @@
</ul>
</div>
-<hr>
-
-<a name="Top"></a>
-<div class="header">
-<p>
-Next: <a href="#chapter" accesskey="n" rel="next">chapter</a>, Up: <a
href="dir.html#Top" accesskey="u" rel="up">(dir)</a> [<a
href="#SEC_Contents" title="Table of contents" rel="contents">Contents</a>]</p>
-</div>
-<a name="Test-section-in-unnumbered"></a>
-<h1 class="top">Test section in unnumbered</h1>
-
-
<p>Menu:
</p>
<table class="menu" border="0" cellspacing="0">
@@ -9612,8 +9580,6 @@
$result_converted{'xml'}->{'section_in_unnumbered_plaintext'} = '
-<setcontentsaftertitlepage></setcontentsaftertitlepage>
-
<node name="Top" spaces=" "><nodename>Top</nodename><nodenext
automatic="on">chapter</nodenext><nodeup automatic="on">(dir)</nodeup></node>
<top spaces=" "><sectiontitle>Test section in unnumbered</sectiontitle>
Deleted: trunk/tp/t/results/sectioning/setcontentsaftertitlepage.pl
===================================================================
--- trunk/tp/t/results/sectioning/setcontentsaftertitlepage.pl 2016-02-20
22:49:56 UTC (rev 7024)
+++ trunk/tp/t/results/sectioning/setcontentsaftertitlepage.pl 2016-02-21
13:56:34 UTC (rev 7025)
@@ -1,1085 +0,0 @@
-use vars qw(%result_texis %result_texts %result_trees %result_errors
- %result_indices %result_sectioning %result_nodes %result_menus
- %result_floats %result_converted %result_converted_errors
- %result_elements %result_directions_text);
-
-use utf8;
-
-$result_trees{'setcontentsaftertitlepage'} = {
- 'contents' => [
- {
- 'contents' => [
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'setcontentsaftertitlepage',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 1,
- 'macro' => ''
- },
- 'parent' => {}
- }
- ],
- 'parent' => {},
- 'type' => 'text_root'
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'top'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'top',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 0,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 2,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'chapter'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 4,
- 'macro' => ''
- },
- 'number' => 1,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'section'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'section',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 2,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 6,
- 'macro' => ''
- },
- 'number' => '1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'subsection'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'subsection',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 3,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 8,
- 'macro' => ''
- },
- 'number' => '1.1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'subsubsection'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'subsubsection',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 4,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 10,
- 'macro' => ''
- },
- 'number' => '1.1.1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'part',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 0,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 12,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'chapter in part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'associated_part' => {},
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 14,
- 'macro' => ''
- },
- 'number' => 2,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'second chapter in part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 16,
- 'macro' => ''
- },
- 'number' => 3,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'unnumbered'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'unnumbered',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 18,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'appendix'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'appendix',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 20,
- 'macro' => ''
- },
- 'number' => 'A',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'appendixsec'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'appendixsec',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- },
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'contents',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 24,
- 'macro' => ''
- },
- 'parent' => {}
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 2,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 22,
- 'macro' => ''
- },
- 'number' => 'A.1',
- 'parent' => {}
- }
- ],
- 'type' => 'document_root'
-};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[0]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[1]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[2]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[3]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[4]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[5]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[6]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'associated_part'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[7]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[8]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[9]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[10]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'contents'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1]{'parent'}
= $result_trees{'setcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'extra'}{'misc_content'}[0]
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[1];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'extra'}{'spaces_after_command'}
=
$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0];
-$result_trees{'setcontentsaftertitlepage'}{'contents'}[11]{'parent'} =
$result_trees{'setcontentsaftertitlepage'};
-
-$result_texis{'setcontentsaftertitlepage'} = '@setcontentsaftertitlepage
address@hidden top
-
address@hidden chapter
-
address@hidden section
-
address@hidden subsection
-
address@hidden subsubsection
-
address@hidden part
-
address@hidden chapter in part
-
address@hidden second chapter in part
-
address@hidden unnumbered
-
address@hidden appendix
-
address@hidden appendixsec
-
address@hidden
-';
-
-
-$result_texts{'setcontentsaftertitlepage'} = 'top
-***
-
-1 chapter
-*********
-
-1.1 section
-===========
-
-1.1.1 subsection
-----------------
-
-1.1.1.1 subsubsection
-.....................
-
-part
-****
-
-2 chapter in part
-*****************
-
-3 second chapter in part
-************************
-
-unnumbered
-**********
-
-Appendix A appendix
-*******************
-
-A.1 appendixsec
-===============
-
-';
-
-$result_sectioning{'setcontentsaftertitlepage'} = {
- 'level' => -1,
- 'section_childs' => [
- {
- 'cmdname' => 'top',
- 'extra' => {},
- 'level' => 0,
- 'section_childs' => [
- {
- 'cmdname' => 'chapter',
- 'extra' => {},
- 'level' => 1,
- 'number' => 1,
- 'section_childs' => [
- {
- 'cmdname' => 'section',
- 'extra' => {},
- 'level' => 2,
- 'number' => '1.1',
- 'section_childs' => [
- {
- 'cmdname' => 'subsection',
- 'extra' => {},
- 'level' => 3,
- 'number' => '1.1.1',
- 'section_childs' => [
- {
- 'cmdname' => 'subsubsection',
- 'extra' => {},
- 'level' => 4,
- 'number' => '1.1.1.1',
- 'section_up' => {}
- }
- ],
- 'section_up' => {}
- }
- ],
- 'section_up' => {}
- }
- ],
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ],
- 'section_up' => {}
- },
- {
- 'cmdname' => 'part',
- 'extra' => {
- 'part_associated_section' => {
- 'cmdname' => 'chapter',
- 'extra' => {
- 'associated_part' => {}
- },
- 'level' => 1,
- 'number' => 2,
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- },
- 'level' => 0,
- 'section_childs' => [
- {},
- {
- 'cmdname' => 'chapter',
- 'extra' => {},
- 'level' => 1,
- 'number' => 3,
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- },
- {
- 'cmdname' => 'unnumbered',
- 'extra' => {},
- 'level' => 1,
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ],
- 'section_prev' => {},
- 'section_up' => {}
- },
- {
- 'cmdname' => 'appendix',
- 'extra' => {},
- 'level' => 1,
- 'number' => 'A',
- 'section_childs' => [
- {
- 'cmdname' => 'appendixsec',
- 'extra' => {},
- 'level' => 2,
- 'number' => 'A.1',
- 'section_up' => {}
- }
- ],
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ]
-};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'toplevel_prev'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'toplevel_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'extra'}{'associated_part'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'toplevel_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'toplevel_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[0]
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'section_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'toplevel_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'toplevel_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'section_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'toplevel_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'toplevel_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_prev'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2]{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2]{'section_prev'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2]{'section_up'}
= $result_sectioning{'setcontentsaftertitlepage'};
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2]{'toplevel_prev'}
=
$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2];
-$result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[2]{'toplevel_up'}
= $result_sectioning{'setcontentsaftertitlepage'}{'section_childs'}[0];
-
-$result_errors{'setcontentsaftertitlepage'} = [];
-
-
-
-$result_converted{'plaintext'}->{'setcontentsaftertitlepage'} = 'top
-1 chapter
- 1.1 section
- 1.1.1 subsection
- 1.1.1.1 subsubsection
-part
-2 chapter in part
-3 second chapter in part
-unnumbered
-Appendix A appendix
- A.1 appendixsec
-
-top
-***
-
-1 chapter
-*********
-
-1.1 section
-===========
-
-1.1.1 subsection
-----------------
-
-1.1.1.1 subsubsection
-.....................
-
-2 chapter in part
-*****************
-
-3 second chapter in part
-************************
-
-unnumbered
-**********
-
-Appendix A appendix
-*******************
-
-A.1 appendixsec
-===============
-
-';
-
-
-$result_converted{'html'}->{'setcontentsaftertitlepage'} = '<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
-<head>
-<title>top</title>
-
-<meta name="description" content="top">
-<meta name="keywords" content="top">
-<meta name="resource-type" content="document">
-<meta name="distribution" content="global">
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link href="#SEC_Contents" rel="contents" title="Table of Contents">
-<style type="text/css">
-<!--
-a.summary-letter {text-decoration: none}
-blockquote.indentedblock {margin-right: 0em}
-blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
-blockquote.smallquotation {font-size: smaller}
-div.display {margin-left: 3.2em}
-div.example {margin-left: 3.2em}
-div.lisp {margin-left: 3.2em}
-div.smalldisplay {margin-left: 3.2em}
-div.smallexample {margin-left: 3.2em}
-div.smalllisp {margin-left: 3.2em}
-kbd {font-style: oblique}
-pre.display {font-family: inherit}
-pre.format {font-family: inherit}
-pre.menu-comment {font-family: serif}
-pre.menu-preformatted {font-family: serif}
-pre.smalldisplay {font-family: inherit; font-size: smaller}
-pre.smallexample {font-size: smaller}
-pre.smallformat {font-family: inherit; font-size: smaller}
-pre.smalllisp {font-size: smaller}
-span.nolinebreak {white-space: nowrap}
-span.roman {font-family: initial; font-weight: normal}
-span.sansserif {font-family: sans-serif; font-weight: normal}
-ul.no-bullet {list-style: none}
--->
-</style>
-
-
-</head>
-
-<body lang="en">
-<a name="SEC_Contents"></a>
-<h2 class="contents-heading">Table of Contents</h2>
-
-<div class="contents">
-<ul class="no-bullet">
-<li>
-<ul class="no-bullet">
- <li><a name="toc-chapter" href="#chapter">1 chapter</a>
- <ul class="no-bullet">
- <li><a name="toc-section" href="#section">1.1 section</a>
- <ul class="no-bullet">
- <li><a name="toc-subsection" href="#subsection">1.1.1 subsection</a>
- <ul class="no-bullet">
- <li><a name="toc-subsubsection" href="#subsubsection">1.1.1.1
subsubsection</a></li>
- </ul></li>
- </ul></li>
- </ul></li>
-</ul></li>
-<li><a name="toc-part" href="#part">part</a>
-<ul class="no-bullet">
- <li><a name="toc-chapter-in-part" href="#chapter-in-part">2 chapter in
part</a></li>
- <li><a name="toc-second-chapter-in-part" href="#second-chapter-in-part">3
second chapter in part</a></li>
- <li><a name="toc-unnumbered" href="#unnumbered">unnumbered</a></li>
-</ul></li>
- <li><a name="toc-appendix" href="#appendix">Appendix A appendix</a>
- <ul class="no-bullet">
- <li><a name="toc-appendixsec" href="#appendixsec">A.1 appendixsec</a></li>
- </ul></li>
-
-</ul>
-</div>
-
-<hr>
-<a name="top"></a>
-<h1 class="top">top</h1>
-
-<a name="chapter"></a>
-<h2 class="chapter">1 chapter</h2>
-
-<a name="section"></a>
-<h3 class="section">1.1 section</h3>
-
-<a name="subsection"></a>
-<h4 class="subsection">1.1.1 subsection</h4>
-
-<a name="subsubsection"></a>
-<h4 class="subsubsection">1.1.1.1 subsubsection</h4>
-
-<a name="part"></a>
-<h1 class="part">part</h1>
-<hr>
-
-<a name="chapter-in-part"></a>
-<h2 class="chapter">2 chapter in part</h2>
-
-<a name="second-chapter-in-part"></a>
-<h2 class="chapter">3 second chapter in part</h2>
-
-<a name="unnumbered"></a>
-<h2 class="unnumbered">unnumbered</h2>
-
-<a name="appendix"></a>
-<h2 class="appendix">Appendix A appendix</h2>
-
-<a name="appendixsec"></a>
-<h3 class="appendixsec">A.1 appendixsec</h3>
-
-<hr>
-
-
-
-</body>
-</html>
-';
-
-1;
Deleted: trunk/tp/t/results/sectioning/setshortcontentsaftertitlepage.pl
===================================================================
--- trunk/tp/t/results/sectioning/setshortcontentsaftertitlepage.pl
2016-02-20 22:49:56 UTC (rev 7024)
+++ trunk/tp/t/results/sectioning/setshortcontentsaftertitlepage.pl
2016-02-21 13:56:34 UTC (rev 7025)
@@ -1,1066 +0,0 @@
-use vars qw(%result_texis %result_texts %result_trees %result_errors
- %result_indices %result_sectioning %result_nodes %result_menus
- %result_floats %result_converted %result_converted_errors
- %result_elements %result_directions_text);
-
-use utf8;
-
-$result_trees{'setshortcontentsaftertitlepage'} = {
- 'contents' => [
- {
- 'contents' => [
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'setshortcontentsaftertitlepage',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 1,
- 'macro' => ''
- },
- 'parent' => {}
- }
- ],
- 'parent' => {},
- 'type' => 'text_root'
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'top'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'top',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 0,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 2,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'chapter'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 4,
- 'macro' => ''
- },
- 'number' => 1,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'section'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'section',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 2,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 6,
- 'macro' => ''
- },
- 'number' => '1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'subsection'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'subsection',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 3,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 8,
- 'macro' => ''
- },
- 'number' => '1.1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'subsubsection'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'subsubsection',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 4,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 10,
- 'macro' => ''
- },
- 'number' => '1.1.1.1',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'part',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 0,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 12,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'chapter in part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'associated_part' => {},
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 14,
- 'macro' => ''
- },
- 'number' => 2,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'second chapter in part'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'chapter',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 16,
- 'macro' => ''
- },
- 'number' => 3,
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'unnumbered'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'unnumbered',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 18,
- 'macro' => ''
- },
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'appendix'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'appendix',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 1,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 20,
- 'macro' => ''
- },
- 'number' => 'A',
- 'parent' => {}
- },
- {
- 'args' => [
- {
- 'contents' => [
- {
- 'extra' => {
- 'command' => {}
- },
- 'parent' => {},
- 'text' => ' ',
- 'type' => 'empty_spaces_after_command'
- },
- {
- 'parent' => {},
- 'text' => 'appendixsec'
- },
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'spaces_at_end'
- }
- ],
- 'parent' => {},
- 'type' => 'misc_line_arg'
- }
- ],
- 'cmdname' => 'appendixsec',
- 'contents' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'empty_line'
- },
- {
- 'args' => [
- {
- 'parent' => {},
- 'text' => '
-',
- 'type' => 'misc_arg'
- }
- ],
- 'cmdname' => 'shortcontents',
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 24,
- 'macro' => ''
- },
- 'parent' => {}
- }
- ],
- 'extra' => {
- 'misc_content' => [
- {}
- ],
- 'spaces_after_command' => {}
- },
- 'level' => 2,
- 'line_nr' => {
- 'file_name' => '',
- 'line_nr' => 22,
- 'macro' => ''
- },
- 'number' => 'A.1',
- 'parent' => {}
- }
- ],
- 'type' => 'document_root'
-};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0]{'args'}[0]{'parent'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[0]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[1]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[2]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[3]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[4]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[5]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'associated_part'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[6];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[7]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[8]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[9]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[10]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0]{'extra'}{'command'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[2]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'contents'}[0]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1]{'args'}[0]{'parent'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'contents'}[1]{'parent'}
= $result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'extra'}{'misc_content'}[0]
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[1];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'extra'}{'spaces_after_command'}
=
$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'args'}[0]{'contents'}[0];
-$result_trees{'setshortcontentsaftertitlepage'}{'contents'}[11]{'parent'} =
$result_trees{'setshortcontentsaftertitlepage'};
-
-$result_texis{'setshortcontentsaftertitlepage'} =
'@setshortcontentsaftertitlepage
address@hidden top
-
address@hidden chapter
-
address@hidden section
-
address@hidden subsection
-
address@hidden subsubsection
-
address@hidden part
-
address@hidden chapter in part
-
address@hidden second chapter in part
-
address@hidden unnumbered
-
address@hidden appendix
-
address@hidden appendixsec
-
address@hidden
-';
-
-
-$result_texts{'setshortcontentsaftertitlepage'} = 'top
-***
-
-1 chapter
-*********
-
-1.1 section
-===========
-
-1.1.1 subsection
-----------------
-
-1.1.1.1 subsubsection
-.....................
-
-part
-****
-
-2 chapter in part
-*****************
-
-3 second chapter in part
-************************
-
-unnumbered
-**********
-
-Appendix A appendix
-*******************
-
-A.1 appendixsec
-===============
-
-';
-
-$result_sectioning{'setshortcontentsaftertitlepage'} = {
- 'level' => -1,
- 'section_childs' => [
- {
- 'cmdname' => 'top',
- 'extra' => {},
- 'level' => 0,
- 'section_childs' => [
- {
- 'cmdname' => 'chapter',
- 'extra' => {},
- 'level' => 1,
- 'number' => 1,
- 'section_childs' => [
- {
- 'cmdname' => 'section',
- 'extra' => {},
- 'level' => 2,
- 'number' => '1.1',
- 'section_childs' => [
- {
- 'cmdname' => 'subsection',
- 'extra' => {},
- 'level' => 3,
- 'number' => '1.1.1',
- 'section_childs' => [
- {
- 'cmdname' => 'subsubsection',
- 'extra' => {},
- 'level' => 4,
- 'number' => '1.1.1.1',
- 'section_up' => {}
- }
- ],
- 'section_up' => {}
- }
- ],
- 'section_up' => {}
- }
- ],
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ],
- 'section_up' => {}
- },
- {
- 'cmdname' => 'part',
- 'extra' => {
- 'part_associated_section' => {
- 'cmdname' => 'chapter',
- 'extra' => {
- 'associated_part' => {}
- },
- 'level' => 1,
- 'number' => 2,
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- },
- 'level' => 0,
- 'section_childs' => [
- {},
- {
- 'cmdname' => 'chapter',
- 'extra' => {},
- 'level' => 1,
- 'number' => 3,
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- },
- {
- 'cmdname' => 'unnumbered',
- 'extra' => {},
- 'level' => 1,
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ],
- 'section_prev' => {},
- 'section_up' => {}
- },
- {
- 'cmdname' => 'appendix',
- 'extra' => {},
- 'level' => 1,
- 'number' => 'A',
- 'section_childs' => [
- {
- 'cmdname' => 'appendixsec',
- 'extra' => {},
- 'level' => 2,
- 'number' => 'A.1',
- 'section_up' => {}
- }
- ],
- 'section_prev' => {},
- 'section_up' => {},
- 'toplevel_prev' => {},
- 'toplevel_up' => {}
- }
- ]
-};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'toplevel_prev'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0]{'toplevel_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'extra'}{'associated_part'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'toplevel_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0]{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'}{'toplevel_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[0]
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'section_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'toplevel_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'extra'}{'part_associated_section'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1]{'toplevel_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'section_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'toplevel_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2]{'toplevel_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_prev'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2]{'section_childs'}[0]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2]{'section_prev'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2]{'section_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'};
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2]{'toplevel_prev'}
=
$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[1]{'section_childs'}[2];
-$result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[2]{'toplevel_up'}
= $result_sectioning{'setshortcontentsaftertitlepage'}{'section_childs'}[0];
-
-$result_errors{'setshortcontentsaftertitlepage'} = [];
-
-
-
-$result_converted{'plaintext'}->{'setshortcontentsaftertitlepage'} = 'top
-1 chapter
-part
-2 chapter in part
-3 second chapter in part
-unnumbered
-Appendix A appendix
-
-top
-***
-
-1 chapter
-*********
-
-1.1 section
-===========
-
-1.1.1 subsection
-----------------
-
-1.1.1.1 subsubsection
-.....................
-
-2 chapter in part
-*****************
-
-3 second chapter in part
-************************
-
-unnumbered
-**********
-
-Appendix A appendix
-*******************
-
-A.1 appendixsec
-===============
-
-';
-
-
-$result_converted{'html'}->{'setshortcontentsaftertitlepage'} = '<!DOCTYPE
html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<!-- Created by texinfo, http://www.gnu.org/software/texinfo/ -->
-<head>
-<title>top</title>
-
-<meta name="description" content="top">
-<meta name="keywords" content="top">
-<meta name="resource-type" content="document">
-<meta name="distribution" content="global">
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<style type="text/css">
-<!--
-a.summary-letter {text-decoration: none}
-blockquote.indentedblock {margin-right: 0em}
-blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
-blockquote.smallquotation {font-size: smaller}
-div.display {margin-left: 3.2em}
-div.example {margin-left: 3.2em}
-div.lisp {margin-left: 3.2em}
-div.smalldisplay {margin-left: 3.2em}
-div.smallexample {margin-left: 3.2em}
-div.smalllisp {margin-left: 3.2em}
-kbd {font-style: oblique}
-pre.display {font-family: inherit}
-pre.format {font-family: inherit}
-pre.menu-comment {font-family: serif}
-pre.menu-preformatted {font-family: serif}
-pre.smalldisplay {font-family: inherit; font-size: smaller}
-pre.smallexample {font-size: smaller}
-pre.smallformat {font-family: inherit; font-size: smaller}
-pre.smalllisp {font-size: smaller}
-span.nolinebreak {white-space: nowrap}
-span.roman {font-family: initial; font-weight: normal}
-span.sansserif {font-family: sans-serif; font-weight: normal}
-ul.no-bullet {list-style: none}
--->
-</style>
-
-
-</head>
-
-<body lang="en">
-<a name="SEC_Overview"></a>
-<h2 class="shortcontents-heading">Short Table of Contents</h2>
-
-<div class="shortcontents">
-<ul class="no-bullet">
-<li><ul class="no-bullet">
-<li><a name="stoc-chapter" href="#toc-chapter">1 chapter</a></li>
-</ul></li>
-<li><a name="stoc-part" href="#toc-part">part</a><ul class="no-bullet">
-<li><a name="stoc-chapter-in-part" href="#toc-chapter-in-part">2 chapter in
part</a></li>
-<li><a name="stoc-second-chapter-in-part" href="#toc-second-chapter-in-part">3
second chapter in part</a></li>
-<li><a name="stoc-unnumbered" href="#toc-unnumbered">unnumbered</a></li>
-</ul></li>
-<li><a name="stoc-appendix" href="#toc-appendix">Appendix A appendix</a></li>
-
-</ul>
-</div>
-
-<hr>
-<a name="top"></a>
-<h1 class="top">top</h1>
-
-<a name="chapter"></a>
-<h2 class="chapter">1 chapter</h2>
-
-<a name="section"></a>
-<h3 class="section">1.1 section</h3>
-
-<a name="subsection"></a>
-<h4 class="subsection">1.1.1 subsection</h4>
-
-<a name="subsubsection"></a>
-<h4 class="subsubsection">1.1.1.1 subsubsection</h4>
-
-<a name="part"></a>
-<h1 class="part">part</h1>
-<hr>
-
-<a name="chapter-in-part"></a>
-<h2 class="chapter">2 chapter in part</h2>
-
-<a name="second-chapter-in-part"></a>
-<h2 class="chapter">3 second chapter in part</h2>
-
-<a name="unnumbered"></a>
-<h2 class="unnumbered">unnumbered</h2>
-
-<a name="appendix"></a>
-<h2 class="appendix">Appendix A appendix</h2>
-
-<a name="appendixsec"></a>
-<h3 class="appendixsec">A.1 appendixsec</h3>
-
-<hr>
-
-
-
-</body>
-</html>
-';
-
-1;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [7025] tp remove setcontentsaftertitlepage,
Gavin D. Smith <=