dottes/makeBooke.sh

45 lines
984 B
Bash
Raw Normal View History

2012-02-25 14:32:23 +00:00
#!/bin/sh
2012-02-27 08:50:45 +00:00
#
# Build the Booke. First assemble the book LaTeX, then build it
# into a PDF.
#
2012-02-25 14:32:23 +00:00
if [ $# != 1 ]; then
echo "Usage: make.sh <book dir name>"
exit 1
fi
dir=`pwd`
booke=$dir/$1
builddir=$dir/build
2012-02-27 08:50:45 +00:00
output=dottes.tex
2012-02-25 14:32:23 +00:00
mkdir -p $builddir
cp dottes.tex.header $builddir/$output
2012-02-27 08:50:45 +00:00
# Now, for each tune, add
#
# \addcontentsline{toc}{subsection}{<Tune title>}
# \begin{abc}[name=<filename>]
# ... ABC ...
# \end{abc}
find $booke -name "*.abc" | sort |
while read filename
do
title=`grep "^T:" $filename | head -1 | sed -e "s/^T: *//"`
2012-02-27 08:50:45 +00:00
name=`basename $filename .abc`
echo "\\\\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output
echo "\\\\begin{abc}[options=-j0 +c,name=$name]" >> $builddir/$output
cat $filename >> $builddir/$output
echo "\\\\end{abc}" >> $builddir/$output
2012-02-27 08:50:45 +00:00
done
cat dottes.tex.footer >> $builddir/$output
2012-02-27 08:50:45 +00:00
cd $builddir
pdflatex -shell-escape $output
pdflatex -shell-escape $output