comparison makeAltoRecorderCFingering.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 2f6e05d0aba0
children 06fec6764661
comparison
equal deleted inserted replaced
746:34c7947b4542 748:ce5c7214f9aa
23 # Copy book component items. 23 # Copy book component items.
24 cp $booke/*.txt $outdir 24 cp $booke/*.txt $outdir
25 25
26 echo "Alto Recorder (C Fingering)" > $outdir/instrument.txt 26 echo "Alto Recorder (C Fingering)" > $outdir/instrument.txt
27 27
28 find $booke -name "*.abc" | sort | 28 find $booke -depth 1 -name "*.abc" | sort |
29 while read filename 29 while read filename
30 do 30 do
31 name=`basename $filename .abc` 31 name=`basename $filename .abc`
32 range=`./abcrange.py $filename` 32 range=`./abcrange.py $filename`
33 33