When making A4 book, we don't need to do special A5 handling on Squeeze.

This commit is contained in:
Jim Hague 2013-01-26 18:40:04 +00:00
parent 77cd8ca396
commit 53946071c6
1 changed files with 2 additions and 16 deletions

View File

@ -68,22 +68,8 @@ cat dottes.tex.footer >> $builddir/$output
cd $builddir cd $builddir
# The version of xetex on Squeeze doesn't do pass the A5 landscape instruction
# down to the PDF generator. So split out and do manually.
#
# And, sigh, this fails on Sid. The first page comes out as A4 portrait.
# So try to work out which we are using and run the appropriate command.
ver=`xetex -version | head -n 1`
ver=${ver/*TeX Live /}
ver=${ver/\/*/}
if [ "$ver" == "2009" ]; then
xelatex -no-pdf $output
xelatex -no-pdf $output
xdvipdfmx -p a5 -l $outputxdv
else
xelatex $output xelatex $output
xelatex $output xelatex $output
fi
mv $outputpdf $dir/$1-A4.pdf mv $outputpdf $dir/$1-A4.pdf