Ver código fonte

Switch makehandouts to use pdfjam instead of pdfnup/pdf90

Samuel W. Flint 1 ano atrás
pai
commit
de09a9d31a
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      makehandouts

+ 4 - 4
makehandouts

@@ -23,14 +23,14 @@ if [ -n "$1" ]; then
  echo "4up:	$1-handout4up.pdf" >> /tmp/makefile
  echo " " >> /tmp/makefile
  echo "$1-handout4up.pdf: $1-handout.pdf" >> /tmp/makefile
- echo "	pdfnup $1-handout.pdf --nup 2x2 --outfile /tmp/junk.pdf" >> /tmp/makefile
- echo "	pdf90 /tmp/junk.pdf --outfile $1-handout4up.pdf" >> /tmp/makefile
+ echo "	pdfjam $1-handout.pdf --nup 2x2 --outfile /tmp/junk.pdf" >> /tmp/makefile
+ echo "	pdfjam --landscape --angle 90 /tmp/junk.pdf --outfile $1-handout4up.pdf" >> /tmp/makefile
  echo " " >> /tmp/makefile
  echo "$1-handout2up.pdf:	$1-handout.pdf" >> /tmp/makefile
- echo "	pdfnup $1-handout.pdf --nup 1x2 --outfile $1-handout2up.pdf" >> /tmp/makefile
+ echo "	pdfjam $1-handout.pdf --nup 1x2 --outfile $1-handout2up.pdf" >> /tmp/makefile
  echo " " >> /tmp/makefile
  echo "$1-handout1up.pdf:	$1-handout.pdf" >> /tmp/makefile
- echo "	pdf90 $1-handout.pdf --outfile $1-handout1up.pdf" >> /tmp/makefile
+ echo "	pdfjam --angle 90 --landscape $1-handout.pdf --outfile $1-handout1up.pdf" >> /tmp/makefile
  echo " " >> /tmp/makefile
  echo "$1-handout.pdf:	$1-handout.tex" >> /tmp/makefile
  echo "	latexmk -pdflua $1-handout" >> /tmp/makefile