diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/curves/latex2pdf')
-rw-r--r-- | Master/texmf-dist/doc/latex/curves/latex2pdf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/curves/latex2pdf b/Master/texmf-dist/doc/latex/curves/latex2pdf new file mode 100644 index 00000000000..66ecbc43ae3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/curves/latex2pdf @@ -0,0 +1,14 @@ +#! /bin/bash -e +# latex2pdf version 1.0 2008/08/26 +# +# Example bash script making smaller PDF files +# from LaTeX using dvips option of package curves. +# e.g. Download file, make executable and run +# $ ./latex2pdf curves.dtx + +latex $1 +bn=${1%%.*} +dvips $bn +ps2pdf $bn.ps +rm $bn.dvi $bn.ps + |