diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/lshort-chinese/src/make.bat')
-rwxr-xr-x | Master/texmf-dist/doc/latex/lshort-chinese/src/make.bat | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/lshort-chinese/src/make.bat b/Master/texmf-dist/doc/latex/lshort-chinese/src/make.bat new file mode 100755 index 00000000000..686897658a2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/lshort-chinese/src/make.bat @@ -0,0 +1,24 @@ +@echo off +set LSHORT=lshort-zh-cn +set PDF=%LSHORT%.pdf +set TEMP=%LSHORT%.aux %LSHORT%.log %LSHORT%.idx %LSHORT%.ind %LSHORT%.ilg %LSHORT%.out %LSHORT%.toc %LSHORT%.los %LSHORT%-example.aux + +if "%1"=="clean" goto clean + +set TEX=xelatex +set MODE=-interaction=nonstopmode +set MAKEINDEX=makeindex + +%TEX% %MODE% %LSHORT% +%MAKEINDEX% -s %LSHORT%.ist %LSHORT% +%TEX% %MODE% %LSHORT% + +if exist %PDF% ( +move %PDF% .. +start "" "..\%PDF%" +) +exit + +:clean +del %TEMP% +exit |