blob: 9b8f90c12e184130b233c810d7fa0f50bf901309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
###############################################################
##
## 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
##
preamble='' ## concatenate other strings to this by using '--preamble'
##
###############################################################
## END OF FILE: that's all you can configure here!
|