ltpretty(1) Use LaTeX::Table from within your text editor.

SYNOPSIS


ltpretty < lazytable

DESCRIPTION

This program takes a lazy formatted LaTeX table from STDIN (typically piped from Vim or emacs) and outputs a completely formatted table.

LAZY FORMAT

The first line must contain the LaTeX::Table options (separated by semicolons ";") in the format "optionname=value". The second line must contain the header, the following lines the data. Columns are separated by "&". Trailing empty lines are ignored, other empty lines generate horizontal rules (as in LaTeX::Table).

EXAMPLE

   theme=Meyrin;label=test;position=htb
   Item:2c & Price
   Gnat& per gram& 13.65
   & each& 0.01
   Gnu& stuffed& 92.59
   Emu& stuffed& 33.33
   Armadillo& frozen& 8.99

VIM

1. Select the text in "VISUAL LINE" mode ("shift+v").
2. Type "!ltpretty"

EMACS

1. Select the text
2. Press "alt+|"
3. Now "Shell command on region" should appear. Type "ltpretty"

OUTPUT

   % theme=Meyrin;label=test;position=htb
   % Item:2c & Price
   % Gnat& per gram& 13.65
   % & each& 0.01
   % 
   % Gnu& stuffed& 92.59
   % Emu& stuffed& 33.33
   % Armadillo& frozen& 8.99
  
  \begin{table}[htb]
  \centering
  \begin{tabular}{llr}
  \toprule
  \multicolumn{2}{c}{Item} & Price \\
  \midrule
  Gnat      & per gram & 13.65 \\
            & each     & 0.01  \\
  \midrule          
  Gnu       & stuffed  & 92.59 \\
  Emu       & stuffed  & 33.33 \\
  Armadillo & frozen   & 8.99  \\
  \bottomrule
  \end{tabular}
  \label{test}
  \end{table}

CONFIGURATION AND ENVIRONMENT

"ltpretty" does not support configuration files or environment variables.

DEPENDENCIES

LaTeX::Table

BUGS AND LIMITATIONS

Our lazy format does not support multi-line headers. Just add the other header lines afterwards. More importantly, it currently does not support non-scalar LaTeX::Table options like for example "columns_like_header". A future version may add this functionality.

Please report any bugs or feature requests to "[email protected]", or through the web interface at <http://rt.cpan.org>.

LICENSE AND COPYRIGHT

Copyright (c) 2006-2010, "<[email protected]>".

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE ``AS IS'' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.