2012-03-03 12:00:35 +00:00
|
|
|
#!/bin/bash
|
2012-02-27 08:50:45 +00:00
|
|
|
#
|
|
|
|
# Build the Booke. First assemble the book LaTeX, then build it
|
|
|
|
# into a PDF.
|
|
|
|
#
|
2012-03-04 12:00:30 +00:00
|
|
|
# All EPS and PDF tune graphics must be present already. Run
|
|
|
|
# makeGraphics.sh to make these.
|
|
|
|
#
|
2012-02-25 14:32:23 +00:00
|
|
|
|
2013-02-23 13:10:58 +00:00
|
|
|
# Restore titles like 'Exploding Potato, The' to the
|
|
|
|
# expected 'The Exploding Potato'.
|
|
|
|
fixtitle()
|
|
|
|
{
|
|
|
|
retval=`echo "$1" | sed -e "s/\(.*\), *\(.*\)/\2 \1/"`
|
|
|
|
}
|
|
|
|
|
2012-02-25 14:32:23 +00:00
|
|
|
if [ $# != 1 ]; then
|
2013-01-26 13:47:01 +00:00
|
|
|
echo "Usage: makeBookeA4.sh <book dir name>"
|
2012-02-25 14:32:23 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-02-27 13:04:37 +00:00
|
|
|
dir=`pwd`
|
|
|
|
|
|
|
|
booke=$dir/$1
|
|
|
|
builddir=$dir/build
|
2012-03-04 12:00:30 +00:00
|
|
|
graphicsdir=$dir/graphics/$1
|
2013-01-26 13:47:01 +00:00
|
|
|
output=dottesA4.tex
|
2012-04-13 15:57:02 +01:00
|
|
|
outputxdv=${output/%.tex/.xdv}
|
|
|
|
outputpdf=${output/%.tex/.pdf}
|
2012-02-25 14:32:23 +00:00
|
|
|
|
2012-02-27 13:04:37 +00:00
|
|
|
mkdir -p $builddir
|
|
|
|
|
2012-03-03 16:06:23 +00:00
|
|
|
cp buildno.txt $builddir
|
2013-06-14 23:19:25 +01:00
|
|
|
cp buzzard.eps $builddir
|
|
|
|
if [ -r $booke/title.txt ]; then
|
|
|
|
cp $booke/title.txt $builddir
|
|
|
|
else
|
|
|
|
touch $builddir/title.txt
|
|
|
|
fi
|
2012-03-03 15:24:59 +00:00
|
|
|
if [ -r $booke/subtitle.txt ]; then
|
|
|
|
cp $booke/subtitle.txt $builddir
|
2012-03-03 14:08:41 +00:00
|
|
|
else
|
2012-03-03 15:24:59 +00:00
|
|
|
touch $builddir/subtitle.txt
|
2012-03-03 14:08:41 +00:00
|
|
|
fi
|
2012-03-03 15:24:59 +00:00
|
|
|
if [ -r $booke/intro.txt ]; then
|
|
|
|
cp $booke/intro.txt $builddir
|
2012-03-03 14:08:41 +00:00
|
|
|
else
|
2012-03-03 15:24:59 +00:00
|
|
|
touch $builddir/intro.txt
|
2012-03-03 14:08:41 +00:00
|
|
|
fi
|
2013-01-26 13:47:01 +00:00
|
|
|
cp dottes.tex.a4header $builddir/$output
|
2013-06-15 00:11:23 +01:00
|
|
|
cat dottes.tex.intro >> $builddir/$output
|
2012-02-27 08:50:45 +00:00
|
|
|
|
2012-03-03 14:08:41 +00:00
|
|
|
# Now, for each tune, make the tune graphic and add it, inside a
|
|
|
|
# centre section, so the document. Then add a TOC entry.
|
2012-02-27 08:50:45 +00:00
|
|
|
find $booke -name "*.abc" | sort |
|
|
|
|
while read filename
|
|
|
|
do
|
|
|
|
name=`basename $filename .abc`
|
2013-02-23 13:10:58 +00:00
|
|
|
title=`$dir/abcfield.py --field T --latex $filename`
|
|
|
|
fixtitle "$title"
|
|
|
|
title=$retval
|
|
|
|
|
2013-06-15 22:21:02 +01:00
|
|
|
echo -E "\begin{figure}[H]" >> $builddir/$output
|
2012-03-16 10:37:48 +00:00
|
|
|
echo -E "\phantomsection" >> $builddir/$output
|
2013-06-15 22:21:02 +01:00
|
|
|
echo -E "{\centering \hypertarget{$name}{\includegraphics[width=\textwidth,keepaspectratio]{$graphicsdir/$name}}}" >> $builddir/$output
|
2012-03-03 12:00:35 +00:00
|
|
|
echo -E "\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output
|
2013-02-23 13:10:58 +00:00
|
|
|
|
|
|
|
changefile=`$dir/abcfield.py --field N $filename | grep "Change:" | sed -e "s/Change: *//"`
|
|
|
|
changetitle=""
|
|
|
|
if [ -n "$changefile" ]; then
|
|
|
|
changetitle=`$dir/abcfield.py --field T --latex $booke/$changefile`
|
|
|
|
fixtitle "$changetitle"
|
|
|
|
changetitle=$retval
|
|
|
|
changename=`basename $changefile .abc`
|
|
|
|
echo -E "Change: \hyperlink{$changename}{$changetitle}" >> $builddir/$output
|
2013-01-26 13:47:01 +00:00
|
|
|
fi
|
2013-06-15 22:21:02 +01:00
|
|
|
echo -E "\end{figure}" >> $builddir/$output
|
2012-02-27 08:50:45 +00:00
|
|
|
done
|
|
|
|
|
2012-03-04 20:16:48 +00:00
|
|
|
cat dottes.tex.firstlines >> $builddir/$output
|
|
|
|
|
|
|
|
find $booke -name "*.abc" | sort |
|
|
|
|
while read filename
|
|
|
|
do
|
|
|
|
name=`basename $filename .abc`
|
2013-02-23 13:10:58 +00:00
|
|
|
title=`$dir/abcfield.py --field T --latex $filename`
|
|
|
|
fixtitle "$title"
|
|
|
|
title=$retval
|
2012-03-16 10:37:48 +00:00
|
|
|
echo -E "\hyperlink{$name}{$title} & \raisebox{-.25\height}{\includegraphics[width=0.6\textwidth]{$graphicsdir/firstline-$name}} \\\\" >> $builddir/$output
|
2012-03-04 20:16:48 +00:00
|
|
|
done
|
|
|
|
|
2012-02-27 13:04:37 +00:00
|
|
|
cat dottes.tex.footer >> $builddir/$output
|
2012-02-27 08:50:45 +00:00
|
|
|
|
2012-02-27 13:04:37 +00:00
|
|
|
cd $builddir
|
2012-04-13 15:57:02 +01:00
|
|
|
|
2013-06-15 14:21:47 +01:00
|
|
|
xelatex $output
|
2013-01-26 18:40:04 +00:00
|
|
|
xelatex $output
|
|
|
|
xelatex $output
|
2012-03-03 14:08:41 +00:00
|
|
|
|
2013-01-26 13:47:01 +00:00
|
|
|
mv $outputpdf $dir/$1-A4.pdf
|
2012-02-29 14:05:18 +00:00
|
|
|
|
|
|
|
cd $dir
|