Mercurial > dottes
annotate makeBooke.sh @ 119:15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
The version of xetex on Squeeze does not pass the paper size
through to the PDF rendered properly. Following a Googled suggestion,
split the rendering into two part, and pass the page size explicitly
to the PDF generation.
This isn't necessary for the booklet because the output is A4 portrait,
the default paper size.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Fri, 13 Apr 2012 15:57:02 +0100 |
parents | 8f3b50ede59c |
children | 4b0025be9d22 |
rev | line source |
---|---|
37
72b5d67756e1
Fix up troubles with \. echo -E disables expansion.
Jim Hague <jim.hague@laicatc.com>
parents:
34
diff
changeset
|
1 #!/bin/bash |
13 | 2 # |
3 # Build the Booke. First assemble the book LaTeX, then build it | |
4 # into a PDF. | |
5 # | |
42
0e7d2830cb8b
Put making tune graphics required by web and book into separate dir and make separately.
Jim Hague <jim.hague@laicatc.com>
parents:
40
diff
changeset
|
6 # All EPS and PDF tune graphics must be present already. Run |
0e7d2830cb8b
Put making tune graphics required by web and book into separate dir and make separately.
Jim Hague <jim.hague@laicatc.com>
parents:
40
diff
changeset
|
7 # makeGraphics.sh to make these. |
0e7d2830cb8b
Put making tune graphics required by web and book into separate dir and make separately.
Jim Hague <jim.hague@laicatc.com>
parents:
40
diff
changeset
|
8 # |
0 | 9 |
10 if [ $# != 1 ]; then | |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
11 echo "Usage: makeBooke.sh <book dir name>" |
0 | 12 exit 1 |
13 fi | |
14 | |
16 | 15 dir=`pwd` |
16 | |
17 booke=$dir/$1 | |
18 builddir=$dir/build | |
42
0e7d2830cb8b
Put making tune graphics required by web and book into separate dir and make separately.
Jim Hague <jim.hague@laicatc.com>
parents:
40
diff
changeset
|
19 graphicsdir=$dir/graphics/$1 |
13 | 20 output=dottes.tex |
119
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
21 outputxdv=${output/%.tex/.xdv} |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
22 outputpdf=${output/%.tex/.pdf} |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
23 outputa4=dottesona4.tex |
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
24 outputa4pdf=dottesona4.pdf |
0 | 25 |
16 | 26 mkdir -p $builddir |
27 | |
40
93955def7313
Revise page footers, and add build number.
Jim Hague <jim.hague@laicatc.com>
parents:
39
diff
changeset
|
28 cp buildno.txt $builddir |
39
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
29 if [ -r $booke/subtitle.txt ]; then |
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
30 cp $booke/subtitle.txt $builddir |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
31 else |
39
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
32 touch $builddir/subtitle.txt |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
33 fi |
39
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
34 if [ -r $booke/intro.txt ]; then |
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
35 cp $booke/intro.txt $builddir |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
36 else |
39
9681f6cd9c2b
Change subtitle and intro files to .txt extension.
Jim Hague <jim.hague@laicatc.com>
parents:
38
diff
changeset
|
37 touch $builddir/intro.txt |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
38 fi |
16 | 39 cp dottes.tex.header $builddir/$output |
13 | 40 |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
41 # Now, for each tune, make the tune graphic and add it, inside a |
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
42 # centre section, so the document. Then add a TOC entry. |
13 | 43 find $booke -name "*.abc" | sort | |
44 while read filename | |
45 do | |
110
a63e39fc3410
Add basic diacritic handling for LaTeX and web.
Jim Hague <jim.hague@acm.org>
parents:
108
diff
changeset
|
46 title=`$dir/abctitle.py --latex $filename` |
13 | 47 name=`basename $filename .abc` |
37
72b5d67756e1
Fix up troubles with \. echo -E disables expansion.
Jim Hague <jim.hague@laicatc.com>
parents:
34
diff
changeset
|
48 echo -E "\begin{center}" >> $builddir/$output |
115
c4efe8b5eea1
Add internal hyperlinks to the book.
Jim Hague <jim.hague@acm.org>
parents:
110
diff
changeset
|
49 echo -E "\phantomsection" >> $builddir/$output |
116
19ba410d891f
Ensure tune graphic is confined to a single page.
Jim Hague <jim.hague@acm.org>
parents:
115
diff
changeset
|
50 echo -E "\hypertarget{$name}{\includegraphics[width=\textwidth,height=0.9\textheight,keepaspectratio]{$graphicsdir/$name}}" >> $builddir/$output |
37
72b5d67756e1
Fix up troubles with \. echo -E disables expansion.
Jim Hague <jim.hague@laicatc.com>
parents:
34
diff
changeset
|
51 echo -E "\addcontentsline{toc}{subsection}{$title}" >> $builddir/$output |
72b5d67756e1
Fix up troubles with \. echo -E disables expansion.
Jim Hague <jim.hague@laicatc.com>
parents:
34
diff
changeset
|
52 echo -E "\end{center}" >> $builddir/$output |
13 | 53 done |
54 | |
50
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
55 cat dottes.tex.firstlines >> $builddir/$output |
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
56 |
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
57 find $booke -name "*.abc" | sort | |
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
58 while read filename |
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
59 do |
110
a63e39fc3410
Add basic diacritic handling for LaTeX and web.
Jim Hague <jim.hague@acm.org>
parents:
108
diff
changeset
|
60 title=`$dir/abctitle.py --latex $filename` |
50
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
61 name=`basename $filename .abc` |
115
c4efe8b5eea1
Add internal hyperlinks to the book.
Jim Hague <jim.hague@acm.org>
parents:
110
diff
changeset
|
62 echo -E "\hyperlink{$name}{$title} & \raisebox{-.25\height}{\includegraphics[width=0.6\textwidth]{$graphicsdir/firstline-$name}} \\\\" >> $builddir/$output |
50
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
63 done |
e666306c5ab1
Add list of tune first lines.
Jim Hague <jim.hague@laicatc.com>
parents:
42
diff
changeset
|
64 |
16 | 65 cat dottes.tex.footer >> $builddir/$output |
13 | 66 |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
67 cp $outputa4 $builddir |
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
68 |
16 | 69 cd $builddir |
119
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
70 |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
71 # The version of xetex on Squeeze doesn't do pass the A5 landscape instruction |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
72 # down to the PDF generator. So split out and do manually. |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
73 xelatex -no-pdf $output |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
74 xelatex -no-pdf $output |
15ce1ecb5ba3
Fix page size issue on xetex on Squeeze.
Jim Hague <jim.hague@acm.org>
parents:
118
diff
changeset
|
75 xdvipdfmx -p a5 -l $outputxdv |
118
8f3b50ede59c
Switch to XeTeX to render. Opens up random OpenType fonts and UTF-8.
Jim Hague <jim.hague@acm.org>
parents:
116
diff
changeset
|
76 xelatex $outputa4 |
38
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
77 |
01c4d873153f
Quick attempt to parameterise different book builds.
Jim Hague <jim.hague@laicatc.com>
parents:
37
diff
changeset
|
78 mv $outputpdf $dir/$1.pdf |
65
6ced110a62aa
Fix renaming of the A4 booklet.
Jim Hague <jim.hague@acm.org>
parents:
50
diff
changeset
|
79 mv $outputa4pdf $dir/${1}-booklet.pdf |
21
b61b090cd4c7
Produce an A4 PDF document with the A5 pages in booklet form.
Jim Hague <jim.hague@acm.org>
parents:
16
diff
changeset
|
80 |
b61b090cd4c7
Produce an A4 PDF document with the A5 pages in booklet form.
Jim Hague <jim.hague@acm.org>
parents:
16
diff
changeset
|
81 cd $dir |