-
Notifications
You must be signed in to change notification settings - Fork 0
/
compile-tesi.bat
35 lines (23 loc) · 910 Bytes
/
compile-tesi.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
@echo off
set MAIN=tesi
set BUILD_DIR=.\
call clean.bat
del *.pdf
if not exist %BUILD_DIR% mkdir %BUILD_DIR%
@echo --------------------------------------------------------------
@echo - Inizializzazione -
@echo --------------------------------------------------------------
pdflatex -output-directory=%BUILD_DIR% %MAIN%
call compile-bib.bat
call compile-gloss.bat
pdflatex -output-directory=%BUILD_DIR% %MAIN%
call compile-bib.bat
call compile-gloss.bat
@echo --------------------------------------------------------------
@echo - Generazione Documento -
@echo --------------------------------------------------------------
pdflatex -output-directory=%BUILD_DIR% %MAIN%
pdflatex -output-directory=%BUILD_DIR% %MAIN%
call clean.bat
@echo ---------------------------- END -----------------------------
set /p keys=Done...