summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up')
-rwxr-xr-xMaster/texmf-dist/scripts/pdfjam/pdfjam-slides3up10
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up b/Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up
index 3bd461c8883..f6736bede44 100755
--- a/Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up
+++ b/Master/texmf-dist/scripts/pdfjam/pdfjam-slides3up
@@ -5,13 +5,13 @@
##
## Author David Firth (http://go.warwick.ac.uk/dfirth)
##
-## This is a simple wrapper for pdfjam, version 2.01
+## This is a simple wrapper for pdfjam, version 2.05
##
footskip=3.1cm ## default setting
pagecommand='{\thispagestyle{empty}}' ## default setting
-case "${1}" in
+case ${1} in
--pagenumbering)
- case "${2}" in
+ case ${2} in
false)
continue ;;
true)
@@ -20,10 +20,10 @@ case "${1}" in
pagecommand='{\thispagestyle{plain}}' ;
footskip="$2" ;;
esac ;
- shift 2 ;;
+ shift; shift ;;
*)
continue ;;
esac
-pdfjam --suffix 3up --nup 1x3 --frame true --noautoscale false \
+exec pdfjam --suffix 3up --nup 1x3 --frame true --noautoscale false \
--delta "0cm 0.2cm" --scale 0.87 --offset "-3.8cm 0cm" \
--preamble "\footskip $footskip" --pagecommand "$pagecommand" "$@"