blob: 6ae9b11ec220f26ce0859f8b8956b315dac3dee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@echo off
:: mft-tex [par1] [par2] [par3] [par4]
:: where
:: [par1] = input file: 1%.mf
:: [par2] = change file: 1%.mfc
:: [par3] = style file: pl.mft
:: [par4] = output file: 1%.tex
if exist %1.mfc goto YEC
:NOC
mft %1.mf nul pl.mft %1.tex
goto END
:YEC
mft %1.mf %1.mfc pl.mft %1.tex
goto END
:END
|