forked from CryHavoc/dottes
28 lines
500 B
Bash
28 lines
500 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Assuming the existance of the A5 PDF of the given Booke, produce the
|
||
|
# A4 booklet-that-prints-as-A5.
|
||
|
#
|
||
|
|
||
|
if [ $# != 1 ]; then
|
||
|
echo "Usage: makeBookelet.sh <book dir name>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
dir=`pwd`
|
||
|
|
||
|
builddir=$dir/build
|
||
|
|
||
|
booke=$1-A5.pdf
|
||
|
# This assumes dottesA5.pdf as input.
|
||
|
booklet=$dir/dottesA5onA4booklet.tex
|
||
|
bookletpdf=$builddir/dottesA5onA4booklet.pdf
|
||
|
|
||
|
mkdir -p $builddir
|
||
|
|
||
|
cp $booke $builddir/dottesA5.pdf
|
||
|
|
||
|
cd $builddir
|
||
|
xelatex $booklet
|
||
|
mv $bookletpdf $dir/${1}-A5bookletA4.pdf
|