-
Notifications
You must be signed in to change notification settings - Fork 1
/
build-all.sh
85 lines (78 loc) · 1.47 KB
/
build-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/sh
# Copyright (C) 2016- Maximilian Hoheiser <[email protected]>
CLASS=thesistu
SOURCE=example
# Build thesistu documentation
pdflatex $CLASS.dtx
pdflatex $CLASS.dtx
makeindex -s gglo.ist -o $CLASS.gls $CLASS.glo
makeindex -s gind.ist -o $CLASS.ind $CLASS.idx
pdflatex $CLASS.dtx
pdflatex $CLASS.dtx
# Build the thesistu class file
pdflatex $CLASS.ins
# Build the thesistu example document
pdflatex $SOURCE
bibtex $SOURCE
pdflatex $SOURCE
pdflatex $SOURCE
makeindex -t $SOURCE.glg -s $SOURCE.ist -o $SOURCE.gls $SOURCE.glo
makeindex -t $SOURCE.alg -s $SOURCE.ist -o $SOURCE.acr $SOURCE.acn
makeindex -t $SOURCE.ilg -o $SOURCE.ind $SOURCE.idx
pdflatex $SOURCE
pdflatex $SOURCE
# Build the thesistu example document
cp thesistu.cls example/thesistu.cls
cd example/
pdflatex $SOURCE
bibtex $SOURCE
pdflatex $SOURCE
pdflatex $SOURCE
makeindex -t $SOURCE.glg -s $SOURCE.ist -o $SOURCE.gls $SOURCE.glo
makeindex -t $SOURCE.alg -s $SOURCE.ist -o $SOURCE.acr $SOURCE.acn
makeindex -t $SOURCE.ilg -o $SOURCE.ind $SOURCE.idx
pdflatex $SOURCE
pdflatex $SOURCE
rm *.acn
rm *.acr
rm *.alg
rm *.aux
rm *.bbl
rm *.blg
rm *.glg
rm *.glo
rm *.gls
rm *.idx
rm *.ilg
rm *.ind
rm *.ist
rm *.lof
rm *.lot
rm *.out
rm *.toc
rm *.hd
rm *.loa
cd ..
rm *.acn
rm *.acr
rm *.alg
rm *.aux
rm *.bbl
rm *.blg
rm *.glg
rm *.glo
rm *.gls
rm *.idx
rm *.ilg
rm *.ind
rm *.ist
rm *.lof
rm *.lot
rm *.out
rm *.toc
rm *.hd
rm example*
echo
echo
echo Class file and example document compiled.
sleep