This file is indexed.

/usr/share/perl5/LaTeXML/Package/supertabular.sty.ltxml is in latexml 0.8.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# -*- CPERL -*-
# /=====================================================================\ #
# |  supertabular                                                       | #
# | Implementation for LaTeXML                                          | #
# |=====================================================================| #
# | Part of LaTeXML:                                                    | #
# |  Public domain software, produced as part of work done by the       | #
# |  United States Government & not subject to copyright in the US.     | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov>                        #_#     | #
# | http://dlmf.nist.gov/LaTeXML/                              (o o)    | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Package::Pool;
use strict;
use warnings;
use LaTeXML::Package;

DefPrimitive('\@supertabular@bindings [Dimension] AlignmentTemplate', sub {
    my ($stomach, $width, $template) = @_;
    tabularBindings($template, guess_headers => 0, attributes => { width => $width });
    return; });

# Environment \begin{supertabular}{pattern} ... \end{supertabular}
DefMacro('\supertabular{}',
  '\@supertabular@topcaption'
    . '\@supertabular@bindings{#1}\@@supertabular{#1}\@start@alignment'
    . '\@supertabular@head');
DefMacro('\endsupertabular',
  '\@supertabular@tail'
    . '\@finish@alignment\@end@tabular'
    . '\@supertabular@bottomcaption');

DefConstructor('\@@supertabular Undigested DigestedBody',
  '#2',
  reversion    => '\begin{supertabular}{#1}#2\end{supertabular}',
  beforeDigest => sub { $_[0]->bgroup; },
  mode         => 'text');

# Environment \begin{supertabular*}{width}{pattern} ... \end{supertabular*}
DefMacro('\csname supertabular*\endcsname{Dimension}{}',
  '\@supertabular@topcaption'
    . '\@supertabular@bindings[#1]{#2}\@@supertabular@{#1}{#2}\@start@alignment'
    . '\@supertabular@head');
DefMacro('\csname endsupertabular*\endcsname',
  '\@supertabular@tail'
    . '\@finish@alignment\@end@tabular'
    . '\@supertabular@bottomcaption');

DefConstructor('\@@supertabular@ {Dimension} Undigested DigestedBody',
  '#3',
  reversion    => '\begin{supertabular*}{#1}{#2}#3\end{supertabular*}',
  beforeDigest => sub { $_[0]->bgroup; },
  mode         => 'text');

# The following 2 environments set the tabular in (or as if in) a minipage.
# I don't know what significance that might have, so they're basically
# copies of the above.

# Environment \begin{mpsupertabular}{pattern} ... \end{mpsupertabular}
DefMacro('\mpsupertabular{}',
  '\@supertabular@topcaption'
    . '\@supertabular@bindings{#1}\@@supertabular{#1}\@start@alignment'
    . '\@supertabular@head');
DefMacro('\endmpsupertabular',
  '\@supertabular@tail'
    . '\@finish@alignment\@end@tabular'
    . '\@supertabular@bottomcaption');

# Environment \begin{mpsupertabular*}{width}{pattern} ... \end{mpsupertabular*}
DefMacro('\csname mpsupertabular*\endcsname{Dimension}{}',
  '\@supertabular@topcaption'
    . '\@supertabular@bindings[#1]{#2}\@@supertabular@{#1}{#2}\@start@alignment'
    . '\@supertabular@head');
DefMacro('\csname endmpsupertabular*\endcsname',
  '\@supertabular@tail'
    . '\@finish@alignment\@end@tabular'
    . '\@supertabular@bottomcaption');

#======================================================================
# Table headings/footers.

# These should appear BEFORE the supertabular environment
# Record the Tokens() for the various headings, footers and captions for later.
DefPrimitive('\tablehead{}',      sub { AssignValue(SUPERTABULAR_HEAD      => $_[1], 'global') });
DefPrimitive('\tablefirsthead{}', sub { AssignValue(SUPERTABULAR_FIRSTHEAD => $_[1], 'global') });
DefPrimitive('\tabletail{}',      sub { AssignValue(SUPERTABULAR_TAIL      => $_[1], 'global') });
DefPrimitive('\tablelasttail{}',  sub { AssignValue(SUPERTABULAR_LASTTAIL  => $_[1], 'global') });

# These insert the appropriate header/footer into the supertabular.

# We're not going to break the table into pages, so just take the firsthead,
# instead of head, if it was given.  Analogously for tail
DefMacro('\@supertabular@head', sub {
    my $head = LookupValue('SUPERTABULAR_FIRSTHEAD') || LookupValue('SUPERTABULAR_HEAD');
    ($head ? (T_CS('\@tabular@begin@heading'), $head->unlist, T_CS('\@tabular@end@heading')) : ()); });

DefMacro('\@supertabular@tail', sub {
    my $tail = LookupValue('SUPERTABULAR_LASTTAIL') || LookupValue('SUPERTABULAR_TAIL');
    ($tail ? (T_CS('\@tabular@begin@heading'), $tail->unlist, T_CS('\@tabular@end@heading')) : ()); });

#======================================================================
# Captions

RawTeX(<<'EOTeX');
\newif\if@topcaption\@topcaptiontrue
EOTeX

# These should appear BEFORE the supertabular environment
# Record the Tokens() for the various headings, footers and captions for later.
DefPrimitive('\topcaption []{}', sub {
    AssignValue(SUPERTABULAR_TOPTOCCAPTION => $_[1]);
    AssignValue(SUPERTABULAR_TOPCAPTION    => $_[2]); });
DefPrimitive('\bottomcaption []{}', sub {
    AssignValue(SUPERTABULAR_BOTTOMTOCCAPTION => $_[1]);
    AssignValue(SUPERTABULAR_BOTTOMCAPTION    => $_[2]); });
DefPrimitive('\tablecaption []{}', sub {
    AssignValue(SUPERTABULAR_TOCCAPTION => $_[1]);
    AssignValue(SUPERTABULAR_CAPTION    => $_[2]); });

# Place appropriate captions.
# We're just going to use \caption, assuming that there's a table environment around it.
DefMacro('\@supertabular@topcaption', sub {
    my $top = LookupValue('Boolean:@topcaption');
    my ($cap, $toccap);
    if ($cap = LookupValue('SUPERTABULAR_TOPCAPTION')) {
      $toccap = LookupValue('SUPERTABULAR_TOPTOCCAPTION'); }
    elsif ($top && ($cap = LookupValue('SUPERTABULAR_CAPTION'))) {
      $toccap = LookupValue('SUPERTABULAR_TOCCAPTION'); }
##  ($cap ? Invocation(T_CS('\caption'),$toccap,$cap)->unlist : ()); });
    ($cap ? Invocation(T_CS('\@caption'), T_OTHER('table'), $toccap, $cap)->unlist : ()); });

DefMacro('\@supertabular@bottomcaption', sub {
    my $top = LookupValue('Boolean:@topcaption');
    my ($cap, $toccap);
    if ($cap = LookupValue('SUPERTABULAR_BOTTOMCAPTION')) {
      $toccap = LookupValue('SUPERTABULAR_BOTTOMTOCCAPTION'); }
    elsif (!$top && ($cap = LookupValue('SUPERTABULAR_CAPTION'))) {
      $toccap = LookupValue('SUPERTABULAR_TOCCAPTION'); }
    #  ($cap ? Invocation(T_CS('\caption'),$toccap,$cap)->unlist : ()); });
    ($cap ? Invocation(T_CS('\@caption'), T_OTHER('table'), $toccap, $cap)->unlist : ()); });

#======================================================================

DefMacro('\shrinkheight{Dimension}', '');

#======================================================================

1;