Files
win8phoneApp/Doc/latex/make.bat
stubbfel 7068d54406 add doku
2013-06-13 13:32:21 +02:00

26 lines
712 B
Batchfile

del /s /f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf
pdflatex refman
echo ----
C:/Program Files/MiKTeX 2.9/miktex/bin/x64/makeindex.exe refman.idx
echo ----
pdflatex refman
setlocal enabledelayedexpansion
set count=5
:repeat
set content=X
for /F "tokens=*" %%T in ( 'findstr /C:"Rerun LaTeX" refman.log' ) do set content="%%~T"
if !content! == X for /F "tokens=*" %%T in ( 'findstr /C:"Rerun to get cross-references right" refman.log' ) do set content="%%~T"
if !content! == X goto :skip
set /a count-=1
if !count! EQU 0 goto :skip
echo ----
pdflatex refman
goto :repeat
:skip
endlocal
C:/Program Files/MiKTeX 2.9/miktex/bin/x64/makeindex.exe refman.idx
pdflatex refman