GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
LTPRETTY(1) User Contributed Perl Documentation LTPRETTY(1)

ltpretty - Use LaTeX::Table from within your text editor.

  ltpretty < lazytable

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

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).

   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

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

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

   % 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}

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

LaTeX::Table

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 "bug-latex-table@rt.cpan.org", or through the web interface at <http://rt.cpan.org>.

Copyright (c) 2006-2010, "<limaone@cpan.org>".

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

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.

2022-06-08 perl v5.32.1

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.