Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Convert .pod files to .html filesConvert POD data to formatted ... (Berikutnya)
Utilities

Convert pod documentation to latex format

Daftar Isi

NAME

pod2latex - convert pod documentation to latex format

SYNOPSIS

  1. pod2latex *.pm
  2. pod2latex -out mytex.tex *.pod
  3. pod2latex -full -sections 'DESCRIPTION|NAME' SomeDir
  4. pod2latex -prefile h.tex -postfile t.tex my.pod

DESCRIPTION

pod2latex is a program to convert POD format documentation(perlpod) into latex. It can process multiple input documents at atime and either generate a latex file per input document or a singlecombined output file.

OPTIONS AND ARGUMENTS

This section describes the supported command line options. Minimummatching is supported.

  • -out

    Name of the output file to be used. If there are multiple input podsit is assumed that the intention is to write all translated outputinto a single file. .tex is appended if not present. If theargument is not supplied, a single document will be created for eachinput file.

  • -full

    Creates a complete latex file that can be processed immediately(unless =for/=begin directives are used that rely on extra packages).Table of contents and index generation commands are included in thewrapper latex code.

  • -sections

    Specify pod sections to include (or remove if negated) in thetranslation. See SECTION SPECIFICATIONS in Pod::Select for theformat to use for section-spec. This option may be given multipletimes on the command line.This is identical to the similar option inthe podselect() command.

  • -modify

    This option causes the output latex to be slightlymodified from the input pod such that when a =head1 NAMEis encountered a section is created containing the actualpod name (rather than NAME) and all subsequent =head1directives are treated as subsections. This has the advantagethat the description of a module will be in its own sectionwhich is helpful for including module descriptions in documentation.Also forces latex label and index entries to be prefixed by thename of the module.

  • -h1level

    Specifies the latex section that is equivalent to a H1 poddirective. This is an integer between 0 and 5 with 0 equivalent to alatex chapter, 1 equivalent to a latex section etc. The defaultis 1 (H1 equivalent to a latex section).

  • -help

    Print a brief help message and exit.

  • -man

    Print the manual page and exit.

  • -verbose

    Print information messages as each document is processed.

  • -preamble

    A user-supplied preamble for the LaTeX code. Multiple valuesare supported and appended in order separated by "\n".See -prefile for reading the preamble from a file.

  • -postamble

    A user supplied postamble for the LaTeX code. Multiple valuesare supported and appended in order separated by "\n".See -postfile for reading the postamble from a file.

  • -prefile

    A user-supplied preamble for the LaTeX code to be read from thenamed file. Multiple values are supported and appended inorder. See -preamble.

  • -postfile

    A user-supplied postamble for the LaTeX code to be read from thenamed file. Multiple values are supported and appended inorder. See -postamble.

BUGS

Known bugs are:

  • Cross references between documents are not resolved when multiplepod documents are converted into a single output latex file.

  • Functions and variables are not automatically recognizedand they will therefore not be marked up in any special wayunless instructed by an explicit pod command.

SEE ALSO

Pod::LaTeX

AUTHOR

Tim Jenness <[email protected]>

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

Copyright (C) 2000, 2003, 2004 Tim Jenness. All Rights Reserved.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Convert .pod files to .html filesConvert POD data to formatted ... (Berikutnya)