-
Notifications
You must be signed in to change notification settings - Fork 1
/
build-all.bat
87 lines (80 loc) · 1.58 KB
/
build-all.bat
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
86
87
rem Copyright (C) 2016- Maximilian Hoheiser <[email protected]>
@echo off
set CLASS=thesistu
set SOURCE=example
@echo on
rem 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
rem Build the thesistu class file
pdflatex %CLASS%.ins
rem Build the thesistu thesis 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%
rem Build the thesistu example document
copy 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%
del *.acn
del *.acr
del *.alg
del *.aux
del *.bbl
del *.blg
del *.glg
del *.glo
del *.gls
del *.idx
del *.ilg
del *.ind
del *.ist
del *.lof
del *.lot
del *.out
del *.toc
del *.hd
del *.loa
cd ..
del *.acn
del *.acr
del *.alg
del *.aux
del *.bbl
del *.blg
del *.glg
del *.glo
del *.gls
del *.idx
del *.ilg
del *.ind
del *.ist
del *.lof
del *.lot
del *.out
del *.toc
del *.hd
del example*
@echo off
echo.
echo.
echo Class file and example document compiled.
pause