diff options
author | Karl Berry <karl@freefriends.org> | 2017-10-05 00:43:04 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-10-05 00:43:04 +0000 |
commit | 6da90753bb28081fe69076b75057451a26501c67 (patch) | |
tree | 57585647853087146bde14ac908108bee3f8d239 /Master | |
parent | a5a99f284013e927aba9eb64c0c533aaf52bb178 (diff) |
pst2pdf (4oct17)
git-svn-id: svn://tug.org/texlive/trunk@45476 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/latex/pst2pdf/Changes | 1 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf | bin | 78833 -> 78653 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex | 5 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/pst2pdf/pst2pdf.pl | 14 |
4 files changed, 10 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/Changes b/Master/texmf-dist/doc/latex/pst2pdf/Changes index f08b9e2f413..943d086c3e6 100644 --- a/Master/texmf-dist/doc/latex/pst2pdf/Changes +++ b/Master/texmf-dist/doc/latex/pst2pdf/Changes @@ -1,4 +1,5 @@ pst2pdf.pl -------- +0.18 2017-10-04 - fix typos in the code comments 0.17 2017-09-11 - fix escape character in regex 0.16 2014-09-14 - using gs for split pdf (no more pdftk) - support package pst-exa for examples diff --git a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf b/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf Binary files differindex 961b7f7cb52..729ed152ecc 100644 --- a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf +++ b/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf diff --git a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex b/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex index 65457a04090..1c9d4bd1a7b 100644 --- a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex +++ b/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex @@ -15,7 +15,6 @@ \usepackage{pst-node} \let\pstnodeFV\fileversion \let\pstnodeFD\filedate -%\usepackage{pst-node} \usepackage{biblatex} \addbibresource{\jobname.bib} @@ -35,8 +34,8 @@ \begin{document} \title{\texttt{pst2pdf}} -\subtitle{Running a PSTricks document with pdflatex;\\ \small v. 0.17} -\author{Herbert Vo\ss \\ Pablo Gonz\'{a}lez Luengo} +\subtitle{Running a PSTricks document with pdflatex;\\ \small v. 0.18} +\author{Herbert Voß \\ Pablo Gonz\'{a}lez Luengo} \docauthor{} \date{\today} \maketitle diff --git a/Master/texmf-dist/scripts/pst2pdf/pst2pdf.pl b/Master/texmf-dist/scripts/pst2pdf/pst2pdf.pl index 6ce08cb98fe..e53aa94fc2c 100755 --- a/Master/texmf-dist/scripts/pst2pdf/pst2pdf.pl +++ b/Master/texmf-dist/scripts/pst2pdf/pst2pdf.pl @@ -4,9 +4,9 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $ use strict; # to be sure, that all is safe ... :-) use v5.18; # $Id: pst2pdf.pl 119 2014-09-24 12:04:09Z herbert $ -# v. 0.16 2014-09-14 simplify the use of PSTricks with pdf -# 2017-09-11 (c) Herbert Voss <hvoss@tug.org> -# Pablo González Luengo <pablogonz@yahoo.com> +# v. 0.18 2017-10-04 simplify the use of PSTricks with pdf +# (c) Herbert Voss <hvoss@tug.org> +# Pablo González Luengo <pablgonz@yahoo.com> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -59,7 +59,7 @@ my $other = "other"; # search other verbatim environment #---------------- Program identification, options and help ------------- my $program = 'pst2pdf'; -my $nv='v0.17'; +my $nv='v0.18'; my $ident = '$Id: pst2pdf.pl 119 2017-09-11 12:04:09Z herbert $'; my $copyright = <<END_COPYRIGHT ; Copyright 2011-2017 (c) Herbert Voss <hvoss\@tug.org> and Pablo González. @@ -80,7 +80,7 @@ my $usage = <<"END_OF_USAGE"; ${title}Usage: $program <texfile.tex> [Options] pst2pdf run a TeX source, read all PS-related part and convert in images in pdf,eps,jpg or png format (default pdf) and create new file - whitout pst-enviroment and runs (pdf/Xe)latex. + whitout pst-environment and runs (pdf/Xe)latex. See pst2pdf documentation for more info. Options: -h,--help - display this help and exit @@ -109,7 +109,7 @@ Examples: * $program test.tex -e -p -j -c --imgdir=pics * produce test-pdf.tex whitout pstriks related parts and create image * dir whit all images (pdf,eps,png,jpg) and source (.tex) for all pst -* enviroment in "pics" dir using Ghostscript and cleaning all tmp files. +* environment in "pics" dir using Ghostscript and cleaning all tmp files. * suport bundling for short options $program test.tex -epjc --imgdir=pics END_OF_USAGE # @@ -1037,7 +1037,7 @@ if (opendir(DIR,$dir)) { # abro el directorio } # close ppm } # cerramos runPSTimg -#--------------------- Replace PST enviroment for images---------------- +#--------------------- Replace PST environment for images---------------- sub runpdfTeX() { my ($name,$pdfname) = @_; |