diff options
author | Karl Berry <karl@freefriends.org> | 2010-04-14 18:29:31 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-04-14 18:29:31 +0000 |
commit | 299bdb0274ac6021f90b883511b05fe7b54b3f84 (patch) | |
tree | 051ee04434aaa2533b7cd95a5ae0737739291632 /Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf | |
parent | 2f62a5fe6f4a15971e376276ff7a5abaf17fccbf (diff) |
new scripts pdfjam 2.01 (14apr10)
git-svn-id: svn://tug.org/texlive/trunk@17868 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf')
-rw-r--r-- | Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf b/Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf new file mode 100644 index 00000000000..dbebf73ce67 --- /dev/null +++ b/Master/texmf-dist/doc/latex/pdfjam/pdfjam.conf @@ -0,0 +1,91 @@ +############################################################### +## +## This is a sample 'pdfjam.conf' file. +## +## Edit lines below (and un-comment them as necessary) to +## override settings made in the 'pdfjam' script itself. +## (As distributed, the settings made in this file are the +## same as those made in the 'pdfjam' script.) +## +## A file in this format can be used site-wide (as a file named +## "pdfjam.conf", in an appropriate location), or for a specific +## user (as "~/.pdfjam.conf"). User-specific settings override +## any site-wide settings. +## +## See 'pdfjam --help' for details, including where to put +## this file; or see the file PDFjam-README.html. +## +############################################################### +## +## UNUSUAL TEX INSTALLATION? +## +## Specify the location of the 'pdflatex' to be used: +# pdflatex='/usr/bin/pdflatex' ## typical unix installation +# pdflatex='/usr/texbin/pdflatex' ## for MacTeX on Mac OS X +# pdflatex='C:/texmf/miktex/bin/pdflatex.exe' ## Windows?? +## +############################################################### +## +## TEMPORARY FILES +## +## Specify the location for temporary files written by pdfjam: +tempfileDir='/var/tmp' ## fairly standard on many unix systems +# tempfileDir='C:/tmp' ## use something like this under Cygwin? +## +## Should temporary files be deleted immediately by default? +tidy='true' ## overridden by '--no-tidy' in the call +# tidy='false' ## the alternative +## +############################################################### +## +## USE OF THE 'PDFINFO' UTILITY +## +## Specify whether pdfjam should, by default, try to run 'pdfinfo' +## to preserve source document information in the output: +keepinfo='false' ## overridden by '--keepinfo' in the call +# keepinfo='true' ## the alternative +## +## Specify the 'pdfinfo' program to be used (if any): +# pdfinfo='/usr/bin/pdfinfo' ## typical unix system +# pdfinfo='/opt/local/bin/pdfinfo' ## Mac OS X with MacPorts +## +############################################################### +## +## USE OF 'file -Lb MYFILE' TO CHECK WHETHER A FILE IS A PDF FILE +## +## Should the '--checkfiles' option be used by default? +checkfiles='false' ## overridden by '--checkfiles' in the call; +# checkfiles='true' ## the alternative +## +############################################################### +## +## DEFAULT PAPER SIZE +## +## Set the default paper size to be used: +paper='a4paper' ## for ISO A4 paper +# paper='letterpaper' ## for 'US letter' paper +## +############################################################### +## +## DEFAULT PATH FOR THE --outfile OPTION +## +outFile="$pwd" ## the obvious default +# outFile="$HOME/Documents" ## another possibility, perhaps +# outFile=/dev/stdout ## for easy pipes +## +############################################################### +## +## OTHER DEFAULTS +## +## Defaults for some other options: +## +suffix='pdfjam' ## overridden by '--suffix MYSUFFIX' in the call +## +landscape='false' ## overridden by '--landscape' in the call +# landscape='true' ## the alternative +## +twoside='false' ## overridden by '--twoside' in the call +# twoside='true' ## the alternative +## +############################################################### +## END OF FILE: that's all you can configure here! |