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.
This commit is contained in:
parent
29e716ff4e
commit
fe23735027
|
@ -3,6 +3,7 @@
|
|||
\usepackage{graphicx}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{longtable}
|
||||
\usepackage{float}
|
||||
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
\usepackage{graphicx}
|
||||
\usepackage{fancyhdr}
|
||||
\usepackage{longtable}
|
||||
\usepackage{float}
|
||||
|
||||
\usepackage{hyperref}
|
||||
\hypersetup{
|
||||
|
|
|
@ -60,11 +60,10 @@ find $booke -name "*.abc" | sort |
|
|||
fixtitle "$title"
|
||||
title=$retval
|
||||
|
||||
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,keepaspectratio]{$graphicsdir/$name}}" >> $builddir/$output
|
||||
echo -E "{\centering \hypertarget{$name}{\includegraphics[width=\textwidth,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=""
|
||||
|
@ -75,6 +74,7 @@ find $booke -name "*.abc" | sort |
|
|||
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
|
||||
|
|
|
@ -63,11 +63,10 @@ find $booke -name "*.abc" | sort |
|
|||
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 @@ find $booke -name "*.abc" | sort |
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue