The SYNOPSIS demonstrates the main functionality:
It supports multipage tables (e.g. for appendices) and some predefined good looking table themes. Some feedback is highly appreciated before putting it on CPAN.use LaTeX::Table; my $data = [ [ 'Lisa', '0', '0' ], [ 'Marge', '0', '1' ], [ 'Wiggum', '0', '5' ], [ 'Otto', '1', '3' ], [ 'Homer', '2', '6' ], [ 'Barney', '8', '16' ], ]; my $header = [ [ 'Name', 'Beers:2|c|' ], [ '', 'before 4pm', 'afte +r 4pm' ] ]; my $table = LaTeX::Table->new( { filename => 'counter.tex', caption => 'Number of beers before and after 4pm +.', maincaption => 'Beer Counter', label => 'table_beercounter', theme => 'Houston', tablepos => 'htb', } ); $table->generate( $header, $data )
2006-08-04 Retitled by Arunbear, as per Monastery guidelines
Original title: 'LaTeX::Table'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: RFC: LaTeX::Table
by spatterson (Pilgrim) on Aug 15, 2006 at 15:46 UTC |