Put the title and subtitle on the section intro page.
Contents, for some reason, can't be taken from file.
This commit is contained in:
parent
b17a790b77
commit
24f0fee542
|
@ -7,7 +7,8 @@
|
|||
\vspace*{\fill}
|
||||
|
||||
\begin{center}
|
||||
{\Large @SECTION@ tunes}
|
||||
{\Huge \input{@SECTION@-title.txt}}\\[\baselineskip]
|
||||
{\Large \input{@SECTION@-subtitle.txt}}
|
||||
\end{center}
|
||||
|
||||
\vspace*{\fill}
|
||||
|
|
|
@ -27,11 +27,13 @@ cp buildno.txt $builddir
|
|||
cp buzzard.pdf $builddir
|
||||
for item in title subtitle instrument
|
||||
do
|
||||
rm -f $builddir/$item.txt
|
||||
rm -f $builddir/$item.txt $builddir/$1-$item.txt
|
||||
if [ -r $booke/$item.txt ]; then
|
||||
cp $booke/$item.txt $builddir
|
||||
cp $booke/$item.txt $builddir/$item.txt
|
||||
cp $booke/$item.txt $builddir/$1-$item.txt
|
||||
else
|
||||
touch $builddir/$item.txt
|
||||
touch $builddir/$1-$item.txt
|
||||
fi
|
||||
done
|
||||
for item in intro
|
||||
|
|
Loading…
Reference in New Issue