The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Pod::PseudoPod::LaTeX - convert Pod::PseudoPod documents into LaTeX

VERSION

version 1.101060

SYNOPSIS

This module is a Pod::PseudoPod subclass, itself a Pod::Simple subclass. This means that this is a full-fledged POD parser. Anything those modules can do, this can do.

Perhaps a little code snippet.

    use Pod::PseudoPod::LaTeX;

    my $parser = Pod::PseudoPod::LaTeX->new();
        $parser->output_fh( $some_fh );
        $parser->parse_file( 'some_document.pod' );

    ...

There aren't really any user-servicable parts inside.

LATEX PRELUDE

The generated LaTeX code needs some packages to be loaded to work correctly. Currently it needs

    \usepackage{fancyvrb}

The standard font in LaTeX (Computer Modern) does not support bold and italic variants of its monospace font, an alternative is

    \usepackage[T1]{fontenc}
    \usepackage{textcomp}
    \usepackage[scaled]{beramono}

AUTHOR

chromatic, <chromatic at wgz.org>

BUGS

Please report any bugs or feature requests to bug-pod-pseudopod-tex at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-PseudoPod-LaTeX. I'll hear about it and you'll hear about any progress on your bug as I make changes.

SUPPORT

Read this documentation with the perldoc command:

    $ B<perldoc Pod::PseudoPod::LaTeX>

You can also look for information at:

ACKNOWLEDGEMENTS and SEE ALSO

Based on Allison Randal's Pod::PseudoPod module.

See also perlpod, Pod::Simple and Pod::TeX. I did not reuse the latter because I need to support the additional POD directives found in PseudoPod.

Thanks to Onyx Neon Press (http://www.onyxneon.com/) for sponsoring this work under free software guidelines.

COPYRIGHT & LICENSE

Copyright (c) 2006, 2009, 2010 chromatic, some rights reserved.

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