You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
473 B
Batchfile
31 lines
473 B
Batchfile
3 months ago
|
@ECHO OFF
|
||
|
|
||
|
REM Command file for Sphinx documentation
|
||
|
|
||
|
pushd %~dp0
|
||
|
|
||
|
set PDFLATEX=latexmk -pdf -dvi- -ps-
|
||
|
|
||
|
set "LATEXOPTS= "
|
||
|
|
||
|
if "%1" == "" goto all-pdf
|
||
|
|
||
|
if "%1" == "all-pdf" (
|
||
|
:all-pdf
|
||
|
for %%i in (*.tex) do (
|
||
|
%PDFLATEX% %LATEXMKOPTS% %%i
|
||
|
)
|
||
|
goto end
|
||
|
)
|
||
|
|
||
|
if "%1" == "all-pdf-ja" (
|
||
|
goto all-pdf
|
||
|
)
|
||
|
|
||
|
if "%1" == "clean" (
|
||
|
del /q /s *.dvi *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz *.fls *.fdb_latexmk
|
||
|
goto end
|
||
|
)
|
||
|
|
||
|
:end
|
||
|
popd
|