blob: 026a07e3fe5ca6a37ba90839f7088922ed29e8cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@echo off
If "%1"=="" goto end
If "%TEMP%"=="" goto notmp
texconv -a greek %1.tex %TEMP%\%1.$$$
tex386 &lgreek %TEMP%/%1.$$$ %2 %3
if exist %TEMP%\%1.$$$ del %TEMP%\%1.$$$
goto end
:notmp
texconv -a greek %1.tex %1.$$$
tex386 &lgreek %1.$$$ %2 %3
If exist %1.$$$ del %1.$$$
:end
|