blob: daea5169fbf58f6493b7d56150a0222878832215 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
This worked at one time on borland c++. It just needs Makefiles in
lib and in eps directories. You will need a response file for tlib in
the lib directory. I did this once before, but lost it when I ported
this stuff to Linux.
IMPORTANT: MSDOS doesn't provide enough memory for a full bitmap.
You MUST define TWOPASS. This will force two passes over a half-page
bitmap.
To print this with MSDOS you need to do
copy /b <file> prn:
You can change the location of 'fontdesc' by editing the Makefile.djg
in lib.
Here is an example fontdesc for MSDOS:
font pk epson 3 d:\\tex\\fonts\\epson\\%m\\%f.pk
NOTICE the '\\'. This string winds up going through sprintf somewhere
in the code, that's why.
|