dottes/makeBooke.sh

77 lines
2.0 KiB
Bash
Raw Normal View History

#!/bin/bash
2012-02-27 08:50:45 +00:00
#
# Build the Booke. First assemble the book LaTeX, then build it
# into a PDF.
#
# All EPS and PDF tune graphics must be present already. Run
# makeGraphics.sh to make these.
#
2012-02-25 14:32:23 +00:00
if [ $# != 1 ]; then
echo "Usage: makeBooke.sh <book dir name>"
2012-02-25 14:32:23 +00:00
exit 1
fi
dir=`pwd`
booke=$dir/$1
builddir=$dir/build
graphicsdir=$dir/graphics/$1
2012-02-27 08:50:45 +00:00
output=dottes.tex
outputpdf=dottes.pdf
outputa4=dottesona4.tex
outputa4pdf=dottesona4.pdf
2012-02-25 14:32:23 +00:00
mkdir -p $builddir
cp buildno.txt $builddir
if [ -r $booke/subtitle.txt ]; then
cp $booke/subtitle.txt $builddir
else
touch $builddir/subtitle.txt
fi
if [ -r $booke/intro.txt ]; then
cp $booke/intro.txt $builddir
else
touch $builddir/intro.txt
fi
cp dottes.tex.header $builddir/$output
2012-02-27 08:50:45 +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
title=`$dir/abctitle.py --latex $filename`
2012-02-27 08:50:45 +00:00
name=`basename $filename .abc`
echo -E "\begin{center}" >> $builddir/$output
echo -E "\phantomsection" >> $builddir/$output
echo -E "\hypertarget{$name}{\includegraphics[width=\textwidth,height=0.9\textheight,keepaspectratio]{$graphicsdir/$name}}" >> $builddir/$output
echo -E "\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output
echo -E "\end{center}" >> $builddir/$output
2012-02-27 08:50:45 +00:00
done
cat dottes.tex.firstlines >> $builddir/$output
find $booke -name "*.abc" | sort |
while read filename
do
title=`$dir/abctitle.py --latex $filename`
name=`basename $filename .abc`
echo -E "\hyperlink{$name}{$title} & \raisebox{-.25\height}{\includegraphics[width=0.6\textwidth]{$graphicsdir/firstline-$name}} \\\\" >> $builddir/$output
done
cat dottes.tex.footer >> $builddir/$output
2012-02-27 08:50:45 +00:00
cp $outputa4 $builddir
cd $builddir
xelatex $output
xelatex $output
xelatex $outputa4
mv $outputpdf $dir/$1.pdf
2012-03-05 14:49:17 +00:00
mv $outputa4pdf $dir/${1}-booklet.pdf
cd $dir