Mercurial > dottes
changeset 37:72b5d67756e1
Fix up troubles with \. echo -E disables expansion.
author | Jim Hague <jim.hague@laicatc.com> |
---|---|
date | Sat, 03 Mar 2012 12:00:35 +0000 |
parents | 98fe55433833 |
children | 01c4d873153f |
files | makeBooke.sh |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/makeBooke.sh Sat Mar 03 09:12:06 2012 +0000 +++ b/makeBooke.sh Sat Mar 03 12:00:35 2012 +0000 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Build the Booke. First assemble the book LaTeX, then build it # into a PDF. @@ -33,10 +33,10 @@ 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 "\\\\end{center}" >> $builddir/$output + echo -E "\begin{center}" >> $builddir/$output + echo -E "\includegraphics[width=\textwidth]{$name}" >> $builddir/$output + echo -E "\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output + echo -E "\end{center}" >> $builddir/$output done cat dottes.tex.footer >> $builddir/$output