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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
|
==============================================================================
README.ENG (emTeX DISTRIBUTION) VERSION: 25-Sep-1990
==============================================================================
With modifications of 23-Jun-1992
emTeX: TeX for OS/2, PC-DOS and MS-DOS
------------------------------------------------------------------------------
Preliminary remarks on the documentation
------------------------------------------------------------------------------
In order to use TeX or LaTeX, familiarity with the `programming
language' TeX or LaTeX, respectively, is required. Thus in general
the reading of [1], [2], [5] or [8] is unavoidable. As a brief
introduction for beginners the LaTeX brief introduction of H. Partl
(in German) may be used; it can be found on the disk after the
installation of emTeX (details below). It cannot be used as a
substitute for [2] or [5], however. Experience shows that trying to
save time by not reading the documentation fails. This is especially
true with TeX.
------------------------------------------------------------------------------
Book list
------------------------------------------------------------------------------
`Original works':
[1] Donald E. Knuth: The TeXbook
The standard work on TeX and plain TeX (in English).
[2] Leslie Lamport: LaTeX: A Document Preparation System
The standard work for LaTeX (in English).
Supplemented by \emtex\texinput\local.tex and/or \emtex\doc\local.dvi.
[3] Donald E. Knuth: The METAFONTbook
The standard work for METAFONT (in English).
[4] Michael J. Wichura: The PiCTeX Manual
Manual for PiCTeX (in English).
Obtainable (cost: US$30) from the TeX User's Group:
TeX Users Group
P. O. Box 9506
Providence, RI 02940
USA
Phone: 401-751-7760
E-mail: tug@math.ams.com
Further Books:
[5] Helmut Kopka: LaTeX Eine Einfuehrung
A manual for LaTeX in German. An English version is planned.
[6] Helmut Kopka: LaTeX Erweiterungsmoeglichkeiten
[7] Norbert Schwarz: Eine Einfuehrung in TeX
[8] Norbert Schwarz: Introduction to TeX
------------------------------------------------------------------------------
Introduction
------------------------------------------------------------------------------
emTeX consists among others in the following:
TeX The well-known text system by Donald E. Knuth
LaTeX The well-known macro package for TeX by L. Lamport
METAFONT `font compiler' by Donald E. Knuth
dvidrv Printer driver and Screen Previewer
TeXcad A program for drawing LaTeX picture environments
All programs but TeXcad can be used under DOS as well as OS/2. TeXcad can
be used only under DOS or in DOS mode of OS/2.
The dvidrv printer drivers support the following printers:
HP LaserJet+, HP LaserJet II, HP LaserJet III
HP DeskJet, HP DeskJet+
Kyocera F-1010
NEC P6, P7, P2200
EPSON LQ, FX, and RX series
Panasonic KX-P1124
Apple Imagewriter
C.ITOH 8510A
Tandy DMP-130
...and many more dot matrix printers
emTeX consists of several packages. Each single package is provided in the
form of zip files, which have to be unpacked with the program pkunzip, which
is also provided. Many packages are spread over several zip files, so that
DSDD diskettes can be used. (But fonts are available only on HD diskettes.)
The package DVIDRV, for example, is found in the files dvidrv1.zip,
dvidrv2.zip, and dvidrv3.zip. On the other hand, the package PICTEX is found
in the single file pictex.zip.
------------------------------------------------------------------------------
Diskettes
------------------------------------------------------------------------------
On delivery on HD diskettes (1200 KB or 1440 KB), the diskettes contain the
following files:
Diskette 1
----------
pkz102.exe Compression program (self-unpacking program).
pkunzip.exe Unpacking program (from pkz102.exe).
delete.exe File deleting program.
remove.exe Package removing program.
readme.eng This file.
readme.ger German version of this file.
help.eng Frequently asked questions with answers (English).
help.ger Frequently asked questions with answers (German).
changes.eng Changes from older versions (English).
changes.ger Changes from older versions (German).
changes.pre Changes between the pre-releases of emTeX (German).
tex1.zip TEX package, Part 1/2.
tex2.zip TEX package, Part 2/2.
Diskette 2
----------
latex1.zip LATEX package, Part 1/2.
latex2.zip LATEX package, Part 2/2.
latexdoc.zip LATEXDOC package.
texware.zip TEXWARE package.
makeindx.zip MAKEINDX package.
pictex.zip PICTEX package.
blatex.zip BLATEX package.
Diskette 3
----------
dvidrv1.zip DVIDRV package, Part 1/3.
dvidrv2.zip DVIDRV package, Part 2/3.
dvidrv3.zip DVIDRV package, Part 3/3.
texcad.zip TEXCAD package.
bmf1.zip BMF package, Part 1/2.
Diskette 4
----------
mf1.zip MF package, Part 1/3.
mf2.zip MF package, Part 2/3.
mf3.zip MF package, Part 3/3.
mfware1.zip MFWARE package, Part 1/2.
Diskette 5
----------
mfware2.zip MFWARE package, Part 2/2.
pkedit.zip PKEDIT package.
misc_mf.zip MISC_MF package.
emsy.zip EMSY package.
btex1.zip BTEX package, Part 1/2.
btex2.zip BTEX package, Part 2/2.
bmf2.zip BMF, Part 2/2.
bibtex.zip BIBTEX package.
Diskette 6
----------
lkurz.zip LKURZ package.
gtex.zip GTEX package.
glatex.zip GLATEX package.
gbtex.zip GBTEX package.
gblatex.zip GBLATEX package.
web.zip WEB package.
dvidrvma.zip DVIDRVMA package.
Further diskettes (the files fit on HD diskettes only)
------------------------------------------------------
If you don't have these diskettes, you should use MFjob to create the fonts.
Font library files (*.fli):
Name | Resolution| Diskettes | Printers
| (DPI) | / Files | (among others)
-----+-----------+-----------+-------------------------------------------
LJ | 300 | 5 / 8 | HP LaserJet+, DeskJet, Kyocera F-1010
P6L | 180 | 3 / 7 | NEC P6, EPSON LQ series, Panasonic KX P1124
P6M | 360x180 | 4 / 7 | NEC P6, EPSON LQ series, Panasonic KX P1124
P6H | 360 | 6 / 8 | NEC P6, Panasonic KX P1124, EPSON LQ-550
FX | 240x216 | 4 / 7 | EPSON FX-80, Tandy DMP-130
ITO | 160x144 | 3 / 7 | C.ITOH 8510A, Apple Imagewriter
------------------------------------------------------------------------------
Packages
------------------------------------------------------------------------------
The size indications for the packages are given in KBytes (1024 bytes).
If the cluster size of the disk is greater than 1 KByte, which is almost
always the case, somewhat more space will be needed.
BIBTEX
contains: BibTeX (Bibliography database for LaTeX)
requires: LATEX
optional: ---
files: 11
size: 323
BLATEX
contains: LaTeX for bigTeX (extra big LaTeX)
requires: TEX, BTEX, LATEX
optional: ---
files: 7
size: 499
BMF
contains: bigMETAFONT (extra big METAFONT)
requires: MF
optional: ---
files: 11
size: 1043
BTEX
contains: bigTeX (extra big TeX)
requires: TEX
optional: BLATEX
files: 9
size: 986
DVIDRV
contains: Printer drivers and previewers (dvidrv)
requires: ---
optional: TEX
files: 106
size: 1491
DVIDRVMA
contains: Manual for the dvidrv drivers
requires: DVIDRV, (EMSY)
optional: ---
files: 29
size: 511
EMSY *)
contains: Special fonts of/for em
requires: MF, TEX
optional: LATEX
files: 19
size: 25
GBLATEX
contains: LaTeX for bigTeX (German hyphenation patterns)
requires: TEX, BTEX, GTEX, LATEX, BLATEX, GLATEX
optional: ---
files: 7
size: 499
GBTEX
contains: bigTeX (German hyphenation patterns)
requires: TEX, BTEX, GTEX
optional: GBLATEX
files: 5
size: 316
GLATEX
contains: LaTeX (German hyphenation) and brief LaTeX intro.
requires: LATEX, GTEX
optional: ---
files: 8
size: 415
GTEX
contains: Files for typesetting German texts
requires: TEX
optional: GLATEX
files: 12
size: 312
LATEX
contains: LaTeX (to be more exact: ILaTeX)
requires: TEX
optional: DVIDRV
files: 78
size: 1141
LATEXDOC *)
contains: doc files (documented sty files; obsolete)
requires: LATEX
optional: ---
files: 26
size: 329
LKURZ *)
contains: Source text for the brief LaTeX intro (German)
requires: LATEX
optional: ---
files: 7
size: 94
MAKEINDX
contains: MakeIndex (to sort LaTeX index)
requires: LATEX
optional: ---
files: 5
size: 156
MF
contains: METAFONT
requires: MFWARE
optional: ---
files: 191
size: 1868
MFWARE
contains: Auxiliary programs for METAFONT
requires: MF
optional: TEX, PKEDIT
files: 44
size: 759
MISC_MF *)
contains: Various font source texts
requires: METAFONT
optional: ---
files: 5
size: 134
PICTEX
contains: PiCTeX (graphic macros for TeX)
requires: TEX
optional: BLATEX (required for LaTeX)
files: 5
size: 147
PKEDIT
contains: Font editor
requires: ---
optional: MFWARE
files: 4
size: 100
TEX
contains: emTeX (plain TeX)
requires: ---
optional: DVIDRV
files: 104
size: 1110
TEXCAD
contains: TeXcad (drawing program for LaTeX picture environment)
requires: ---
optional: ---
files: 18
size: 244
TEXWARE
contains: Auxiliary programs for TeX
requires: TEX
optional: ---
files: 11
size: 439
WEB *)
contains: The WEB programming system (TANGLE, WEAVE, ...)
requires: TEX
optional: ---
files: 7
size: 255
The packages with *) are usually not installed.
------------------------------------------------------------------------------
Directions for pkunzip
------------------------------------------------------------------------------
The program pkunzip is part of a program package from PKWARE. It is
installed as follows on a disk (for example in the directory c:\pk):
md c:\pk
a:pkz102 c:\pk
These lines mean the following:
md c:\pk Make the directory
a:pkz102 Load the self-unpacking program on drive a:
c:\pk Target directory
Please observe the license conditions at the end of manual.doc
(contained in pkz102.exe)!
The contents of a zip file (here dvidrvma.zip) can be displayed as follows:
pkunzip -vb a:dvidrvma
These lines have the following meaning:
pkunzip Call the unpacking program
-vb List the contents of a zip file (brief listing)
a:dvidrvma zip file
------------------------------------------------------------------------------
Installation
------------------------------------------------------------------------------
First read this file (readme.eng) in its entirety. Then you should read the
license conditions at the end of manual.doc (contained in pkz102.exe) for
pkzip/pkunzip. (And follow the conditions.)
For the installation, the program pkunzip.exe should be copied onto the disk.
A directory should be used that is in the path for executables (PATH). For
OS/2 users: There is also an OS/2 version of pkzip/pkunzip, but this is not
supplied with emTeX. If you do not have this, you have to use pkunzip in
the DOS compatibility environment.
All of the following examples assume that emTeX is to be installed on drive c:
(You can however install emTeX on another disk, if there is enough space.)
In case an older version of emTeX is already installed on the disk, this
should first be removed. First the files you have modified should be saved
(usually only batch and configuration files). Moreover, before removing emTeX
from the disk, the diskettes should be checked for readability, for example
with
pkunzip -t a:*
These lines have the following meaning:
pkunzip Call the unpacking program
-t Check the zip files
a:* All the zip files on drive a:
The removal of emTeX is done with the program delete, which is supplied on the
first diskette. This is done as follows (drive c:):
a:delete -sd c:\emtex\*.*
These lines have the following meaning:
a: Load the program from diskette (first diskette!)
delete Call the file deletion program
-s Also delete in subdirectories
-d Remove directories
c:\emtex\*.* Files to be removed
Since by this procedure all files in the directory \emtex and in all
subdirectories of this directory will be deleted, you should not use this
directory for your own files!
Now the individual packages can be installed. The following packages are
usually installed (the packages in parentheses do not have to be installed):
TeX: TEX, DVIDRV, (PICTEX), (TEXWARE)
LaTeX: TEX, DVIDRV, LATEX, (BIBTEX), (TEXWARE), (MAKEINDX)
METAFONT: MF, MFWARE, (PKEDIT), (TEX)
For example, to install the package LATEX from drive a: onto disk c:, the
following should be entered:
pkunzip -d -o a:latex? c:\
This line means the following:
pkunzip Call the unpacking program
-d Use directories stored in zip file
-o Overwrite existing files
a:latex? Unpack the package LATEX (latex1.zip, ...)
c:\ Target path
In this way the files will automatically be copied into the right
directories. After installation you should read (or print and read) the
following files:
\emtex\doc\english\texware.doc (TEX package, English)
\emtex\doc\german\texware.doc (TEX package, German)
\emtex\doc\english\dvidrv.doc (DVIDRV package, English)
\emtex\doc\german\dvidrv.doc (DVIDRV package; do not print out; see below!)
Moreover, the license conditions in the following files should be observed:
\emtex\doc\makeindx.cpy (MAKEINDX package)
\emtex\texinput\ghyphen.min (GTEX package)
\emtex\texinput\ghyphen.max (GTEX package)
If you have installed the package DVIDRV and have followed the directions in
the part `Installation of the printer driver and screen previewer' of this
file, then you should install the package DVIDRVMA. This enables you to print
out the `real' manual for the package DVIDRV (as opposed to dvidrv.doc), if
you have available a suitable printer. After printing the manual you can
again delete the files taken from DVIDRVMA (see below). If you cannot, or do
not want to, print the dvidrv manual, then you have to content yourself with
the indications in dvidrv.doc.
After the installation of DVIDRV you can print out the other instructions (or
look at them on the screen). Reading
\emtex\doc\english\emtex.dvi (TEX package)
\emtex\doc\local.dvi (LATEX package)
is especially recommended.
In order to use TeX or METAFONT, various environment variables still have to
be set; see the section `Environment Variables' further below in this file.
If you want to use LaTeX together with PiCTeX, then bigTeX has to be used.
This is a bigger (but slower) version of emTeX. At present only a preliminary
version is available.
A brief introduction to LaTeX, in German, is found in the package GLATEX.
Among the files delivered is the macro package german.sty of H. Partl; if you
want to typeset German or other non-English texts with TeX or LaTeX, you
should read the corresponding instruction \emtex\doc\germdoc.dvi.
Since there are some files which you will not need, you should write a
batch file to delete the ones not needed. In this way you can save some
work in the next installation of emTeX. For example, if you work under
DOS, you will not need the OS/2 versions of TeX and METAFONT. It is also
possible to extract single files from a zip file; see manual.doc in
pkz102.exe. Example:
pkunzip -d a:pkedit c:\ emtex\pkedit.exe
This line means the following:
pkunzip Call the unpacking program
-d Use directories stored in zip file
a:pkedit Unpack the package PKEDIT
c:\ Target path
emtex\pkedit.exe File name (without leading backslash!)
You'll find some frequently asked questions with answers in the file
help.eng (and help.ger) on the first diskette. Before asking the author,
you should read help.eng.
------------------------------------------------------------------------------
Removing a package
------------------------------------------------------------------------------
You can remove a package from the hard disk if the appropriate REM file is
supplied - these files will appear in emTeX sets made available after 2nd
May 1990. To remove a package the program `remove', on the first disk, is
needed. If, for example, you want to remove the DVIDRVMA package from the C:
drive you would enter the following commands:
a:remove c:\emtex\remove\dvidrvma.rem c:\
where
a: load the program from the first disk
remove run the package removal program
c:\emtex\remove\dvidrvma.rem
the list of files comprising the package
c:\ remove the package from this disk
------------------------------------------------------------------------------
Directories
------------------------------------------------------------------------------
The following directories are created during the installation (see also
emtex.dvi, local.dvi, texware.doc, and mfware.doc):
\emtex
Programs, batch files, and configuration files.
\emtex\doc
Instructions and Manuals. The texts in this directory are
available in only one language (English or German).
\emtex\doc\english
English Instructions and Manuals.
\emtex\doc\german
German Instructions and Manuals.
\emtex\doc\gr180
Graphic files for the dvidrv manual (180 DPI).
\emtex\doc\gr300
Graphic files for the dvidrv manual (300 DPI).
\emtex\doc\gr360
Graphic files for the dvidrv manual (360 DPI).
\emtex\texfmts
TeX format files (macro packages in a fast-loading format; for
example, plain and LaTeX) and tex.poo.
\emtex\btexfmts
bigTeX format files (macro packages in a fast-loading format; for
example, plain and LaTeX) and tex.poo.
\emtex\tfm
tfm files (TeX font metrics; font descriptions).
\emtex\texinput
Texts which will be read by TeX (and BibTeX).
\emtex\bibinput
Bibliography database for BibTeX.
\emtex\mfinput
Texts which will be read by METAFONT (and MFT).
\emtex\mfbases
METAFONT base files (macro packages in a fast-loading format; for
example plain and cm) and mf.poo.
\emtex\bmfbases
bigMETAFONT base files (macro packages in a fast-loading format;
for example plain and cm) and mf.poo.
\emtex\mfjob
mfj files (see MFjob).
\emtex\remove
Package contents listings used by the remove program.
------------------------------------------------------------------------------
Environment variables and config.sys
------------------------------------------------------------------------------
In this section it is assumed that TeX has been installed on drive C:.
You should set the environment variables for TeX as follows:
set texinput=c:\emtex\texinput
set tfm=c:\emtex\tfm
set texfmt=c:\emtex\texfmts
set btexfmt=c:\emtex\btexfmts (only for bigTeX)
set textfm=c:\emtex\tfm
set bibinput=c:\emtex\bibinput
The environment variables for METAFONT and MFjob are set as follows:
set mfinput=c:\emtex\mfinput
set mfbas=c:\emtex\mfbases
set bmfbas=c:\emtex\bmfbases (only for bigMETAFONT)
set mfjob=c:\emtex\mfjob
In addition, the directory c:\emtex should be put in the search path, for
example:
path c:\bin;c:\emtex
All of these lines should be put in the file autoexec.bat (file config.sys
for OS/2). The file \emtex\set-tex.bat (\emtex\set-tex.cmd in OS/2) can be
used as a model, or modified and called by autoexec.bat. If the computer
complains about not enough environment space, you should consult your DOS
manual concerning the SHELL command in the config.sys file and concerning
the /E and /P options of the program COMMAND.COM.
If you put all emTeX directories on ONE drive and if the directories are
organzied as recommended (and as stored in the zip files), it will be
sufficient to set the environment variable EMTEXDRV (besides PATH):
set emtexdrv=c
This causes all programs (but dvidrv) to use the default directories on
drive C:.
The config.sys file should specify at least
FILES=20
BUFFERS=20
greater values are allowed.
Under OS/2, the line
IOPL=YES
is required in config.sys for dviscr and pkedit.
------------------------------------------------------------------------------
Installation of the printer drivers and the screen previewers
------------------------------------------------------------------------------
1. Install the DVIDRV package.
2. Copy the fonts to the disk. For example, to install them on drive d: do
as follows:
md d:\texfonts
copy a:*.fli d:\texfonts
The last line has to be repeated for all suitable font diskettes. The
fonts should if possible not be put into a directory under \emtex, in
order to simplify the installation of a new version of emTeX (that is,
without having to copy the fonts again to the disk).
3. The following environment variables should be set:
dvidrvinput Search path for dvi files.
dvidrvfonts Search path for fli files.
dvidrvgraph Search path for graphic files.
For example, this can be done by
set dvidrvinput=c:\mytex;c:\emtex\doc
set dvidrvfonts=d:\texfonts
set dvidrvgraph=c:\mytex;c:\emtex\doc\gr$r
The directory c:\emtex\doc resp. c:\emtex\doc\gr$r is used for printing
the dvidrv manual.
The value stored in DVIDRVFONTS will have the following appended to it by
prtp6l.bat, for example ($r will be replaced by the resolution):
\pixel.p6l\$rdpi
Therefore only a directory should be given, and this must not end with
a \.
All these lines should be put in the file autoexec.bat (for OS/2
config.sys). \emtex\set-tex.bat or \emtex\set-tex.cmd can be used as
models, or modified and called by autoexec.bat. Important: $r and $s
must be written in small letters.
If you don't want to set the environment variables (or if you cannot),
you have to insert the desired directories into the configuration
files (*.cnf) after renaming.
4. To use dviscr under OS/2, you should insert the line
IOPL=YES
into config.sys. If you don't need the OS/2 spooler, you should
disable it.
4. Now the following batch files can be used:
v Screen previewer (dviscr).
vs Screen previewer (dviscrs).
prthplj Printer driver (dvihplj: HP LaserJet+).
prthplj /od Printer driver (dvihplj: HP DeskJet).
prthplj /ok Printer driver (dvihplj: Kyocera F-1010).
prtp6l Printer driver (dvidot p6l: P6 with 180 DPI).
prtp6m Printer driver (dvidot p6m: P6 with 360x180 DPI).
prtp6h Printer driver (dvidot p6h: P6 with 360 DPI).
prtfx Printer driver (dvidot fx: EPSON FX-80).
prtlql Printer driver (dvidot lql: EPSON LQ, 180 DPI).
prtlqm Printer driver (dvidot lqm: EPSON LQ, 360x180 DPI).
prtlqh Printer driver (dvidot lqh: EPSON LQ, 360 DPI).
Note: not all LQ printers support 360 DPI.
prtitoh Printer driver (dvidot itoh: C.ITOH 8510A).
prtaiw Printer driver (dvidot aiw: Apple Imagewriter).
msplj Create graphic files (Parameters: lj.cnf)
mspp6l Create graphic files (Parameters: p6l.cnf)
mspp6m Create graphic files (Parameters: p6m.cnf)
mspp6h Create graphic files (Parameters: p6h.cnf)
mspfx Create graphic files (Parameters: fx.cnf)
mspito Create graphic files (Parameters: ito.cnf)
If you have a version of DOS prior to 3.3, then you should change the
first line of these batch files from
@echo off
to
echo off
The batch files v.cmd, v.bat and vs.bat use the configuration file
lj.cnf (LJ fonts). If another configuration file is to be used, then
these batch files have to be changed correspondingly. If you don't have
the correct font files for your printer, the drivers can reduce the
existing font files in certain cases (marked with * in the table below;
loss of quality!). Gray mode is recommended for dviscr. Example:
Use
@p6m.cnf /ox2
instead of
@p6l_p6m.cnf
with dviscr. This is the table of configuration files:
File name | Resolution | Fonts | Font resolution
-------------+------------+---------+-----------------
lj.cnf | 300 | LJ | 300
p6l.cnf | 180 | P6L | 180
p6l_p6m.cnf *| 180 | P6M | 360x180
p6l_p6h.cnf *| 180 | P6H | 360
p6m.cnf | 360x180 | P6M | 360x180
p6m_p6h.cnf *| 360x180 | P6H | 360
p6h.cnf | 360 | P6H | 360
fx.cnf | 240x216 | FX | 240x216
ito.cnf | 160x144 | ITO | 160x144
6. Justify the margins. This procedure is described in dvidrv.doc under /la#.
The /la# and /ta# options should be put in the respective prt*.cmd/bat
files.
7. If you're using a NEC P7, EPSON FX-100 or another wide (13.6") printer,
you have to modify the batch files prt*.cmd resp. prt*.bat. Examples:
prtfx.bat/cmd:
old: dvidot fx80 @fx.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
new: dvidot fx100 @fx.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
prtlql.bat/cmd:
old: dvidot lql @p6l.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
new: dvidot lqwl @p6l.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
prtp6h.bat/cmd:
old: dvidot p6h @p6h.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
new: dvidot p7h @p6h.cnf /po=prn %1 %2 %3 %4 %5 %6 %7 %8 %9
8. Print the dvidrv manual (German): Install the DVIDRVMA package and follow
the instructions in dvidrvma.doc.
9. If you need (and have) the big fonts for SliTeX, you have to change the
configuration file(s) to include the extra font library file.
Example (lj.cnf):
old: /pl=%DVIDRVFONTS%;lj_0;lj_h;lj_1;lj_2;lj_3;lj_4;lj_5a;lj_5b
new: /pl=%DVIDRVFONTS%;lj_0;lj_h;lj_1;lj_2;lj_3;lj_4;lj_5a;lj_5b;lj_sli
------------------------------------------------------------------------------
Further sources of information
------------------------------------------------------------------------------
The following files contain further information (dvi files can be looked at on
the screen with a screen previewer, or printed with a printer driver):
\emtex\doc\english\texware.doc (TEX package, English)
\emtex\doc\german\texware.doc (TEX package, German)
Calling TeX and its associated programs.
\emtex\doc\germdoc.dvi (GTEX package, German, 4 pages)
Instructions for german.sty.
\emtex\doc\english\emtex.dvi (TEX package, English, 8 pages)
\emtex\doc\german\emtex.dvi (TEX package, German, 12 pages)
Instructions for emTeX.
\emtex\doc\latex.bug (LATEX package, English)
Changes and known mistakes in LaTeX.
\emtex\doc\local.gid (LATEX package, English)
Ultra brief instructions for LaTeX.
\emtex\doc\local.dvi (LATEX package, English, 20 pages)
Implementation specific instructions for LaTeX.
\emtex\doc\lkurz.dvi (GLATEX package, German, 46 pages)
Brief instructions for LaTeX by H.Partl.
\emtex\doc\english\mfware.doc (MF package, English)
\emtex\doc\german\mfware.doc (MF package, German)
Calling METAFONT and its associated programs.
\emtex\doc\english\mfjob.doc (MFWARE package, English)
\emtex\doc\german\mfjob.doc (MFWARE package, German)
Instructions for the MFjob program.
\emtex\doc\english\dvidrvma.doc (DVIDRVMA package, English)
\emtex\doc\german\dvidrvma.doc (DVIDRVMA package, German)
Instructions for printing the dvidrv manual.
\emtex\doc\english\dvidrv.dvi (DVIDRVMA package, English, 45 pp.)
\emtex\doc\german\dvidrv.dvi (DVIDRVMA package, German, 58 pages)
Manual for the dvidrv drivers.
\emtex\doc\english\dvidrv.doc (DVIDRV package, English)
\emtex\doc\german\dvidrv.doc (DVIDRV package, German)
Instructions for the dvidrv drivers. Pay special attention to
the end (changes with respect to earlier versions).
\emtex\doc\english\fontlib.doc (DVIDRV package, English)
\emtex\doc\german\fontlib.doc (DVIDRV package, German)
Instructions for the fontlib program.
\emtex\doc\english\makedot.doc (DVIDRV package, English)
\emtex\doc\german\makedot.doc (DVIDRV package, German)
Provisional instructions for makedot. This is a supplement to
dvidot.doc.
\emtex\doc\web.doc (WEB package, German)
Calling the programs of the WEB system.
\emtex\doc\english\pkedit.doc (PKEDIT package, English)
\emtex\doc\german\pkedit.doc (PKEDIT package, German)
Instructions for the pkedit program.
\emtex\doc\english\tcman.dvi (TEXCAD package, English, 13 pages)
\emtex\doc\german\tcman.dvi (TEXCAD package, German, 14 pages)
The TeXcad manual.
\emtex\texinput\webman.tex (WEB package, English)
Manual for the WEB system.
\emtex\texinput\makeindx.tex (MAKEINDX package, English)
Instructions for MakeIndex.
\emtex\doc\makeindx.doc (MAKEINDX package, English)
Detailed instructions for MakeIndex.
\emtex\doc\english\texchk.doc (TEXWARE package, English)
\emtex\doc\german\texchk.doc (TEXWARE package, German)
Instructions for texchk.
------------------------------------------------------------------------------
File names in the emTeX system
------------------------------------------------------------------------------
.aux Auxiliary file created and used by LaTeX
.bak Backup file (fontlib, pkedit)
.bas Fast-loading file for METAFONT (no, not BASIC)
.bat Batch file (DOS)
.bbl Output file of BibTeX
.bgi Video graphics driver (used by TeXcad)
.bib Bibliography database for BibTeX
.blg Transcript file (BibTeX)
.bst Bibliography style for BibTeX
.bug List of bugs
.ch Change file (TANGLE, WEAVE and MFT)
.chr Readable form of a pxl file (PXtoCH and CHtoPX)
.cmd Batch file (OS/2)
.cnf Configuration file for dvidrv
.dlg Transcript file (dvidrv)
.doc Instructions (straight text) or commented sty file
.dot Parameter file for dvidot
.dvi Device independent output of TeX
.err Error messages and warnings (dvidrv)
.exe Executable program
.fli Font library file (dvidrv)
.fmt Fast-loading file for TeX
.gf Font file created by METAFONT (usually .#gf)
.gft Default extension for the output of GFtype
.glo LaTeX auxiliary file for \glossary
.hlp On-line help
.idx Index entries (created by LaTeX)
.ilg MakeIndex transcript file
.ind Index entries (created by MakeIndex)
.lof LaTeX auxiliary file for \listoffigures
.log Transcript file (TeX and METAFONT)
.lot LaTeX auxiliary file for \listoftables
.mac TeXcad macro file
.mf Source text for a font
.mfj Job file for MFjob
.mft Style file for MFT
.msp Graphic file
.opt TeXcad parameters
.ovl Overlay
.pas Pascal source file (TANGLE)
.pcx Graphic file
.pic Picture environment created by TeXcad
.pk Compressed font file
.pkt Default extension for the output of PKtype
.pl Readable form of a tfm file
.poo String pool for INITEX or INIMF (pool file)
.pxl Font file
.rem Package contents listing for the remove program
.sty Document style or document style option for LaTeX
.sub Font substitution file (dvidrv)
.tcp TeX code page (translation of code pages and special characters)
.tex TeX text
.tfm Symbol widths and other properties of a font (font metrics)
.toc Notes of LaTeX for contents
.ver List of program versions (TeXcad)
.vf Virtual font (dvidrv, VFtoVP, VPtoVF)
.vpl Readable form of a vf file (VFtoVP and VPtoVF)
.web WEB source text (TANGLE and WEAVE)
.zip Archive file (collection of compressed files)
(No claim as to completeness.)
------------------------------------------------------------------------------
File list
------------------------------------------------------------------------------
The abbreviation CM stands for Computer Modern. A `*' at the beginning of a
line denotes a change from the emTeX distribution of 29-Mar-1990, and a '+'
marks a newly added file.
BIBTEX package
--------------
* \emtex\bibtex.exe BibTeX
\emtex\bibinput\btxdoc.bib Bibliography database for btxdoc.tex
\emtex\bibinput\xampl.bib Database of examples
\emtex\texinput\abbrv.bst Bibliography style `abbrv'
\emtex\texinput\alpha.bst Bibliography style `alpha'
\emtex\texinput\plain.bst Bibliography style `plain'
\emtex\texinput\unsrt.bst Bibliography style `unsrt'
\emtex\texinput\btxbst.doc Source file for plain Bibliography Styles
\emtex\texinput\btxdoc.tex Instructions for BibTeX
\emtex\texinput\btxhak.tex Instructions: creating Bibliography Styles
+ \emtex\remove\bibtex.rem Package contents listing for `remove'
BLATEX package
--------------
\emtex\blatex.bat Calling LaTeX (American hyphenation)
\emtex\blatex.cmd Calling LaTeX (American hyphenation)
* \emtex\btexfmts\lplain.fmt fmt file for LaTeX (Amer. hyphenation)
* \emtex\btexfmts\lplain.log log file of lplain.fmt
+ \emtex\btexfmts\slifmt.cmd Create fmt file for SliTeX
+ \emtex\btexfmts\slifmt.bat Create fmt file for SliTeX
+ \emtex\remove\blatex.rem Package contents listing for `remove'
BMF package
-----------
* \emtex\bmf.exe BigMETAFONT (DOS)
* \emtex\bmf286.exe BigMETAFONT (DOS, 80286 CPU)
* \emtex\bmfp.exe BigMETAFONT (OS/2 protected mode)
\emtex\bmfbases\bas.bat Create bas files
\emtex\bmfbases\bas.cmd Create bas files
* \emtex\bmfbases\cm.bas Computer Modern METAFONT base
* \emtex\bmfbases\cm.log log file to cm.bas
* \emtex\bmfbases\mf.poo Pool file (string list) for INIMF
* \emtex\bmfbases\plain.bas plain METAFONT base
* \emtex\bmfbases\plain.log log file of plain.bas
+ \emtex\remove\bmf.rem Package contents listing for `remove'
BTEX package
------------
* \emtex\btex.exe BigTeX (DOS)
* \emtex\btex286.exe BigTeX (DOS, 80286 CPU)
* \emtex\btexp.exe BigTeX (OS/2 protected mode)
* \emtex\btexfmts\fmt.bat Create fmt files
* \emtex\btexfmts\fmt.cmd Create fmt files
* \emtex\btexfmts\plain.fmt plain TeX (American hyphenation)
* \emtex\btexfmts\plain.log log file of plain.fmt
* \emtex\btexfmts\tex.poo Pool file (string list) for INITeX
+ \emtex\remove\btex.rem Package contents listing for `remove'
DVIDRV package
--------------
+ \emtex\doc\english\dvidrv.doc Instructions for dvidrv (English)
* \emtex\doc\german\dvidrv.doc Instructions for dvidrv (German)
+ \emtex\doc\english\pcltomsp.doc Instructions for PCLtoMSP (English)
* \emtex\doc\german\pcltomsp.doc Instructions for PCLtoMSP (German)
+ \emtex\doc\english\makedot.doc Instructions for makedot (English)
+ \emtex\doc\german\makedot.doc Instructions for makedot (German)
+ \emtex\doc\english\fontlib.doc Instructions for fontlib (English)
* \emtex\doc\german\fontlib.doc Instructions for fontlib (German)
\emtex\doc\adjust.dvi dvi file for adjusting margins
+ \emtex\dvidrv.err Error messages and warnings
* \emtex\dviscr.exe Screen previewer
* \emtex\dviscrs.exe Screen previewer (DOS and small memory)
* \emtex\dvihplj.exe Driver for HP LaserJet+
+ \emtex\dvidot.exe Generic dot-matrix printer driver
* \emtex\dvimsp.exe Create graphic files from dvi files
* \emtex\dvivik.exe Screen Previewer for Viking I
+ \emtex\makedot.exe Convert dvidot parameter files
\emtex\fontlib.exe Create and maintain font library files
* \emtex\pcltomsp.exe Convert pcl files to graphic files
+ \emtex\fx80.dot Parameter file for EPSON FX-80
+ \emtex\fx100.dot Parameter file for EPSON FX-100
+ \emtex\aiw.dot Parameter file for Apple Imagewriter
+ \emtex\itoh.dot Parameter file for C.ITOH 8510A
+ \emtex\p6l.dot Parameter file for NEC P6 (180 DPI)
+ \emtex\p6m.dot Parameter file for NEC P6 (360x180 DPI)
+ \emtex\p6h.dot Parameter file for NEC P6 (360 DPI)
+ \emtex\p7l.dot Parameter file for NEC P7 (180 DPI)
+ \emtex\p7m.dot Parameter file for NEC P7 (360x180 DPI)
+ \emtex\p7h.dot Parameter file for NEC P7 (360 DPI)
+ \emtex\lql.dot Parameter file for EPSON LQ (180 DPI)
+ \emtex\lqm.dot Parameter file for EPSON LQ (360x180 DPI)
+ \emtex\lqh.dot Parameter file for EPSON LQ (360 DPI)
+ \emtex\lqwl.dot Parameter file for EPSON LQ (180 DPI)
+ \emtex\lqwm.dot Parameter file for EPSON LQ (360x180 DPI)
+ \emtex\lqwh.dot Parameter file for EPSON LQ (360 DPI)
+ \emtex\dmp130.dot Parameter file for Tandy DMP-130
+ \emtex\ibm4201.dot Parameter file for IBM 4201 (240x216 DPI)
+ \emtex\ibm4202.dot Parameter file for IBM 4202 (240x216 DPI)
+ \emtex\ibm4207l.dot Parameter file for IBM 4207 (180 DPI)
+ \emtex\ibm4207m.dot Parameter file for IBM 4207 (360x180 DPI)
+ \emtex\ibm4208l.dot Parameter file for IBM 4208 (180 DPI)
+ \emtex\ibm4208m.dot Parameter file for IBM 4208 (360x180 DPI)
* \emtex\v.cmd Call for dviscr
* \emtex\v.bat Call for dviscr
* \emtex\vs.bat Call for dviscrs
* \emtex\prtfx.cmd Call for dvidot fx80
* \emtex\prtfx.bat Call for dvidot fx80
* \emtex\prthplj.cmd Call for dvihplj
* \emtex\prthplj.bat Call for dvihplj
* \emtex\prtp6l.cmd Call for dvidot p6l
* \emtex\prtp6l.bat Call for dvidot p6l
* \emtex\prtp6m.cmd Call for dvidot p6m
* \emtex\prtp6m.bat Call for dvidot p6m
* \emtex\prtp6h.cmd Call for dvidot p6h
* \emtex\prtp6h.bat Call for dvidot p6h
+ \emtex\prtlql.cmd Call for dvidot lql
+ \emtex\prtlql.bat Call for dvidot lql
+ \emtex\prtlqm.cmd Call for dvidot lqm
+ \emtex\prtlqm.bat Call for dvidot lqm
+ \emtex\prtlqh.cmd Call for dvidot lqh
+ \emtex\prtlqh.bat Call for dvidot lqh
* \emtex\prtitoh.cmd Call for dvidot itoh
* \emtex\prtitoh.bat Call for dvidot itoh
* \emtex\prtaiw.cmd Call for dvidot aiw
* \emtex\prtaiw.bat Call for dvidot aiw
* \emtex\mspfx.bat Call for dvimsp.exe (with fx.cnf)
* \emtex\mspfx.cmd Call for dvimsp.exe (with fx.cnf)
* \emtex\msplj.bat Call for dvimsp.exe (with lj.cnf)
* \emtex\msplj.cmd Call for dvimsp.exe (with lj.cnf)
\emtex\mspp6l.bat Call for dvimsp.exe (with p6l.cnf)
\emtex\mspp6l.cmd Call for dvimsp.exe (with p6l.cnf)
\emtex\mspp6m.bat Call for dvimsp.exe (with p6m.cnf)
\emtex\mspp6m.cmd Call for dvimsp.exe (with p6m.cnf)
\emtex\mspp6h.bat Call for dvimsp.exe (with p6h.cnf)
\emtex\mspp6h.cmd Call for dvimsp.exe (with p6h.cnf)
* \emtex\mspito.bat Call for dvimsp.exe (with ito.cnf)
* \emtex\mspito.cmd Call for dvimsp.exe (with ito.cnf)
* \emtex\lj.cnf Configuration file: 300 DPI, LJ
* \emtex\p6l.cnf Configuration file: 180 DPI, P6L
+ \emtex\p6l_p6m.cnf Configuration file: 180 DPI, P6M
+ \emtex\p6l_p6h.cnf Configuration file: 180 DPI, P6H
* \emtex\p6m.cnf Configuration file: 360x180 DPI, P6M
* \emtex\p6m_p6h.cnf Configuration file: 360x180 DPI, P6H
* \emtex\p6h.cnf Configuration file: 360 DPI, P6H
* \emtex\ito.cnf Configuration file: 160x144 DPI, ITO
* \emtex\fx.cnf Configuration file: 240x216 DPI, FX
+ \emtex\oldfonts.sub Font substitution file (use old font libs)
+ \emtex\newfonts.sub Font substitution file (use new font libs)
+ \emtex\fontlist Font list (used with fontlib)
+ \emtex\newfonts.bat Convert font library files to new format
+ \emtex\newfonts.cmd Convert font library files to new format
+ \emtex\oldfonts.bat Convert font library files to old format
+ \emtex\oldfonts.cmd Convert font library files to old format
+ \emtex\fli_lj.cmd Create font library files LJ_*
+ \emtex\fli_fx.cmd Create font library files FX_*
+ \emtex\fli_p6l.cmd Create font library files P6L_*
+ \emtex\fli_p6m.cmd Create font library files P6M_*
+ \emtex\fli_p6h.cmd Create font library files P6H_*
+ \emtex\fli_ito.cmd Create font library files ITO_*
+ \emtex\ilf_lj.cmd Unpack font library files LJ_*
+ \emtex\ilf_fx.cmd Unpack font library files FX_*
+ \emtex\ilf_p6l.cmd Unpack font library files P6L_*
+ \emtex\ilf_p6m.cmd Unpack font library files P6M_*
+ \emtex\ilf_p6h.cmd Unpack font library files P6H_*
+ \emtex\ilf_ito.cmd Unpack font library files ITO_*
+ \emtex\remove\dvidrv.rem Package contents listing for `remove'
DVIDRVMA package
----------------
+ \emtex\doc\english\dvidrvma.doc Printing the dvidrv manual (English)
+ \emtex\doc\english\dvidrv.dvi The dvidrv manual (English)
* \emtex\doc\german\dvidrvma.doc Printing the dvidrv manual (German)
* \emtex\doc\german\dvidrv.dvi The dvidrv manual (German)
\emtex\doc\gr180\dvitrans.0 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.1 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.2 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.3 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.4 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.5 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.6 Graphic file (180 DPI)
\emtex\doc\gr180\dvitrans.7 Graphic file (180 DPI)
\emtex\doc\gr300\dvitrans.0 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.1 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.2 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.3 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.4 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.5 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.6 Graphic file (300 DPI)
\emtex\doc\gr300\dvitrans.7 Graphic file (300 DPI)
\emtex\doc\gr360\dvitrans.0 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.1 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.2 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.3 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.4 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.5 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.6 Graphic file (360 DPI)
\emtex\doc\gr360\dvitrans.7 Graphic file (360 DPI)
+ \emtex\remove\dvidrvma.rem Package contents listing for `remove'
EMSY package
------------
\emtex\emsyproo.bat Create proof sheet for emsy10
\emtex\emsysmok.bat Create smoke proof for emsy10
\emtex\texinput\emsymb.sty Document style option: emsymb
\emtex\texinput\emsymb.tex Macros for plain TeX
\emtex\mfinput\emsy.mf em symbol font
\emtex\mfinput\emsy10.mf em symbol font 10pt
\emtex\mfinput\emsy5.mf em symbol font 5pt
\emtex\mfinput\emsy6.mf em symbol font 6pt
\emtex\mfinput\emsy7.mf em symbol font 7pt
\emtex\mfinput\emsy8.mf em symbol font 8pt
\emtex\mfinput\emsy9.mf em symbol font 9pt
\emtex\tfm\emsy10.tfm em symbol font 10pt
\emtex\tfm\emsy5.tfm em symbol font 5pt
\emtex\tfm\emsy6.tfm em symbol font 6pt
\emtex\tfm\emsy7.tfm em symbol font 7pt
\emtex\tfm\emsy8.tfm em symbol font 8pt
\emtex\tfm\emsy9.tfm em symbol font 9pt
\emtex\mfjob\emsy.mfj MFjob file for emsy fonts
+ \emtex\remove\emsy.rem Package contents listing for `remove'
GBLATEX package
---------------
* \emtex\gblatex.bat Calling LaTeX (German hyphenation)
* \emtex\gblatex.cmd Calling LaTeX (German hyphenation)
* \emtex\btexfmts\lplaing.fmt fmt file for LaTeX (German hyphenation)
* \emtex\btexfmts\lplaing.log log file of lplaing.fmt
+ \emtex\btexfmts\gslifmt.cmd Create fmt file for SliTeX
+ \emtex\btexfmts\gslifmt.bat Create fmt file for SliTeX
+ \emtex\remove\gblatex.rem Package contents listing for `remove'
GBTEX package
-------------
+ \emtex\btexfmts\gfmt.bat Create fmt files
+ \emtex\btexfmts\gfmt.cmd Create fmt files
* \emtex\btexfmts\plaing.fmt plain TeX (German hyphenation)
* \emtex\btexfmts\plaing.log log file of plaing.fmt
+ \emtex\remove\gbtex.rem Package contents listing for `remove'
GLATEX package
--------------
* \emtex\doc\lkurz.dvi LaTeX brief instructions of H. Partl (German)
* \emtex\glatex.bat Call LaTeX (German hyphenation)
* \emtex\glatex.cmd Call LaTeX (German hyphenation)
* \emtex\texfmts\lplaing.fmt fmt file for LaTeX (German hyphenation)
* \emtex\texfmts\lplaing.log log file of lplaing.fmt
+ \emtex\texfmts\gslifmt.cmd Create fmt file for SliTeX
+ \emtex\texfmts\gslifmt.bat Create fmt file for SliTeX
+ \emtex\remove\glatex.rem Package contents listing for `remove'
GTEX package
------------
* \emtex\doc\germdoc.dvi Instructions for german.sty
* \emtex\gtex.bat Call plain TeX (German hyphenation)
* \emtex\gtex.cmd Call plain TeX (German hyphenation)
* \emtex\texfmts\plaing.fmt plain TeX (German hyphenation)
* \emtex\texfmts\plaing.log log file of plaing.fmt
+ \emtex\texfmts\gfmt.bat Create fmt files
+ \emtex\texfmts\gfmt.cmd Create fmt files
+ \emtex\texinput\ghyphen.min German hyphenations patterns
+ \emtex\texinput\ghyphen.max German hyphenations patterns (for bigTeX)
* \emtex\texinput\german.sty Uniform German TeX commands
* \emtex\texinput\germdoc.tex Instructions for german.sty
+ \emtex\remove\gtex.rem Package contents listing for `remove'
LATEX package
-------------
* \emtex\doc\latex.bug Bugs in and changes to LaTeX
* \emtex\doc\latex.ins Installation instructions (not needed)
\emtex\doc\local.gid Ultra brief instructions
* \emtex\doc\local.dvi Local guide
\emtex\latex.bat Call LaTeX (American hyphenation)
\emtex\latex.cmd Call LaTeX (American hyphenation)
* \emtex\texfmts\lplain.fmt fmt file for LaTeX (Amer. hyphenation)
* \emtex\texfmts\lplain.log log file of lplain.fmt
+ \emtex\texfmts\slifmt.cmd Create fmt file for SliTeX
+ \emtex\texfmts\slifmt.bat Create fmt file for SliTeX
+ \emtex\texinput\a4.sty Document style option: A4 page format
* \emtex\texinput\addendum.tex Include file for local.tex
* \emtex\texinput\art10.sty Document style option: article 10pt
* \emtex\texinput\art11.sty Document style option: article 11pt
* \emtex\texinput\art12.sty Document style option: article 12pt
* \emtex\texinput\article.sty Document style: article
* \emtex\texinput\bezier.sty Document style: bezier
* \emtex\texinput\bk10.sty Document style option: book 10pt
* \emtex\texinput\bk11.sty Document style option: book 11pt
* \emtex\texinput\bk12.sty Document style option: book 12pt
* \emtex\texinput\book.sty Document style: book
* \emtex\texinput\fleqn.sty Document style option: fleqn
* \emtex\texinput\idx.tex idx file to print
* \emtex\texinput\ifthen.sty Document style option: ifthen
* \emtex\texinput\lablst.tex Print contents and cross references
* \emtex\texinput\latex.tex LaTeX source file
* \emtex\texinput\leqno.sty Document style option: leqno
* \emtex\texinput\letter.sty Document style: letter
\emtex\texinput\letter.tex Information on letter.sty
* \emtex\texinput\lfonts.tex LaTeX source file (font definitions)
+ \emtex\texinput\lhyphen.ger Load German hyphenation patterns
+ \emtex\texinput\lhyphen.tex Load English hyphenation patterns
* \emtex\texinput\local.tex Local guide
* \emtex\texinput\lplain.tex LaTeX source file
* \emtex\texinput\makeidx.sty Document style option: makeidx
* \emtex\texinput\openbib.sty Document style option: openbib
* \emtex\texinput\proc.sty Document style: proc
* \emtex\texinput\rep10.sty Document style option: report 10pt
* \emtex\texinput\rep11.sty Document style option: report 11pt
* \emtex\texinput\rep12.sty Document style option: report 12pt
* \emtex\texinput\report.sty Document style: report
* \emtex\texinput\sample.tex Example text
* \emtex\texinput\sfonts.tex SliTeX source file (font definitions)
* \emtex\texinput\showidx.sty Document style option: showidx
* \emtex\texinput\slides.sty Document style: slide
* \emtex\texinput\slitex.tex SliTeX source file
* \emtex\texinput\small.tex Example text
* \emtex\texinput\splain.tex SliTeX source file
\emtex\texinput\suthesis.sty Doc. style option: Stanford Univ. PhD thesis
+ \emtex\texinput\testa4.tex Test page (for margins)
* \emtex\texinput\testpage.tex Test page (for margins)
* \emtex\texinput\titlepag.sty Document style option: titlepage
\emtex\texinput\tryfonts.tex Try text fonts
* \emtex\texinput\twocolum.sty Document style option: twocolumn
+ \emtex\tfm\lcircle1.tfm LaTeX circle font (thin)
+ \emtex\tfm\lcirclew.tfm LaTeX circle font (wide)
\emtex\tfm\lasy10.tfm LaTeX symbols 10pt
\emtex\tfm\lasy5.tfm LaTeX symbols 5pt
\emtex\tfm\lasy6.tfm LaTeX symbols 6pt
\emtex\tfm\lasy7.tfm LaTeX symbols 7pt
\emtex\tfm\lasy8.tfm LaTeX symbols 8pt
\emtex\tfm\lasy9.tfm LaTeX symbols 9pt
\emtex\tfm\lasyb10.tfm Bold LaTeX symbols 9pt
\emtex\tfm\lcmss8.tfm SliTeX sans serif 8pt
\emtex\tfm\lcmssb8.tfm SliTeX sans serif Bold 8pt
\emtex\tfm\lcmssi8.tfm SliTeX sans slanted 8pt
\emtex\tfm\line10.tfm LaTeX line font (small)
\emtex\tfm\linew10.tfm LaTeX line font (wide)
+ \emtex\tfm\icmcsc10.tfm Invisible cmcsc10
\emtex\tfm\icmex10.tfm Invisible cmex10
\emtex\tfm\icmmi8.tfm Invisible cmmi8
\emtex\tfm\icmsy8.tfm Invisible cmsy8
\emtex\tfm\icmtt8.tfm Invisible cmtt8
\emtex\tfm\ilasy8.tfm Invisible lasy8
\emtex\tfm\ilcmss8.tfm Invisible lcmss8
\emtex\tfm\ilcmssb8.tfm Invisible lcmssb8
\emtex\tfm\ilcmssi8.tfm Invisible lcmssi8
+ \emtex\remove\latex.rem Package contents listing for `remove'
LATEXDOC package
----------------
* \emtex\texinput\art10.doc Document style option: article 10pt
* \emtex\texinput\art11.doc Document style option: article 11pt
* \emtex\texinput\art12.doc Document style option: article 12pt
* \emtex\texinput\article.doc Document style: article
* \emtex\texinput\bezier.doc Document style: bezier
* \emtex\texinput\bk10.doc Document style option: book 10pt
* \emtex\texinput\bk11.doc Document style option: book 11pt
* \emtex\texinput\bk12.doc Document style option: book 12pt
* \emtex\texinput\book.doc Document style: book
* \emtex\texinput\fleqn.doc Document style option: fleqn
* \emtex\texinput\ifthen.doc Document style option: ifthen
* \emtex\texinput\leqno.doc Document style option: leqno
* \emtex\texinput\letter.doc Document style: letter
* \emtex\texinput\makeidx.doc Document style option: makeidx
* \emtex\texinput\openbib.doc Document style option: openbib
* \emtex\texinput\proc.doc Document style: proc
* \emtex\texinput\rep10.doc Document style option: report 10pt
* \emtex\texinput\rep11.doc Document style option: report 11pt
* \emtex\texinput\rep12.doc Document style option: report 12pt
* \emtex\texinput\report.doc Document style: report
* \emtex\texinput\showidx.doc Document style option: showidx
* \emtex\texinput\slides.doc Document style: slide
\emtex\texinput\suthesis.doc Doc. style option: Stanford Univ. PhD thesis
* \emtex\texinput\titlepag.doc Document style option: titlepage
* \emtex\texinput\twocolum.doc Document style option: twocolumn
+ \emtex\remove\latexdoc.rem Package contents listing for `remove'
LKURZ package
-------------
* \emtex\texinput\lkurz.tex LaTeX brief instructions (German)
* \emtex\texinput\lksym.tex LaTeX brief instructions (include file)
* \emtex\texinput\lk1.tex LaTeX brief instructions (include file)
* \emtex\texinput\lk2.tex LaTeX brief instructions (include file)
* \emtex\texinput\lk3.tex LaTeX brief instructions (include file)
* \emtex\texinput\lk4.tex LaTeX brief instructions (include file)
+ \emtex\remove\lkurz.rem Package contents listing for `remove'
MAKEINDX package
----------------
* \emtex\makeindx.exe MakeIndex program
* \emtex\doc\makeindx.cpy Distribution notice for MakeIndex
+ \emtex\doc\makeindx.doc Detailed instructions for MakeIndex
* \emtex\texinput\makeindx.tex Instructions for MakeIndex
+ \emtex\remove\makeindx.rem Package contents listing for `remove'
MF package
----------
+ \emtex\doc\english\mfware.doc Instructions for METAFONT etc. (English)
* \emtex\doc\german\mfware.doc Instructions for METAFONT etc. (German)
* \emtex\doc\cm85.bug Mistakes list for CM fonts
* \emtex\mf.exe METAFONT (DOS, OS/2 real mode)
* \emtex\mf286.exe METAFONT (DOS, OS/2 real mode, 80286 CPU)
* \emtex\mfp.exe METAFONT (OS/2 protected mode)
+ \emtex\mfpm.ovl Graphic output for mfp.exe (overlay)
\emtex\mfbases\bas.bat Create bas files
\emtex\mfbases\bas.cmd Create bas files
* \emtex\mfbases\cm.bas Computer Modern METAFONT base
* \emtex\mfbases\cm.log Log file for cm.bas
\emtex\mfbases\mf.poo Pool file (string list) for INIMF
* \emtex\mfbases\plain.bas Plain METAFONT base
* \emtex\mfbases\plain.log Log file for plain.bas
\emtex\mfinput\3test.mf Font tests
\emtex\mfinput\5test.mf Font tests
\emtex\mfinput\6test.mf Font tests
\emtex\mfinput\accent.mf Accents for roman/italic fonts
\emtex\mfinput\bigacc.mf Big accents for cmex#
\emtex\mfinput\bigdel.mf Big delimiter for cmex#
\emtex\mfinput\bigop.mf Big operators for cmex#
\emtex\mfinput\btest.mf Font tests
\emtex\mfinput\calu.mf Calligraphic capitals
+ \emtex\mfinput\lcircle.mf LaTeX circles and arcs
+ \emtex\mfinput\lcircle1.mf LaTeX circles and arcs (small)
+ \emtex\mfinput\lcirclew.mf LaTeX circles and arcs (wide)
\emtex\mfinput\cm.ini Create CM base
\emtex\mfinput\cmb10.mf CM Bold Roman 10pt
\emtex\mfinput\cmbase.mf CM Base
\emtex\mfinput\cmbsy10.mf CM Bold Math Symbols 10pt
\emtex\mfinput\cmbx10.mf CM Bold Extended Roman 10pt
\emtex\mfinput\cmbx12.mf CM Bold Extended Roman 12pt
\emtex\mfinput\cmbx5.mf CM Bold Extended Roman 5pt
\emtex\mfinput\cmbx6.mf CM Bold Extended Roman 6pt
\emtex\mfinput\cmbx7.mf CM Bold Extended Roman 7pt
\emtex\mfinput\cmbx8.mf CM Bold Extended Roman 8pt
\emtex\mfinput\cmbx9.mf CM Bold Extended Roman 9pt
\emtex\mfinput\cmbxsl10.mf CM Bold Extended Slanted Roman 10pt
\emtex\mfinput\cmbxti10.mf CM Bold Extended Text Italic 10pt
\emtex\mfinput\cmcsc10.mf CM Roman Caps and Small Caps 10pt
\emtex\mfinput\cmdunh10.mf CM Dunhill Roman 10pt
\emtex\mfinput\cmex10.mf CM Math Extension 10pt
\emtex\mfinput\cmex9.mf CM Math Extension 9pt
\emtex\mfinput\cmff10.mf CM Funny Roman 10pt
\emtex\mfinput\cmfi10.mf CM Funny Italic 10pt
\emtex\mfinput\cmfib8.mf CM Roman Fibonacci Font 10pt
\emtex\mfinput\cminch.mf CM Inch-High Sans Serif Bold Ext. Caps & Dig
\emtex\mfinput\cmitt10.mf CM Italic Typewriter Text (10pt)
\emtex\mfinput\cmmi10.mf CM Math Italic 10pt
\emtex\mfinput\cmmi12.mf CM Math Italic 12pt
\emtex\mfinput\cmmi5.mf CM Math Italic 5pt
\emtex\mfinput\cmmi6.mf CM Math Italic 6pt
\emtex\mfinput\cmmi7.mf CM Math Italic 7pt
\emtex\mfinput\cmmi8.mf CM Math Italic 8pt
\emtex\mfinput\cmmi9.mf CM Math Italic 9pt
\emtex\mfinput\cmmib10.mf CM Math Italic Bold 10pt
\emtex\mfinput\cmr10.mf CM Roman 10pt
\emtex\mfinput\cmr12.mf CM Roman 12pt
\emtex\mfinput\cmr17.mf CM Roman 17pt
\emtex\mfinput\cmr5.mf CM Roman 5pt
\emtex\mfinput\cmr6.mf CM Roman 6pt
\emtex\mfinput\cmr7.mf CM Roman 7pt
\emtex\mfinput\cmr8.mf CM Roman 8pt
\emtex\mfinput\cmr9.mf CM Roman 9pt
\emtex\mfinput\cmsl10.mf CM Slanted Roman 10pt
\emtex\mfinput\cmsl12.mf CM Slanted Roman 12pt
\emtex\mfinput\cmsl8.mf CM Slanted Roman 8pt
\emtex\mfinput\cmsl9.mf CM Slanted Roman 9pt
\emtex\mfinput\cmsltt10.mf CM Slanted Typewriter Text (10pt)
\emtex\mfinput\cmss10.mf CM Sans Serif 10pt
\emtex\mfinput\cmss12.mf CM Sans Serif 12pt
\emtex\mfinput\cmss17.mf CM Sans Serif 17pt
\emtex\mfinput\cmss8.mf CM Sans Serif 8pt
\emtex\mfinput\cmss9.mf CM Sans Serif 9pt
\emtex\mfinput\cmssbx10.mf CM Sans Serif Bold Extended 10pt
\emtex\mfinput\cmssdc10.mf CM Sans Serif Demibold Condensed 10pt
\emtex\mfinput\cmssi10.mf CM Slanted Sans Serif 10pt
\emtex\mfinput\cmssi12.mf CM Slanted Sans Serif 12pt
\emtex\mfinput\cmssi17.mf CM Slanted Sans Serif 17pt
\emtex\mfinput\cmssi8.mf CM Slanted Sans Serif 8pt
\emtex\mfinput\cmssi9.mf CM Slanted Sans Serif 9pt
\emtex\mfinput\cmssq8.mf CM Sans Serif Quotation Style 8pt
\emtex\mfinput\cmssqi8.mf CM Sans Serif Quotation Style Slanted 8pt
\emtex\mfinput\cmsy10.mf CM Math Symbols 10pt
\emtex\mfinput\cmsy5.mf CM Math Symbols 5pt
\emtex\mfinput\cmsy6.mf CM Math Symbols 6pt
\emtex\mfinput\cmsy7.mf CM Math Symbols 7pt
\emtex\mfinput\cmsy8.mf CM Math Symbols 8pt
\emtex\mfinput\cmsy9.mf CM Math Symbols 9pt
\emtex\mfinput\cmtcsc10.mf CM Typewriter Caps and Small Caps (10pt)
\emtex\mfinput\cmtex10.mf CM TeX Extended ASCII characters (10pt)
\emtex\mfinput\cmtex8.mf CM TeX Extended ASCII characters (8pt)
\emtex\mfinput\cmtex9.mf CM TeX Extended ASCII characters (9pt)
\emtex\mfinput\cmti10.mf CM Text Italic 10pt
\emtex\mfinput\cmti12.mf CM Text Italic 12pt
\emtex\mfinput\cmti7.mf CM Text Italic 7pt
\emtex\mfinput\cmti8.mf CM Text Italic 8pt
\emtex\mfinput\cmti9.mf CM Text Italic 9pt
\emtex\mfinput\cmtt10.mf CM Typewriter Text (10pt)
\emtex\mfinput\cmtt12.mf CM Typewriter Text (12pt)
\emtex\mfinput\cmtt8.mf CM Typewriter Text (8pt)
\emtex\mfinput\cmtt9.mf CM Typewriter Text (9pt)
\emtex\mfinput\cmu10.mf CM Unslanted Italic 10pt
\emtex\mfinput\cmvtt10.mf CM Variable-Width Typewriter Text (10pt)
\emtex\mfinput\comlig.mf Ligatures for roman/italic fonts
\emtex\mfinput\csc.mf Caps and small Ccaps
\emtex\mfinput\cscspu.mf `I', `J', `ss' for caps and small caps
\emtex\mfinput\ctest.mf Font tests
\emtex\mfinput\ega.mf Changes for EGA
\emtex\mfinput\expr.mf Examples from the METAFONTbook
\emtex\mfinput\ftest.mf Font tests
\emtex\mfinput\grayf.mf Create gray font
\emtex\mfinput\greekl.mf Small Greek letters
\emtex\mfinput\greeku.mf Large Greek letters
\emtex\mfinput\halftone.mf Create halftone font
\emtex\mfinput\icmex10.mf CM Math Extension 10pt invisible
\emtex\mfinput\icmmi8.mf CM Math Italic 10pt invisible
\emtex\mfinput\icmsy8.mf CM Math Symbols 10pt invisible
\emtex\mfinput\icmtt8.mf CM Typewriter Text 10pt invisible
\emtex\mfinput\ilasy8.mf LaTeX Symbols 8pt invisible
\emtex\mfinput\ilcmss8.mf SliTeX Sans Serif 8pt invisble
\emtex\mfinput\ilcmssb8.mf SliTeX Sans Serif Bold 8pt invisble
\emtex\mfinput\ilcmssi8.mf SliTeX Sans Serif Slanted 8pt invisble
\emtex\mfinput\io.mf Examples from the METAFONTbook
\emtex\mfinput\itald.mf CM Italic (digits)
\emtex\mfinput\italig.mf CM Italic (f-Ligatures)
\emtex\mfinput\itall.mf CM Italic (small letters)
\emtex\mfinput\italms.mf CM Math Italic (various symbols)
\emtex\mfinput\italp.mf CM Italic (`$', `&', `?')
\emtex\mfinput\italsp.mf CM Italic (Special symbols)
\emtex\mfinput\itest.mf Font tests
\emtex\mfinput\lasy.mf LaTeX Symbols
\emtex\mfinput\lasy10.mf LaTeX Symbols 10pt
\emtex\mfinput\lasy5.mf LaTeX Symbols 5pt
\emtex\mfinput\lasy6.mf LaTeX Symbols 6pt
\emtex\mfinput\lasy7.mf LaTeX Symbols 7pt
\emtex\mfinput\lasy8.mf LaTeX Symbols 8pt
\emtex\mfinput\lasy9.mf LaTeX Symbols 9pt
\emtex\mfinput\lasyb10.mf Bold LaTeX Symbols 9pt
\emtex\mfinput\lcmss8.mf SliTeX Sans Serif 8pt
\emtex\mfinput\lcmssb8.mf SliTeX Sans Serif Bold 8pt
\emtex\mfinput\lcmssi8.mf SliTeX Sans Slanted 8pt
\emtex\mfinput\line.mf LaTeX line segments
\emtex\mfinput\line10.mf LaTeX line segments (small)
\emtex\mfinput\linew10.mf LaTeX line segments (wide)
* \emtex\mfinput\local.mf Local changes for plain/cm
* \emtex\mfinput\logo.mf METAFONT logo
\emtex\mfinput\logo10.mf METAFONT logo 10pt
\emtex\mfinput\logo8.mf METAFONT logo 8pt
\emtex\mfinput\logo9.mf METAFONT logo 9pt
\emtex\mfinput\logobf10.mf Boldface METAFONT logo 10pt
\emtex\mfinput\logosl10.mf Slanted METAFONT logo 10pt
\emtex\mfinput\mathex.mf CM Math Extension
\emtex\mfinput\mathit.mf CM Math Italic
\emtex\mfinput\mathsy.mf CM Symbols
\emtex\mfinput\mtest.mf Font tests
\emtex\mfinput\olddig.mf Digits in old style
\emtex\mfinput\plain.ini Create plain base
* \emtex\mfinput\plain.mf plain base
\emtex\mfinput\punct.mf Punctuation Marks for roman/italic fonts
\emtex\mfinput\qtest.mf Font tests
\emtex\mfinput\roman.mf CM Roman
\emtex\mfinput\romand.mf CM Roman (digits)
* \emtex\mfinput\romanl.mf CM Roman (small letters)
\emtex\mfinput\romanp.mf CM Roman (`$', `&', `?')
\emtex\mfinput\romanu.mf CM Roman (large letters)
\emtex\mfinput\romlig.mf CM Roman (ligatures)
\emtex\mfinput\romms.mf CM Math Italic (vertical symbols)
\emtex\mfinput\romspl.mf CM Roman (special symbols)
\emtex\mfinput\romspu.mf CM Roman (special symbols)
\emtex\mfinput\romsub.mf CM Roman (special symbols)
\emtex\mfinput\rtest.mf Font tests
\emtex\mfinput\slant.mf Create slant font
\emtex\mfinput\sroman.mf SliTeX Roman
\emtex\mfinput\sromanu.mf SliTeX Roman (large letters)
\emtex\mfinput\stest.mf Font tests
\emtex\mfinput\sym.mf Symbols
* \emtex\mfinput\symbol.mf Symbols for Mathematical fonts
\emtex\mfinput\texset.mf CM TeX extended ASCII characters
\emtex\mfinput\textit.mf CM Text italic
\emtex\mfinput\title.mf Large letters and digits (for cminch)
\emtex\mfinput\tset.mf Special symbols for cmtex#-fonts
\emtex\mfinput\tsetsl.mf Special symbols for cmtex#-fonts
\emtex\mfinput\ttest.mf Font tests
\emtex\mfinput\waits.mf local.mf as used at WAITS
\emtex\mfinput\xtest.mf Font tests
\emtex\mfinput\ztest.mf Font tests
* \emtex\texinput\testfont.tex Test text for a font
+ \emtex\remove\mf.rem Package contents listing for `remove'
MFWARE package
--------------
+ \emtex\doc\english\mfjob.doc Instructions for MFjob (English)
* \emtex\doc\german\mfjob.doc Instructions for MFjob (German)
* \emtex\chtopx.exe Conversion program .chr -> .pxl
* \emtex\gftodvi.exe Create METAFONT proof sheets
* \emtex\gftopk.exe Conversion program .#gf -> .pk
* \emtex\gftopxl.exe Conversion program .#gf -> .pxl
* \emtex\gftype.exe List .#gf-files
* \emtex\mft.exe Format METAFONT source text
* \emtex\pktogf.exe Conversion program .pk -> .gf
* \emtex\pktopx.exe Conversion program .pk -> .pxl
* \emtex\pktype.exe List .pk files
* \emtex\pxtoch.exe Conversion program .pxl -> .chr
* \emtex\pxtopk.exe Conversion program .pxl -> .pk
* \emtex\mfjob.exe MFjob program
* \emtex\mfjob1.ovl MFjob program (overlay)
* \emtex\mfjob2.ovl MFjob program (overlay)
* \emtex\mfjob\all.mfj MFjob file: standard fonts
* \emtex\mfjob\latex.mfj MFjob file: cmcsc10 for LaTeX
* \emtex\mfjob\modes.mfj MFjob file: Include file for *.mfj
* \emtex\mfjob\gftodvi.mfj MFjob file: black, gray, and slant fonts
+ \emtex\mfjob\slitex.mfj MFjob file: SliTeX fonts
+ \emtex\mfjob\texbook.mfj MFjob file: Fonts for The TeXbook
+ \emtex\mfjob\amsfonts.mfj MFjob file: AMSFonts 2.0 (complete).
+ \emtex\mfjob\cyrillic.mfj MFjob file: AMSFonts 2.0 (Cyrillic).
+ \emtex\mfjob\euler.mfj MFjob file: AMSFonts 2.0 (Euler fonts).
+ \emtex\mfjob\extracm.mfj MFjob file: AMSFonts 2.0 (extracm).
+ \emtex\mfjob\symbols.mfj MFjob file: AMSFonts 2.0 (symbol fonts).
\emtex\mfinput\cmbase.mft MFT style file for cm METAFONT base
\emtex\mfinput\e.mft MFT style file `Computer Modern Typefaces'
\emtex\mfinput\plain.mft MFT style file for plain METAFONT base
\emtex\mfinput\graylj.mf Gray font for HP LaserJet+
\emtex\mfinput\grayfx.mf Gray font for EPSON FX-80
\emtex\mfinput\blacklj.mf Black font for HP LaserJet+
\emtex\mfinput\blackfx.mf Black font for EPSON FX-80
\emtex\mfinput\slantlj.mf Slant font for HP LaserJet+
\emtex\mfinput\slantfx.mf Slant font for EPSON FX-80
* \emtex\texinput\mftmac.tex Macros for TeX and MFT
\emtex\tfm\graylj.tfm Gray font for HP LaserJet+
\emtex\tfm\grayfx.tfm Gray font for EPSON FX-80
\emtex\tfm\blacklj.tfm Black font for HP LaserJet+
\emtex\tfm\blackfx.tfm Black font for EPSON FX-80
\emtex\tfm\slantlj.tfm Slant font for HP LaserJet+
\emtex\tfm\slantfx.tfm Slant font for EPSON FX-80
+ \emtex\remove\mfware.rem Package contents listing for `remove'
MISC_MF package
---------------
* \emtex\mfinput\cmman.mf Variants of CM for the TeX/METAFONT manuals
\emtex\mfinput\life.mf Examples from the METAFONTbook
* \emtex\mfinput\manfnt.mf Special font for the TeX/METAFONT manuals
\emtex\mfinput\mfman.mf Most of the figures for The METAFONTbook
+ \emtex\remove\misc_mf.rem Package contents listing for `remove'
PICTEX package
--------------
* \emtex\texinput\latexpic.tex LaTeX objects for PiCTeX under plain TeX
\emtex\texinput\pictex.tex Main PiCTeX file
\emtex\texinput\postpict.tex PiCTeX under LaTeX
\emtex\texinput\prepicte.tex PiCTeX under LaTeX
+ \emtex\remove\pictex.rem Package contents listing for `remove'
PKEDIT package
--------------
+ \emtex\doc\english\pkedit.doc Instructions for pkedit (English)
* \emtex\doc\german\pkedit.doc Instructions for pkedit (German)
* \emtex\pkedit.exe pkedit program
+ \emtex\remove\pkedit.rem Package contents listing for `remove'
TEX package
-----------
+ \emtex\doc\english\texware.doc Brief instructions for TeX etc. (English)
* \emtex\doc\german\texware.doc Brief instructions for TeX etc. (German)
+ \emtex\doc\english\emtex.dvi Instructions for emTeX (English)
* \emtex\doc\german\emtex.dvi Instructions for emTeX (German)
* \emtex\tex.exe TeX (DOS, OS/2 real mode)
* \emtex\tex286.exe TeX (DOS, OS/2 real mode, 80286 CPU)
* \emtex\texp.exe TeX (OS/2 protected mode)
* \emtex\set-tex.bat Set environment variables
* \emtex\set-tex.cmd Set environment variables
* \emtex\texfmts\fmt.bat Create fmt files
* \emtex\texfmts\fmt.cmd Create fmt files
* \emtex\texfmts\plain.fmt plain TeX (American hyphenation)
* \emtex\texfmts\plain.log log file of plain.fmt
* \emtex\texfmts\tex.poo Pool file (string list) for INITeX
+ \emtex\texinput\850_tex.tcp Convert code page 850 to TeX commands
* \emtex\texinput\hyphen.tex American hyphenation patterns
\emtex\texinput\fntbl.tex Typeset a font table
* \emtex\texinput\plain.tex plain TeX
+ \emtex\texinput\3.tex Use old formats with TeX 3.0
\emtex\tfm\cmb10.tfm CM Bold Roman 10pt
\emtex\tfm\cmbsy10.tfm CM Bold Math Symbols 10pt
\emtex\tfm\cmbx10.tfm CM Bold Extended Roman 10pt
\emtex\tfm\cmbx12.tfm CM Bold Extended Roman 12pt
\emtex\tfm\cmbx5.tfm CM Bold Extended Roman 5pt
\emtex\tfm\cmbx6.tfm CM Bold Extended Roman 6pt
\emtex\tfm\cmbx7.tfm CM Bold Extended Roman 7pt
\emtex\tfm\cmbx8.tfm CM Bold Extended Roman 8pt
\emtex\tfm\cmbx9.tfm CM Bold Extended Roman 9pt
\emtex\tfm\cmbxsl10.tfm CM Bold Extended Slanted Roman 10pt
\emtex\tfm\cmbxti10.tfm CM Bold Extended Text Italic 10pt
\emtex\tfm\cmcsc10.tfm CM Roman Caps and Small Caps 10pt
\emtex\tfm\cmdunh10.tfm CM Dunhill Roman 10pt
\emtex\tfm\cmex10.tfm CM Math Extension 10pt
\emtex\tfm\cmex9.tfm CM Math Extension 9pt
\emtex\tfm\cmff10.tfm CM Funny Roman 10pt
\emtex\tfm\cmfi10.tfm CM Funny Italic 10pt
\emtex\tfm\cmfib8.tfm CM Roman Fibonacci Font 10pt
\emtex\tfm\cminch.tfm CM Inch-High Sans Serif Bold Ext. Caps & Dig
\emtex\tfm\cmitt10.tfm CM Italic Typewriter Text (10pt)
\emtex\tfm\cmmi10.tfm CM Math Italic 10pt
\emtex\tfm\cmmi12.tfm CM Math Italic 12pt
\emtex\tfm\cmmi5.tfm CM Math Italic 5pt
\emtex\tfm\cmmi6.tfm CM Math Italic 6pt
\emtex\tfm\cmmi7.tfm CM Math Italic 7pt
\emtex\tfm\cmmi8.tfm CM Math Italic 8pt
\emtex\tfm\cmmi9.tfm CM Math Italic 9pt
\emtex\tfm\cmmib10.tfm CM Math Italic Bold 10pt
\emtex\tfm\cmr10.tfm CM Roman 10pt
\emtex\tfm\cmr12.tfm CM Roman 12pt
\emtex\tfm\cmr17.tfm CM Roman 17pt
\emtex\tfm\cmr5.tfm CM Roman 5pt
\emtex\tfm\cmr6.tfm CM Roman 6pt
\emtex\tfm\cmr7.tfm CM Roman 7pt
\emtex\tfm\cmr8.tfm CM Roman 8pt
\emtex\tfm\cmr9.tfm CM Roman 9pt
\emtex\tfm\cmsl10.tfm CM Slanted Roman 10pt
\emtex\tfm\cmsl12.tfm CM Slanted Roman 12pt
\emtex\tfm\cmsl8.tfm CM Slanted Roman 8pt
\emtex\tfm\cmsl9.tfm CM Slanted Roman 9pt
\emtex\tfm\cmsltt10.tfm CM Slanted Typewriter Text (10pt)
\emtex\tfm\cmss10.tfm CM Sans Serif 10pt
\emtex\tfm\cmss12.tfm CM Sans Serif 12pt
\emtex\tfm\cmss17.tfm CM Sans Serif 17pt
\emtex\tfm\cmss8.tfm CM Sans Serif 8pt
\emtex\tfm\cmss9.tfm CM Sans Serif 9pt
\emtex\tfm\cmssbx10.tfm CM Sans Serif Bold Extended 10pt
\emtex\tfm\cmssdc10.tfm CM Sans Serif Demibold Condensed 10pt
\emtex\tfm\cmssi10.tfm CM Slanted Sans Serif 10pt
\emtex\tfm\cmssi12.tfm CM Slanted Sans Serif 12pt
\emtex\tfm\cmssi17.tfm CM Slanted Sans Serif 17pt
\emtex\tfm\cmssi8.tfm CM Slanted Sans Serif 8pt
\emtex\tfm\cmssi9.tfm CM Slanted Sans Serif 9pt
\emtex\tfm\cmssq8.tfm CM Sans Serif Quotation Style 8pt
\emtex\tfm\cmssqi8.tfm CM Sans Serif Quotation Style Slanted 8pt
\emtex\tfm\cmsy10.tfm CM Math Symbols 10pt
\emtex\tfm\cmsy5.tfm CM Math Symbols 5pt
\emtex\tfm\cmsy6.tfm CM Math Symbols 6pt
\emtex\tfm\cmsy7.tfm CM Math Symbols 7pt
\emtex\tfm\cmsy8.tfm CM Math Symbols 8pt
\emtex\tfm\cmsy9.tfm CM Math Symbols 9pt
\emtex\tfm\cmtcsc10.tfm CM Typewriter Caps and Small Caps (10pt)
\emtex\tfm\cmtex10.tfm CM TeX Extended ASCII characters (10pt)
\emtex\tfm\cmtex8.tfm CM TeX Extended ASCII characters (8pt)
\emtex\tfm\cmtex9.tfm CM TeX Extended ASCII characters (9pt)
\emtex\tfm\cmti10.tfm CM Text Italic 10pt
\emtex\tfm\cmti12.tfm CM Text Italic 12pt
\emtex\tfm\cmti7.tfm CM Text Italic 7pt
\emtex\tfm\cmti8.tfm CM Text Italic 8pt
\emtex\tfm\cmti9.tfm CM Text Italic 9pt
\emtex\tfm\cmtt10.tfm CM Typewriter Text (10pt)
\emtex\tfm\cmtt12.tfm CM Typewriter Text (12pt)
\emtex\tfm\cmtt8.tfm CM Typewriter Text (8pt)
\emtex\tfm\cmtt9.tfm CM Typewriter Text (9pt)
\emtex\tfm\cmu10.tfm CM Unslanted Italic 10pt
\emtex\tfm\cmvtt10.tfm CM Variable-Width Typewriter Text (10pt)
\emtex\tfm\dummy.tfm Empty font
\emtex\tfm\logo10.tfm METAFONT logo 10pt
\emtex\tfm\logo8.tfm METAFONT logo 8pt
\emtex\tfm\logo9.tfm METAFONT logo 9pt
\emtex\tfm\logobf10.tfm Boldface METAFONT logo 10pt
\emtex\tfm\logosl10.tfm Slanted METAFONT logo 10pt
* \emtex\tfm\cmman.tfm Variants of CM for the TeX/METAFONT manuals
* \emtex\tfm\manfnt.tfm Special font for the TeX/METAFONT manuals
+ \emtex\remove\tex.rem Package contents listing for `remove'
TEXCAD package
--------------
* \emtex\texcad.exe The TeXcad program
* \emtex\gh.bat Calling editor, LaTeX, TeXcad, and Previewer
\emtex\ask.exe Auxiliary program for gh.bat
\emtex\texcad.opt TeXcad parameters
\emtex\att.bgi Video graphics driver
\emtex\cga.bgi Video graphics driver
\emtex\herc.bgi Video graphics driver
\emtex\egavga.bgi Video graphics driver
\emtex\ibm8514.bgi Video graphics driver
\emtex\pc3270.bgi Video graphics driver
+ \emtex\doc\english\tcman.dvi TeXcad manual (English)
* \emtex\doc\german\tcman.dvi TeXcad manual (German)
+ \emtex\doc\english\texcad.ver Changes from older versions (English).
+ \emtex\doc\german\texcad.ver Changes from older versions (German).
\emtex\texinput\emlines.sty Doc. Style Opt.: lines with arbitrary slopes
* \emtex\texinput\emlines2.sty Ditto, cf. tcman.dvi
* \emtex\texinput\gh.tex Testing LaTeX documents and pictures
+ \emtex\remove\texcad.rem Package contents listing for `remove'
TEXWARE package
---------------
+ \emtex\doc\english\texchk.doc Instructions for texchk (English)
* \emtex\doc\german\texchk.doc Instructions for texchk (German)
* \emtex\texchk.exe Syntax checker for LaTeX
* \emtex\texconv.exe Text conversion (ae -> \"a etc.)
+ \emtex\maketcp.exe Create tcp files
* \emtex\dvitype.exe List a dvi file
* \emtex\pltotf.exe Conversion program .pl -> .tfm
* \emtex\tftopl.exe Conversion program .tfm -> .pl
+ \emtex\vftovp.exe Conversion program .vf & .tfm -> .vpl
+ \emtex\vptovf.exe Conversion program .vpl -> .vf & .tfm
+ \emtex\remove\texware.rem Package contents listing for `remove'
WEB package
-----------
* \emtex\doc\web.doc Brief instructions for the WEB programs
* \emtex\weave.exe WEAVE (.web -> .tex)
* \emtex\tangle.exe TANGLE (.web -> .pas)
* \emtex\pooltype.exe List a pool file
* \emtex\texinput\webmac.tex Macros for TeX and WEAVE
* \emtex\texinput\webman.tex Manual for the WEB system.
+ \emtex\remove\web.rem Package contents listing for `remove'
Fonts
-----
See the section `Further diskettes' for a listing of the devices for
which fonts can be generated.
The fonts will be generated in the following magnifications:
\magstep0 (scaled 1000)
\magstephalf (scaled 1095)
\magstep1 (scaled 1200)
\magstep2 (scaled 1440)
\magstep3 (scaled 1728)
\magstep4 (scaled 2074)
\magstep5 (scaled 2488)
In each magnification there are the following fonts:
cmr5 cmr6 cmr7 cmr8 cmr9 cmr10 cmr12 cmr17
cmbx5 cmbx6 cmbx7 cmbx8 cmbx9 cmbx10 cmbx12
cmmi5 cmmi6 cmmi7 cmmi8 cmmi9 cmmi10 cmmi12
cmsy5 cmsy6 cmsy7 cmsy8 cmsy9 cmsy10
lasy5 lasy6 lasy7 lasy8 lasy9 lasy10
emsy5 emsy6 emsy7 emsy8 emsy9 emsy10
cmti7 cmti8 cmti9 cmti10 cmti12
cmss8 cmss9 cmss10 cmss12 cmss17
cmssi8 cmssi9 cmssi10 cmssi12 cmssi17
cmsl8 cmsl9 cmsl10 cmsl12
cmtt8 cmtt9 cmtt10 (cmtt12)
cmtex8 cmtex9 cmtex10
logo8 logo9 logo10
cmex9 cmex10
cmcsc10 cmtcsc10 lasyb10 logobf10 logosl10 cmdunh10 cmssq8 cmssqi8
cmssbx10 cmssdc10 cmbxti10 cmbxsl10 cmitt10 cmsltt10 cmvtt10 cmmib10
cmbsy10 cmb10 cmfi10 cmff10 cmu10 cmfib8 cminch lcmss8 lcmssb8
lcmssi8 line10 linew10 lcircle1 (=lcircle10) lcirclew (=lcirclew10)
In each `magnification' scaled 800 and scaled 900 one has the font:
cmcsc10
Big fonts for SliTeX are packaged in a separate font library file
(lj_sli.fli, for example):
"\magstep6" (scaled 2986)
"\magstep7" (scaled 3583)
"\magstep8" (scaled 4300)
lcmss8 lcmssi8 lcmssb8 cmmi8 cmsy8 cmtt8 lasy8
"\magstep9" (scaled 5160)
lcmss8
The font cmtt12 is missing for some devices in some magnifications (this
is taken into account in lfonts.tex).
You don't need separate fonts for the screen previewers, as you can use
the printer fonts.
------------------------------------------------------------------------------
License
------------------------------------------------------------------------------
emTeX may only be distributed in UNCHANGED and COMPLETE form (all zip
files, readme.eng and readme.ger!), and only when this is done WITHOUT
CHARGE. If you want to distribute only parts of emTeX or if you want
to charge a small fee for handling etc., you have to contact the author.
Please observe the license conditions for pkzip/pkunzip
(see manual.doc in pkz102.exe)!
Please observe the directions in \emtex\texinput\ghyphen.min and
\emtex\texinput\ghyphen.max!
Please observe the directions in \emtex\doc\makeindx.cpy (see also
\emtex\doc\english\texware.doc and \emtex\doc\german\texware.doc)!
TeXcad is Shareware. Please observe the directions in
\emtex\doc\english\tcman.dvi!
No guarantee is made as to the proper functioning of the programs.
No liability will be admitted for damage resulting from using the
programs.
Instead of a list: All the trademarks used in this document and all
the other emTeX documents are registered to whoever it is that owns them.
------------------------------------------------------------------------------
How do I get emTeX?
------------------------------------------------------------------------------
- You can get emTeX at some University computing centers.
- Ask your friends, etc.
- Ask your local TeX users group.
- Anonymous ftp:
ftp.uni-stuttgart.de [129.69.1.12] soft/tex/machines/pc/emtex
ymir.claremont.edu [134.173.4.23] [anonymous.tex.ibm_pc.emtex]
archive.cs.ruu.nl [131.211.80.5] TEX/emtex
utsun.s.u-tokyo.ac.jp [133.11.11.11] TeX/emtex
ponder.csci.unt.edu [129.120.3.16] pub/TeX/EmTeX
- Mail server:
mail-server@cs.ruu.nl
mail-server@rusinfo.rus.uni-stuttgart
texserver@uk.ac.tex (UK)
texserver@tex.ac.uk (outside UK)
- Ask the one from whom you got this text. As this text is distributed
by the author only with the complete emTeX, you should be able to
trace back this text to a complete emTeX.
- If there is no other way to get emTeX (which is impossible, as proved
above), you can try to send formatted diskettes in sufficient number
(5.25 inch, 1200 KB, high density or 3.5 inch, 1440 KB, high density;
see above; include a spare diskette), return postage, and a suitable
self-addressed package, to the author (see below). Also indicate the
fonts desired (i.e. printer type and resolution). You can save the
author from unpleasant work by using MFjob (which comes with emTeX)
for generating fonts.
Shipping at your risk. You also run the risk of having your address
given to (a few) other people in your vicinity who want a copy of emTeX.
------------------------------------------------------------------------------
The author
------------------------------------------------------------------------------
Address:
Eberhard Mattes
Teckstrasse 81 (Teckstra\ss e)
D-7141 Moeglingen (M\"oglingen)
Federal Republic of Germany
Questions only by mail! No telephone calls please!
Please inclose a self-addressed return package with postage if
you expect a response. Read help.eng first!
Electronic mail (subject to sudden change):
Internet: mattes@azu.informatik.uni-stuttgart.de
If you want support by telephone, obtain a commercial TeX package.
Frequently asked questions (and answers) will be found in help.eng and
help.ger.
------------------------------------------------------------------------------
Reporting bugs
------------------------------------------------------------------------------
If you find a bug please tell the author so that it can be corrected. Please
send the following information which is needed for the task:
- machine type (XT, AT, 386 &c.), CPU, BIOS, video card, printer
(manufacturer and model), operating system and version number
(note: SYSLEVEL command with OS/2). For instance:
AT compatible, 286, Award, Paradise VGA, DeskJet+, IBM PC-DOS 3.3 .
- the text of the autoexec.bat and config.sys in use when the error
occurred: if possible, with an explanation of the programs called and
drivers installed that are not part of the operating system.
- emTeX version (date of issue, see head of readme.eng)
- enough information for the error to be reproduced, if possible a disk
(5.25" or 3.5") containing the appropriate files (see also dvidrv.doc).
- the dvidrv log file, if the error is in a driver
- the part of the printed output which shows the error, if the error is in
a printer driver.
Please inclose a self-addressed return package with postage if
you expect a response.
------------------------------------------------------------------------------
Changes from earlier versions (with regard to the installation)
------------------------------------------------------------------------------
16-Oct-1989
-----------
MFWARE: The .exe files were moved from the directory \emtex\mfjob
to the directory \emtex. Please delete old .exe files in
\emtex\mfjob. For further changes see mfjob.doc.
06-Nov-1989
-----------
TEX: tex286.exe new.
ehyphen.tex renamed to ahyphen.tex.
dhyphen.tex renamed to ghyphen.tex.
In case you use your own .fmt files, these should be made
over.
DVIDRV: `view' renamed to `v'.
Names of the environment variables changed (see *.cnf).
Batch and configuration files changed.
DVIDRVMA: dvitrans.* removed, graphic files now supplied.
BIBTEX: ieeetr.bst and sample.bst removed (please delete).
MF: Following files removed (delete in \emtex\mfinput!):
grdov.mf, grdov5.mf, gresp.mf, gresp5.mf, gray.mf, black.mf,
lgresp.mf, sldov6.mf, slaps4.mf, imhalf.mf, aphalf.mf,
ddhalf.mf, blaps.mf, bldov.mf, blesp.mf, oneone.mf.
mf286.exe new.
In case you use your own .bas files, these have to be redone,
since mf.poo has been changed.
MISC_MF: The file \emtex\mfinput\trap.mf was removed (delete!).
TEXWARE: Contains now the former package TEX_UTIL.
MISC_TEX: Does not exist anymore.
12-Feb-1990
-----------
BTEX New.
BLATEX New.
MAKEINDX New.
DVIDOT New (preliminary version, will be delivered later with
DVIDRV).
Fonts:
Additional fonts (needed for LaTeX):
cmcsc10 scaled 800; cmcsc10 scaled 900.
fli files renamed (hp_* -> lj_*). IF YOU ALREADY ARE USING
hp_*.fli-files: PLEASE RENAME.
Fonts renamed:
grayhp -> graylj, blackhp -> blacklj and slanthp -> slantlj
Fonts renamed:
grayeps -> grayfx, blackeps -> blackfx and slanteps -> slantfx
Additional Fonts in lj_1500:
graylj, blacklj, slantlj
Additional Fonts in fx_1200:
grayfx, blackfx, slantfx
21-Feb-1990
-----------
From now on all changes are documented in CHANGES.DOC.
Changes that concern installation are also entered here.
BMF New.
08-Aug-1990
-----------
GTEX: New. (Taken out of the TEX package.)
GLATEX: New. (Taken out of the LATEX package.)
GBTEX: New. (Taken out of the BTEX package.)
GBLATEX: New. (Taken out of the BLATEX package.)
TEXCAD New.
DVIDOT: Now to be found in the DVIDRV package. There is no longer an
\emtex\doc\dvidot.doc, please delete it.
DVIDRV: The old dot matrix drivers have been replaced by dvidot:
dvifx, dviitoh, dviaiw, dvip6l, dvip6m, dvip6h have been
removed.
DVIDRV: .cnf- .bat- and .cmd files changed. If you have made your own
alterations to these file, you should alter the new files
appropriately.
The `manual' font has been renamed `manfnt' (this is the standard name).
You should delete \emtex\tfm\manual.tfm and \emtex\mfinput\manual.mf.
ghyphen.min and ghyphen.max have replaced ghyphen.tex (which was out of
date). Please delete ghyphen.tex.
ahyphen.tex has again been changed to hyphen.tex (it will stay like that
now). Please delete ahyphen.tex.
The program remove can be used to remove the files making up a package
from the installed system.
bglatex.cmd and bglatex.bat have been renamed gblatex.cmd and gblatex.bat
respecitvely. Please delete bglatex.cmd and bglatex.bat.
MFWARE: mfjob1.exe and mfjob2.exe have been renamed mfjob1.ovl and
mfjob2.ovl; please delete mfjob1.exe and mfjob2.exe.
GLATEX: no longer contains modified sty files, as the LATEX package now
contains ILaTeX. Please delete all files from the
\emtex\texinput\german directory and change the environment
variable TEXINPUT appropriately.
LATEX: latex.dif no longer there; doc files are now in the LATEXDOC
package.
LATEXDOC: New.
Documentation in English, as far as is available, will be found in the \
emtex\doc\english directory. German documentation is to be found in
\emtex\doc\german. If a document is available in only one language, it
will be found in \emtex\doc.
Frequently asked questions (and answers) will be found in help.eng and
help.ger.
Now both German and English versions of changes.doc: changes.ger and
changes.eng. Changes amde in earlier versions are detailed in changes.pre.
delete: ***ATTENTION***: meaning of -n option changed!
20-Aug-1990
-----------
cmman.tfm and manfnt.tfm moved from MISC_MF package to TEX package.
25-Sep-1990
-----------
The file format of font library files has changed. If you own font library
files of an old emTeX distribution, the fli files must be converted to the
new format. First, copy the complete new DVIDRV package onto your disk.
Then, change to the directory containing the fli files and start the batch
file newfonts, giving the path name of the file `fontlist' as argument
(\emtex\fontlist with the correct drive). Example (fonts in c:\texfonts,
emTeX on disk D):
c:
cd \texfonts
newfonts d:\emtex\fontlist
1200 KB of disk space must be available.
The fonts circle10 and circlew10 have been renamed lcircle10 (lcircle1)
and lcirclew10 (lcirclew). Please delete the files
\emtex\tfm\circle10.tfm
\emtex\tfm\circlew1.tfm
These fonts were also renamed in the font libarary files. If you're
using old dvi files with new fonts, you have to use the font substitution
file newfonts.sub (/ps=c:\emtex\newfonts). If you're using new dvi files
with old fonts, you have to use the font substitution file oldfonts.sub
(/ps=c:\emtex\oldfonts).
If you have fonts in directories named like \emtex\pixel.fx\pxl$s,
you should rename these directories \emtex\pixel.fx\$rdpi, replacing
$r with $s/5 (rounded). Example:
\emtex\pixel.lj\pxl1800 --> \emtex\pixel.lj\360dpi
02-Jul-1991
-----------
DVIDRVMA: dvidrv.dvi (German version) moved from \emtex\doc to
\emtex\doc\german. Please delete \emtex\doc\dvidrv.dvi.
06-Oct-1991
-----------
TEX: emtex.dvi (German version) moved from \emtex\doc to
\emtex\doc\german. Please delete \emtex\doc\emtex.dvi.
10-Jun-1992
-----------
New LaTeX version. The following ZIP files have been changed:
BLATEX.ZIP BTEX2.ZIP GBLATEX.ZIP GBTEX.ZIP
GLATEX.ZIP GTEX.ZIP LATEX1.ZIP LATEX2.ZIP
LATEXDOC.ZIP MAKEINDX.ZIP TEX2.ZIP
23-Jun-1992
-----------
Bugs fixed, new MakeIndex version. The following ZIP files have been
changed:
BLATEX.ZIP GBLATEX.ZIP GLATEX.ZIP
LATEX2.ZIP MAKEINDX.ZIP
Known bug: \righthyphenmin is not set to 2 when generating plaing.fmt.
-------- End of README.ENG -------------
|