comparison makeBooke.sh @ 748:ce5c7214f9aa

Introduce mechanism for having different tune images for compact printed output. Sort alternate .abc in subdir 'Compact' under the booke dir. Use that as the graphic for A5 output, assuming it will be vertically more compact. Use Bear Dance as an example, as it has commentary that currently overflows an A5 landscape page. For the moment, transposed Bookes don't transpose and so don't use Compact.
author Jim Hague <jim.hague@acm.org>
date Fri, 13 Oct 2017 15:44:15 +0100
parents b45a87f4ccdb
children f5f6517a8bdf
comparison
equal deleted inserted replaced
746:34c7947b4542 748:ce5c7214f9aa
15 dir=`pwd` 15 dir=`pwd`
16 16
17 builddir=$dir/build 17 builddir=$dir/build
18 booketex=$builddir/dottes.tex 18 booketex=$builddir/dottes.tex
19 bookepdf=$builddir/dottes.pdf 19 bookepdf=$builddir/dottes.pdf
20 usecompact=""
21
22 if [ "$1" = "--use-compact" ]; then
23 usecompact="yes"
24 shift
25 fi
20 26
21 papersize=$1 27 papersize=$1
22 shift 28 shift
23 29
24 mkdir -p $builddir 30 mkdir -p $builddir