2025-09-02 13:09:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# make a printable pdf for powerpoint slides, 2 slides on each page
|
2015-08-03 16:12:12 +02:00
|
|
|
|
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"
|