1Pod::PseudoPod::LaTeX(3U)ser Contributed Perl DocumentatiPoond::PseudoPod::LaTeX(3)
2
3
4
6 Pod::PseudoPod::LaTeX - convert Pod::PseudoPod documents into LaTeX
7
9 Version 0.10
10
12 This module is a Pod::PseudoPod subclass, itself a Pod::Simple
13 subclass. This means that this is a full-fledged POD parser. Anything
14 those modules can do, this can do.
15
16 Perhaps a little code snippet.
17
18 use Pod::PseudoPod::LaTeX;
19
20 my $parser = Pod::PseudoPod::LaTeX->new();
21 $parser->output_fh( $some_fh );
22 $parser->parse_file( 'some_document.pod' );
23
24 ...
25
26 There aren't really any user-servicable parts inside.
27
29 chromatic, "<chromatic at wgz.org>"
30
32 Please report any bugs or feature requests to "bug-pod-pseudopod-tex at
33 rt.cpan.org", or through the web interface at
34 http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-PseudoPod-LaTeX
35 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Pod-PseudoPod-LaTeX>.
36 I'll hear about it and you'll hear about any progress on your bug as I
37 make changes.
38
40 Read this documentation with the perldoc command:
41
42 $ B<perldoc Pod::PseudoPod::LaTeX>
43
44 You can also look for information at:
45
46 · AnnoCPAN: Annotated CPAN documentation
47
48 http://annocpan.org/dist/Pod-PseudoPod-LaTeX
49 <http://annocpan.org/dist/Pod-PseudoPod-LaTeX>
50
51 · CPAN Ratings
52
53 http://cpanratings.perl.org/d/Pod-PseudoPod-LaTeX
54 <http://cpanratings.perl.org/d/Pod-PseudoPod-LaTeX>
55
56 · RT: CPAN's request tracker
57
58 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Pod-PseudoPod-LaTeX
59 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Pod-PseudoPod-LaTeX>
60
61 · Search CPAN
62
63 http://search.cpan.org/dist/Pod-PseudoPod-LaTeX
64 <http://search.cpan.org/dist/Pod-PseudoPod-LaTeX>
65
67 Based on Allison Randal's Pod::PseudoPod module.
68
69 See also perlpod, Pod::Simple and Pod::TeX. I did not reuse the latter
70 because I need to support the additional POD directives found in
71 PseudoPod.
72
73 Thanks to Onyx Neon Press (<http://www.onyxneon.com/>) for sponsoring
74 this work under free software guidelines.
75
77 Copyright (c) 2006, 2009 chromatic, some rights reserved.
78
79 This program is free software; you can redistribute it and/or modify it
80 under the same terms as Perl 5.8 itself.
81
82
83
84perl v5.12.0 2010-05-04 Pod::PseudoPod::LaTeX(3)