Revision 98152647
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
SL/Template/LaTeX.pm | ||
---|---|---|
55 | 55 |
|
56 | 56 |
for (my $i = 0; $i < scalar(@{$ary}); $i++) { |
57 | 57 |
# do magic markers |
58 |
$form->{"__first__"} = $i == 1;
|
|
58 |
$form->{"__first__"} = $i == 0;
|
|
59 | 59 |
$form->{"__last__"} = ($i + 1) == scalar(@{$ary}); |
60 | 60 |
$form->{"__odd__"} = (($i + 1) % 2) == 1; |
61 | 61 |
$form->{"__counter__"} = $i + 1; |
Auch abrufbar als: Unified diff
Schleifenzähler für first fängt bei 0 an, nicht bei 1