Remove use of abc pacakge and do the graphics outselves.
Make book building time a lot quicker, because converting from abc to eps/pdf is done only once.
This commit is contained in:
parent
b2a96046c8
commit
fbbce04c6f
|
@ -1,5 +1,4 @@
|
|||
\documentclass[a5paper,landscape,11pt]{article}
|
||||
\usepackage{abc}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{helvet}
|
||||
\usepackage{newcent}
|
||||
|
|
12
makeBooke.sh
12
makeBooke.sh
|
@ -31,17 +31,19 @@ find $booke -name "*.abc" | sort |
|
|||
do
|
||||
title=`grep "^T:" $filename | head -1 | sed -e "s/^T: *//"`
|
||||
name=`basename $filename .abc`
|
||||
abcm2ps -j0 +c -n -E -O $builddir/$name.eps $filename
|
||||
epstopdf --outfile=$builddir/$name.pdf $builddir/${name}001.eps
|
||||
echo "\\\\begin{center}" >> $builddir/$output
|
||||
echo "\\\\includegraphics[width=\\\\textwidth]{$name}" >> $builddir/$output
|
||||
echo "\\\\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output
|
||||
echo "\\\\begin{abc}[options=-j0 +c -n,name=$name]" >> $builddir/$output
|
||||
cat $filename >> $builddir/$output
|
||||
echo "\\\\end{abc}" >> $builddir/$output
|
||||
echo "\\\\end{center}" >> $builddir/$output
|
||||
done
|
||||
|
||||
cat dottes.tex.footer >> $builddir/$output
|
||||
|
||||
cd $builddir
|
||||
pdflatex -shell-escape $output
|
||||
pdflatex -shell-escape $output
|
||||
pdflatex $output
|
||||
pdflatex $output
|
||||
|
||||
cd $dir
|
||||
pdflatex dottesona4.tex
|
||||
|
|
Loading…
Reference in New Issue