#!/usr/bin/perl -w #======================================================================== # # latex2ps # # DESCRIPTION # Script for processing and rendering a template document using the # Perl Template Toolkit. # # AUTHOR # Andrew Ford # # COPYRIGHT # Copyright (C) 2007 Andrew Ford. All Rights Reserved. # # This module is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # #------------------------------------------------------------------------ # # $Id: latex2ps 59 2007-09-28 14:39:34Z andrew $ # #======================================================================== use strict; use warnings; use LaTeX::Driver::FilterProgram; LaTeX::Driver::FilterProgram->execute(format => 'dvi'); exit(0); __END__ =head1 NAME latex2ps - script to convert LaTeX file to PostScript =head1 SYNOPSIS latex2ps [OPTIONS] [-o output] [sourcefile] =head1 DESCRIPTION C is a simple script to invoke the C module to convert a LaTeX file to PostScript. TO BE EXPANDED =head1 AUTHOR Andrew Ford EA.Ford@ford-mason.co.ukE =head1 LICENSE AND COPYRIGHT Copyright (C) 2007 Andrew Ford. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO =cut # Local Variables: # mode: perl # perl-indent-level: 4 # indent-tabs-mode: nil # End: # # vim: expandtab shiftwidth=4: