diff makeBookeA5.sh @ 255:e8ae4d29b52f

Move Change: notice closer to the bottom of the tune graphic. I was using \begin{center}..\end{center} to centre the tune graphic, followed by the change notice, if any. But this leaves a paragraph gap after the center section and hence a gap between tune graphic and change notice. Change to use figures to position the graphic, include the change notice as a caption, and use {\centering} around the image to centre just the image.
author Jim Hague <jim.hague@acm.org>
date Sat, 15 Jun 2013 22:21:02 +0100
parents bd69673595d0
children b8c711dafce1
line wrap: on
line diff
--- a/makeBookeA5.sh	Sat Jun 15 14:21:47 2013 +0100
+++ b/makeBookeA5.sh	Sat Jun 15 22:21:02 2013 +0100
@@ -63,11 +63,10 @@
         title=$retval
 
         echo -E "\newpage" >> $builddir/$output
-        echo -E "\begin{center}" >> $builddir/$output
+        echo -E "\begin{figure}[H]" >> $builddir/$output
         echo -E "\phantomsection" >> $builddir/$output
-        echo -E "\hypertarget{$name}{\includegraphics[width=\textwidth,height=0.85\textheight,keepaspectratio]{$graphicsdir/$name}}" >> $builddir/$output
+        echo -E "{\centering \hypertarget{$name}{\includegraphics[width=\textwidth,height=0.85\textheight,keepaspectratio]{$graphicsdir/$name}}}" >> $builddir/$output
         echo -E "\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output
-        echo -E "\end{center}" >> $builddir/$output
 
         changefile=`$dir/abcfield.py --field N $filename | grep "Change:" | sed -e "s/Change: *//"`
         changetitle=""
@@ -78,6 +77,7 @@
             changename=`basename $changefile .abc`
             echo -E "Change: \hyperlink{$changename}{$changetitle}" >> $builddir/$output
         fi
+        echo -E "\end{figure}" >> $builddir/$output
     done
 
 cat dottes.tex.firstlines >> $builddir/$output