blob: bb65d013379492dec9df34e7f17653d998882517 (
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
|
#!/bin/sh
##
## pdfjam-slides6up: A shell program to make a 6-up "handout"
## of presentation slides
##
## Author David Firth (http://go.warwick.ac.uk/dfirth)
##
## This is a simple wrapper for pdfjam, version 2.08
##
footskip=2.7cm ## default setting
pagecommand='{\thispagestyle{empty}}' ## default setting
case ${1} in
--pagenumbering)
case ${2} in
false)
continue ;;
true)
pagecommand='{\thispagestyle{plain}}' ;;
*) ## a footskip dimension was supplied
pagecommand='{\thispagestyle{plain}}' ;
footskip="$2" ;;
esac ;
shift; shift ;;
*)
continue ;;
esac
exec pdfjam --suffix 6up --nup 2x3 --frame true --noautoscale false \
--delta "0.2cm 0.3cm" --scale 0.95 --preamble "\footskip $footskip" \
--pagecommand "$pagecommand" "$@"
|