dirty-helpers/pdfnup-slides

12 lines
179 B
Text
Raw Normal View History

2015-08-03 16:12:12 +02:00
#!/bin/bash
2015-10-12 11:54:12 +02:00
file=$1
2015-08-03 16:12:12 +02:00
2015-10-12 11:54:12 +02:00
# put 1x2 slides (pdf) on one page
pdfnup --nup 1x2 \
--no-landscape \
2015-08-03 16:12:12 +02:00
--delta "0.5cm 0.5cm" \
--scale 0.9 \
"$@" \
2015-10-12 11:54:12 +02:00
--outfile "${1%%.pdf}.nup.pdf"