Well, it is not really cool, but useful (at least it was for me :-p)
Download
The SYNOPSIS demonstrates the main functionality:
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 )
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.
2006-08-04 Retitled by Arunbear, as per Monastery guidelines
Original title: 'LaTeX::Table'
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.