-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-all.bat
34 lines (29 loc) · 841 Bytes
/
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
rem Copyright (C) 2014-2020 by Thomas Auzinger <[email protected]>
@echo off
set CLASS=vutinfth
set SOURCE=immersive3DMultilayerGraph
@echo on
rem Build vutinfth 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 vutinfth class file
pdflatex %CLASS%.ins
rem Build the vutinfth 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%
@echo off
echo.
echo.
echo Class file and example document compiled.
pause