blob: 948f301b932f8d3815425c07a89902b4e99c3159 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
REM This is the installation batch file skeleton for emtex
REM users. Please check this file carefully whether it
REM matches your system before you commit any changes.
REM
REM Please note that emtex does not support the complete
REM range of MonTeX functions. Notably, RL vertical type-
REM setting is not available.
REM
REM How to proceed:
REM
REM 1. Check for your drives and paths.
REM 2. Correct the following md and copy statements where
REM necessary.
REM 3. Rename this file from EMTEX to EMTEX.BAT
REM 4. Execute EMTEX.BAT
ECHO Creating following directories:
md \emtex\texinput\montex
md \emtex\mfinput\mls
md \emtex\tfm\mls
md \emtex\doc\montex
ECHO Copying contents into newly created directories:
copy texinput\*.* \emtex\texinput\montex\
copy mfinput\*.* \emtex\mfinput\mls\
copy tfm\*.* \emtex\tfm\mls\
copy doc\*.* \emtex\doc\montex\
|