blob: b54e8132d5582c990e8161b6085b2a617fca5a60 (
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
|
@echo off
echo pak2me kopiert einen PS-Font der CTAN-Verzeichnisstruktur in EmTex-Struktur
echo in verschiedene Ordner.
echo Angabe: pak2me Font-Ordner
rem warning: existing files will be overwritten!!
rem where to find the package
SET PAK=D:\corelpak
rem where to find the Emtex-Parts
SET DVIPS=c:\dos\emtex\data\dvips
SET TFM=c:\dos\emtex\fonts\tfm\ps
SET VF=c:\dos\emtex\fonts\vf\ps
SET PSNFSS=c:\dos\emtex\texinput\latex2e\packages\psnfss
mkdir %TFM%\%1
mkdir %VF%\%1
mkdir %PSNFSS%\%1
copy %PAK%\%1\dvips\*.* %DVIPS% >nul
copy %PAK%\%1\tfm\*.* %TFM%\%1 >nul
copy %PAK%\%1\vf\*.* %VF%\%1 >nul
copy %PAK%\%1\psnfss\*.* %PSNFSS%\%1 >nul
|