summaryrefslogtreecommitdiff
path: root/macros/blu/lit.dat
blob: 4381b28d42a5f576ba8278322b1fde87e9d01677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
2373
2374
2375
%Database of EP related literature, to be processed by blue.fmt.
%Version Aug 1994
%Files: lit.dat (data this file)
%C.G. van der Laan, Hunzeweg 57, 9893PB, Garnwerd, The Netherlands
%                                        05941-1525, cgl@rc.service.rug.nl
%Note: Don't include blank lines! (TeX ends paragraphs then and will
%                           disturb your typeset list of references.)
%      Don't use \verb|...| or so for verbatims (catcodes are fixed once read)
%Auxiliary macros
%\def\thepage{\folio} %Necessary when with tugboat.sty
%\def\tubissue#1(#2){\TUB~#1, no.~#2}%To be independent from tugboat.sty c.q.
                                     %                      ltugboat.sty.
%Conventions entries                     
%\def\<name>                               %Key for database, add a, b, ...
%    {<family name> <initials> (<year>):   %All with minimal interpunction
%     <title>                              %No discrimination
%     <source>                             %ISBN for books in here, pages as range
%     \annotation{<Comments, annotations.>}% <numbers>\dash<numbers>
%}%end entry                                       
%
%Data
\lst\aap
   {Association of American Publishers (1989): 
    Markup of Tabular Material.  
    Version 2.0 AAP Inc.
}
\lst\aapstd
   {Association of American Publishers (1987): 
    Standard for electronic manuscript preparation and markup. 
    AAP inc. 
    \annotation{Association of American Publishers, 
    2005 Massachusetts Avenue, NW. Washington, DC 20036,
    Phone: (202) 232-3335.}
}
\lst\aapaut
   {Association of American Publishers (1989):
    Author's guide to electronic manuscript preparation and 
    markup.
    AAP inc. (2$^{nd}$ version.)
}
\lst\aapref
   {Association of American Publishers (1989):
    Reference manual on electronic manuscript preparation and markup. 
    AAP inc.
    (2$^{nd}$ version.) ISBN 1-55653-084-6.
}
\lst\aaptab
   {Association of American Publishers (1989): 
    Markup of tabular material. 
    AAP Inc. ISBN 1-55653-085-4.
    (2$^{nd}$ version.). 
}
\lst\aapmat
   {Association of American Publishers (1989): Markup of
    Mathematical Formulas. 
    AAP Inc. EPSIG.
    (2$^{nd}$ version.)
}
\lst\abrahamspw
    {Abrahams P.W (1990): \TeX\ for the impatient.
     Addison-Wesley.
}
\lst\adobeb
   {Adobe  (1985):
    PostScript Language Reference Manual.
    Addison-Wesley. ISBN 0-201-10174-2.
}
\lst\adobeA
   {Adobe Magazine (1995):
    The Technology of type.
    Adobe Magazine, 2, 16\dash19.
    (A nice survey of the outline fonts in relation to truetype.)
}
\lst\ahoav
   {Aho A.V, R. Sethi (1988):
    Maintaining Cross-references in Manuscripts.
    Softw.Pract.exp.,  18, 1, 1\dash14.
}
\lst\alexanderjc
   {Alexander J.C (1986):
   Tib, a reference setting package.
   \tubissue{ 7}(3), 138\dash139.
   \annotation{An update note is in \tubissue{8}(2), 102.
   A C program inspired upon troff's refer (and its successor bib).
   It is a preprocessor tailored for use with (All)\TeX.
   It allows for a few citation styles, and a publisher can extend these.
   It provides also for a powerful word-definition citation search.
   Flexible in general.
   Tagging of the entries a la refer has to be obeyed.
   From the UKTuG meeting of 1990 the following characteristics.
   It consists of:
   tibdex, a hashing program to speed up access to
   large collections of citations, by creating an index to the bibliography;
   tiblist, to format and print the database;
   looktib, a program to query the database;
   tib, main program goes through the source document and looks for
   keywords between [ and ].
   Advantages: 1-pass, pattern-matching citation no need to invent unique
   key, compatible with UNIX refer databases,
   good toolbox of style elements, single index
   of bibliographies, formatting more-closely related to \TeX.
   Disadvantages: pre-processor system, possible wrong matches, possible errors
   in repeated citations, non-algorithmic style language, left up to Tib
   to work out citation type, lack of extensibility in field,
   not very robust (crashes).}
}
%\lst\amsa {AMS (1989):   AMS-\LaTeX. AMS.}
\lst\amsb
 {AMS (1991):
 A look inside the AMS.
 \annotation{A nice brochure of what AMS is all about.}
}
\lst\amsc
  {AMS (1991):
  Think about publishing with the AMS.
  \annotation{Another nice brochure about the merits of
  publishing with AMS: effective marketing, extensive promotion, world-wide
  distribution, better sales, longer life of book, royalties, support
  worthwhile noncommercial activities for the benefit of the scientific
  community at large, for example the \TeX\ project.}
}
\lst\amsd
 {AMS (1993):
 \AmSTeX\ User's Guide 2.1.
}
\lst\amse
 {AMS (1993):
 \AmSTeX\ Installation Guide 2.1.
}
\lst\amsf
 {AMS (1993):
 \AmS-\LaTeX\ User's Guide 1.1.
}
\lst\amsg
 {AMS (1993):
 \AmS-\LaTeX\ Installation Guide 1.1.
}
\lst\amsh
 {AMS (1993):
 AMSfonts. User's Guide 2.1.
}
\lst\amsi
 {AMS (1993):
 AMSfonts. Installation Guide 2.1.
}
\lst\amsj
 {AMS (1993):
 Guidelines for preparing electronic manuscripts.
 \AmSTeX\ (booklet, 52p), and the mirrored one
 \AmS-\LaTeX\ (booklet, 58p).
 \annotation{The first is very well-done.
  I have not seen a guideline of similar quality of yet!
  Simply the best available. Much experience is embodied to learn from.
  The second is verbose, incomplete, and deals at length with issues
  an author should not be bothered with.}
}
\lst\amsteljja
   {Amstel J.J van, J Bomhoff, G.J Schoenmakers (1978):
    Inleiding tot het programmeren 1. 
    Academic Service.
}
\lst\appeltwa
   {Appelt W (1987):
   Macros with keyword parameters. 
  \tubissue{8}(2), 284\dash287.
}
\lst\appeltwb
   {Appelt W (1988):
   Typesetting Chess. 
   \tubissue{9}(3), 284\dash287.
}
\lst\appeltwc
   {Appelt W (1988):
   \TeX\ f\"ur Fort\-geschrit\-tene\-\Dash 
   Pro\-gram\-mier\-tech\-ni\-ken und Makro\-pa\-kette.
   Addison-Wesley.
}
\lst\appeltwd
   {Appelt W (1988): 
    Introduction to \TeX. Addison-Wesley.
}
\lst\aps
   {APS (1992):
   The REV\TeX{} input guide.
   (From the file server.)
}
\lst\arsenaud
   {Arsenau D (1992):
   overcite.sty, drftcite.sty, citesty.
   (From the file server.
    No longer needed when BLUe's Bib, especially as part of blue.fmt,
    is used.)
}
\lst\arsenaudb
   {Arsenau D (1993):
   Typesetting paragraphs of a specified shape.
   MAPS 93.2, 191\dash193.
}
\lst\asher
   {Asher (1992):
    Inside Type \& Set.
    \tubissue{13}(1), 13--22.
}
\lst\aurbachrl
   {Aurbach R.L (1987):
    Automatic Index Generation for \LaTeX.
    \tubissue{8}(2), 201\dash209.
   \annotation{The IdxTeX program provides the external processing
   and generates a file of \LaTeX{} source which may be included 
   in a document to produce the desired index.}
}
\lst\batageljv
   {Batagelj V (1994):
   Combining \TeX{} and PostScript.
   Proceedings Euro\TeX{} 94, 83\dash90.
}
\lst\barlettfh
   {Barlett F.H (1991):
    Contra-\LaTeX, or what really works in the publishing world.
    TUG '91. \tubissue12(3), 367\dash371.
}
\lst\barrond
   {Barron D (1989): Why use SGML? 
    Electronic publishing, 2,1, 3--24.
}
\lst\bechtolsheimsa
  {Bechtolsheim S. von (1988): 
   Tutorial on \cs{futurelet}.
   \tubissue{9}(3), 276\dash278.
}
\lst\bechtolsheimsaa
  {Bechtolsheim S von (1988): 
   Using the emacs editor to savely edit \TeX\ sources. 
   \TeX niques 7, 195\dash202.
}
\lst\bechtolsheims
  {Bechtolsheim S von (1989):
  \cs{csname} and \cs{string}.
  \tubissue{10}(2), 203\dash206.
  \annotation{Apart from the basics, SvB discusses the convenient 
   (read non-double) loading of macro files, and 
   the cross-referencing. Common to both applications is the use
   of \cs{csname} and \cs{string}. No nesting of \cs{csname},
   and no mentioning of associating \cs{csname} with arrays.}
}
\lst\bechtolsheimsb
   {Bechtolsheim S von (1993):
    \TeX\ in Practice.
    1.~Basics
    2.~Paragraphs, Math and Fonts
    3.~Tokens, Macros
    4.~Output Routines, Tables
    Springer-Verlag.
}
\lst\beebenhfa
   {Beebe N.H.F (1988):
   A \TeX\ driver family.
   \TeX niques 5, 71\dash113.
}
\lst\beebenhfb
   {Beebe N.H.F (1989):
   \TeX\ and graphics: The state of the problem.
   Cahiers GUTenberg, 2, 13\dash53.
}
\lst\beebenhfc
   {Beebe N.H.F (1991):
   The TUGlib server. 
   MAPS 91.2, 117\dash123.
   (Also \TeX line 11.)
}
\lst\beebenhfd
   {Beebe N.H.F (1992):
   \LaTeX\ Editing Support. 
   MAPS 92.1, 91\dash114.
}
\lst\beebenhfe
   {Beebe N.H.F (1993):
   Bibliography prettyprinting and syntax checking.
   \tubissue{14}(3/4), 222, respectively ?\dash?.
}
\lst\beetonbn
   {Beeton B.N (editor, 1991):
    TUG Resource Directory.
    \annotation{It contains: TUG membership list,
                  \TeX\ User Associations,
                  Sources of \TeX\ software,
                  Output Device Drivers,
                  \TeX\ archives,
                  Electronic Discusion Lists,
                  \TeX\ bibliography.}
}
\lst\beetonbnb
   {Beeton B.N (1990):
   \TUB{} production: \TeX, \LaTeX, and paste-up.
   SGML-\TeX{} meeting, Groningen. \annotation{Unpublished}
}
\lst\bell
   {Bell System Technical Journal (1978):
    UNIX Time Sharing System.
    BTJ, Vol 57, 6, part 2.
}
\lst\bentleyjla
   {Bentley J.L (1986): 
    Programming Pearls. 
    ISBN 0-201-10331-1. Addison-Wesley.
}
\lst\bentleyjlb
   {Bentley J.L (1988): 
    More programming Pearls---confessions of a coder. 
    ISBN 0-201-11889-0. Addison-Wesley.
}
\lst\berryka
    {Berry K (199?):
     Expanded plain \TeX. 
     From the file server.
     \annotation{A toolbox to cooperate with Any\TeX. It contains
      a fancy cross-referencing scheme, and left justification
      of math displays, among others. An announcement of
      the availability of the toolbox\Dash and its contents\Dash 
      has appeared in \tubissue{11}(4), 571\dash572.}
}
\lst\bestr
   {Best R (1993):
   \TeX\ zonder omhaal; voor ATARI PC en andere PCs.
   MAPS 93.1\&2, 57\dash68, resp.~111\dash114.
   MAPS 94.1\&2, 31\dash34, 35\dash36, resp.~43\dash44.
   (Also ATARI-ST Journal.)
}
\lst\bienzt
   {Bienz T, R Cohn (1993):
   Portable Document Format Reference Manual.
   Adobe Systems Inc. Addison-Wesley. ISBN 0-201-62628-4. 
}
\lst\bleekerj
   {Bleeker J (1989): Electronische verzending, 
    bewerking en opslag van wetenschappelijke artikelen. 
    In: SGML de consequenties. 
    De eerste Nederlandse SGML conferentie. 
    SGML User's Group Holland. (Dutch)
}
\lst\bloemenpa
   {Bloemen P (1993):
   4all\TeX: NTG's \TeX{} for MS-DOS.
   MAPS 93.2, 141\dash154.
   \annotation{The announcement of this working environment. For simple users only
    1 HD flop, and in its full glory over 30 HD floppies. Available
    from NTG's shop. Shareware.}
}
\lst\bloemenpb
   {Bloemen P (1993):
   Shells for \TeX.
   MAPS 93.2, 155\dash159.
   (It discusses \TeX Shell and 4\TeX.)
}
\lst\bloemenpc
   {Bloemen P (1994):
   \PS{} fonts in \TeX.
   MAPS 94.2, 139\dash148.
}
\lst\bodenheimerb
   {Bodenheimer B (?): 
   Frequently asked questions.
   comp.text.tex newsgroup. 
   (Adapted by Van Oostrum in MAPS 91.1, 85\dash92.).
}
\lst\boothv
   {Booth V (1975): Writing a scientific paper. 
   The Biochemical Society, London.
}
\lst\borceuxf
   {Borceux F (1990): De la construction de diagrammes.
   Cahiers GUTenberg, 5, 41\dash48.
}
\lst\botwaylc
   {Botway L, C Biemesderfer (198?):
    \LaTeX\ command summary.
    \TeX niques 10.
}
\lst\braamsjl
  {Braams J.L (1991):
  Babel, a multilingual style-option system for use with \LaTeX's standard
  document styles. 
  \tubissue{12}(2), 291\dash301. 
  (Pre-release MAPS 91.1;
   updated \tubissue{14}(1), 60\dash61.)
}
\lst\braamsjla
   {Braams J.L, V Eijkhout, N.A.F.M Poppelier (1990):
    The development of national \LaTeX\ styles. 
    \tubissue{10}(3), 401--406.
}
\lst\braamsjlb
  {Braams J.L (1991): 
  Babel, a multilingual style-option system 
  for use with \LaTeX's standard document styles. 
  \tubissue{12}(2), 291--301.
  (Early version in MAPS 91.1.)
}
\lst\bridge
  {BRIDGE. Monthly of the NBB (Dutch Bridge Union).
}
\lst\brueggemana
  {Br\"uggemann-Klein A, D Wood (1989):
  Drawing trees nicely with \TeX. 
  EP-ODD, 2, 2, 101\dash115.
  (Also in \TeX\ Applications, Uses and Methods, Malcom Clark, editor.)
}
\lst\bruinr
   {Bruin R de, C.G van der Laan, J.R Luyten, H.F Vogt (1988):
   Publiceren met \LaTeX. 
   CWI Syllabus 19.
   (See also Addendum `Publiceren met \LaTeX' in MAPS 92.1.)
}
\lst\bryanma
   {Bryan M (1988):
    SGML, an Author's Guide to the Standard
    Generalized Markup Language. 
    Addison-Wesley.
}
\lst\bryanm
  {Bryan M (1993):
  A \TeX{} user's guide to ISO's Documentstyle Semantics and Specification
  Language (DSSSL).
  Proceedings TUG '93. \tubissue{14}(3), ?\dash?.
}
\lst\buergerd
  {B\"urger D (1990):
  \LaTeX\ for scientists and engineers. MC Graw-Hill.
}
\lst\bzylw
   {Bzyl W, T Przechlewski (1993):
    An application of literate programming: creating a format for the Bulletin
    of the Polish TUG.
    TUG '93. \tubissue{14}(3), 296\dash299.
    \annotation{Very promising this using of the experience embodied in {\tt tugboat.sty}
     via transformation into Web and modify this with GUST's mods via
     change files. As a bonus there is an index.
     Handy to locate commands, but it won't help to locate
     the various @begin$<foo>$ commands because these are invoked via
     csnames.}
}
\lst\cameronpj
   {Cameron P.J (1990): 
    Adventures of a new \TeX nician.
    \TeX line 12, 2\dash3.
}
\lst\carlisleda
    {Carlisle D (1992):
     longtable.sty. 
     From the fileserver.
}
\lst\chemtex
   {Chem-\TeX (?): 
    From the  file server.
}
\lst\chenp
  {Chen P, M Harrison (1987): 
   Automatic index preparation.
   CSB-TR 87/347. UCB.
  \annotation{A nice survey of issues relevant to preparing indexes
  automatically. Existing indexing tools in use in various systems
  are discussed. The paper emerged from the experience gained in writing
  the makeindex C program.}
}
\lst\cheswickb
   {Cheswick B (1990):
   A permuted index for \TeX\ and \LaTeX.
   CSR 145. AT\&T.
   (Also \TeX niques 14. Handy for looking up if a command is already in use.)
}
\lst\childsba
   {Childs B (1989): 
    Teaching \TeX.
    \tubissue{10}(2), 156\dash163.
}
\lst\childsbb
   {Childs, B (1989): 
    Answers to \TeX\ tests.
    \tubissue{10}(3), 319\dash323.
}
\lst\clarkaa
   {Clark A.F (1987): 
    Halftone output from \TeX. 
    \tubissue{8}(3), 270\dash274.
}
\lst\clarkma
   {Clark M (1987): 
    More symbols for \TeX. 
    \TeX line 5, 7\dash8.
}
\lst\clarkmaa 
   {Clark M (1988): 
    A note comparing \TeX\ to SGML.
    SGML User's Group Bulletin, 3, 2, 67\dash68.
}
\lst\clarkmab 
   {Clark M (1988): 
    A note comparing \TeX\ to SGML.
    SGML User's Group Bulletin, 3, 2, 67\dash68.
}
\lst\clarkmac 
   {Clark M (1989): 
    \TeX\ and/or SGML. 
    Proceedings Euro\TeX89. Karls\-ruhe. 
    \annotation{Context sensitivity as a tool for checking
     input correctness is stressed; 
     an example of how to do this within \TeX\
     is given.}
}
\lst\clarkmb
   {Clark M (editor, 1990):
    \TeX\ applications, uses and methods.
    Proceedings of Euro\TeX\ '88.
    Ellis Horwood. ISBN 0-13-912296-6.
}
\lst\clarkmc
   {Clark M (1992):
    Portable Graphics in \TeX.
    Proceedings TUG '92. \tubissue{13}(3), 253\dash260.
    (Also as chapter 17 in his \TeX\ Primer.)
}
\lst\clarkmd
   {Clark M (1992):
    A plain \TeX\ primer.
    Oxford University Press. 480p.
}
\lst\cms
   {The Chicago manual of style (1982).
    University of Chicago Press.
}
\lst\coffings
   {Coffin G.S (1954): Bridge Plays:
    Four classics. Faber and Faber. London.
}
\lst\commacm
   {Comm ACM (1988):
    Special Issue: Hypertext.
    Comm. ACM, 88, 31, 7.
    \annotation{It contains:
     An overview of hypertext, by J.B Smith, S.F Weiss;
     KMS: A distributed hypermedia system for managing knowledge in
          organizations, by R.M Akscyn, D.L McCracken, E.A Yoder;
     Reflections on notecards: seven issues for the next generation of
          hypermedia systems, by F.G Halasz;
     HAM: A general purpose hypertext abstract machine, by B Campbell, J.M
          Goodman;
     Abstraction mechanisms in hypertext, by P.K Carg;
     Hypertext and the new Oxford dictionary, by D.R Raymond, F.W Tompa;
     Searching for information in a hypertext medical handbook, by
           M.E Frisse;
     Hypertext '87: Keynote address, by A van Dam.
     There are conferences devoted to the subject at least each year.}
}
\lst\coombsjh
   {Coombs J.H, A.H Renear, S.J DeRose (1987):
    Markup systems and the future of scholarly text processing.
    Comm. ACM, 30, 11, 933\dash947.
}
\lst\cowanrf
   {Cowan R.F (1985):
   Making tables with macros. tables.tex \& tabledoc.tex.
   (Available from file servers.)
}
\lst\crowhurste
   {Crowhurst E (1986):
    ACOL in competition. Pelham. London.
}
\lst\damrauj
   {Damrau J, M Wester (1991):  Form letters with 3-across
   labels capability. TUG '91. \tubissue{12}(4), 510\dash516.
}
\lst\dobrowolskiae
  {Dobrowolski A, E (1992):
  Typesetting SGML documents using \TeX.
  Proceedings TUG '92. \tubissue{12}(4), 409\dash414.
}
\lst\dolw
    {Dol W, E.H.M Frambach, M van der Vlerk (1993):
    4\TeX: a \TeX\ workbench for MS-DOS PCs.
    MAPS 93.1, 53\dash56.
}
\lst\dolwb
    {Dol W (1993):
    The ease of including graphics in \TeX{} documents using 4\TeX.
    MAPS 93.2, 171\dash176.
}
\lst\dolwc
    {Dol W, E.H.M Frambach, S Kroonenberg, M van der Vlerk (1994):
    \TeX{} \& 4\TeX{} Guide.
    (Booklet to accompany NTG's 4All\TeX{} CD-ROM.)
}
\lst\doobma
    {Doob M (1990):
    A gentle introduction to \TeX.
    \TeX niques 12.
    (Also from the file server, as is my review.)
}
\lst\doobmb
    {Doob M, C Platt (1993):
    Virtual fonts in a production environement.
    TUG '93. \tubissue{14}(3), 275\dash281.
}
\lst\doumontjl 
    {Doumont J.L (1994): 
     Pascal pretty-printing: 
     an example of `preprocessing within \TeX.' 
     Proceedings TUG '94. \tubissue{15}(3), 167\dash173.
}
\lst\downesmja 
    {Downes M.J. (1991): 
     Dialogue with \TeX. 
     Proceedings TUG '91. \tubissue{12}(4), 502\dash509.
}
\lst\drilcon
    {DRILCON (1990): A program for conversion between \TeX\ and wordprocessors.
     KUB. The Netherlands.
     (It uses an intermediate language.)
}
\lst\duchierd
 {Duchier D (1990):
  \TeX, ex\-ter\-nal tensor pro\-duct. 
  \TeX HaX 90.20.
}
\lst\dunna
 {Dunnr A (1987):
  Using \PS{} with \TeX. 
  \tubissue{8}(2), 171\dash173.
}
\lst\durstlka
  {Durst L.K (1989): Bibliographic citations, or variations
   on the old shell game. \tubissue{10}(3), 390\dash394.
   \annotation{It discusses how to cope with \TeX ing a bibliography. BLUe's Bib
    has undoubtedly been influenced by this work, because I read it
    at least a year before creating BLUe's Bib. Durst does not use the
    list separator \TeX nique, and therefore the encoding is a little more
    complex. Also the writing to a file and the external sorting makes it
    more cumbersome. In the paper it is not worked out how to use it within
    one of \TeX's flavours.
    The basic approach is very similar to mine, however.}
}
\lst\durstlkb
   {Durst L.K (1990):
   Long-winded endnotes and exercises with hints or solutions.
   \tubissue{11}(4), 580\dash588.
   \annotation{A comment is given in Hefferon (1991): Getting {\tt\char92answers}
    in \TeX.}
}
\lst\durstlkc
   {Durst L.K (1991):
   Some tools for  making indexes: Part I.
   \tubissue{12}(2), 248\dash258.
}
\lst\dysonmc
   {Dyson M.C (1992):
   The curriculum as a hypertext.
   EP-ODD, 5, 2, 63\dash72.
}
\lst\dysonmcb
   {Dyson M.C (1993):
   Teaching digital typography\Dash the Didot project.
   TUG '93. \tubissue{14}(3), 329\dash332.
   (Also MAPS 93.2, 216\dash218.)
}
\lst\eijkhoutva
   {Eijkhout V (1990):
   Unusual paragraph shapes.
   \tubissue{11}(1), 51\dash53.
}
\lst\eijkhoutvb
   {Eijkhout V (1990):
   An indentation scheme.
   \tubissue{11}(4), 613\dash616.
   (Also MAPS 90.2.)
}
\lst\eijkhoutvc
   {Eijkhout V (1990):
   A {\tt\char92parskip} scheme.
   \tubissue{11}(1), 616\dash619.
   (Also MAPS 90.2.)
}
\lst\eijkhoutvd
   {Eijkhout V (1992):
   \TeX\ by Topic. Addison-Wesley.
}
\lst\eijkhoutve
   {Eijkhout, V (1993):
    The bag of tricks. \tubissue{13}(4), 494\dash495.
    (It is about how to layout a macro. What I like most of it is the
     summary of how to counteract unwanted spaces. At the end the important
     difference between the \cs{ifUndefinedCS} and \cs{if}\cs{UndefinedCS}
     has been treated.)
}
\lst\einarssonb
   {Einarsson B, W.M Gentleman(1984): 
    Mixed Language programming.
    Soft.Prac.Exp., 14, 4 383\dash396.
}
\lst\eppsteind
   {Eppstein D (1985):
   Trees in \TeX.
   \tubissue{6}(1), 31\dash37.
}
\lst\fergusonmj
   {Ferguson M.J (1991):
   INRS-\TeX\ (new version).
   (See also his multilingual reports, \tubissue{11}(4), 514\dash515)
}
\lst\fineja
   {Fine J (1992): Some basic control macros for \TeX.
   \tubissue{13}(1), 75\dash83.
}
\lst\floydrw
   {Floyd R.W (1978): The paradigms of programming.
   Comm ACM ?\dash?. 
   Also in ACM Turing Award Lectures. The first twenty years 1966\dash1985.
   ACM Press. Addison-Wesley IBN 0-201-07794-9.
   \annotation{}
}
\lst\furutar
   {Furuta R, J Scofield, A Shaw (1982):
   Document Formatting Systems: Survey, Concepts, and Issues.
   Computing Surveys, 14, 3, 417\dash472.
}
\lst\genussapl
   {Genussa P.L (1987): 
    Document Preparation Method
    of the United States Aire Force 
    Automated Technical Order System.
    SGML Users' group. Bulletin 2, 1.
}
\lst\gibbonsj
   {Gibbons J (1993):
    Footnotes with verbatim material.
    TTN, 2, 4, p.9.
   \annotation{\LaTeX's footnote implementation has been modified to allow also for
    verbatims similar to plain's encoding. Basically it comes down to handling
    the `argument.' Really nice.}
}
\lst\glendowng
    {Glendown G (1990): Round boxes for plain \TeX. 
    \tubissue{10}(3), 385--386.
}
\lst\goossensma
   {Goossens M (1993):
   POSTSCRIPT en \LaTeX, de komplementariteit in de praktijk.
   MAPS 93.1, 101\dash113.
}
\lst\goossensmb
   {Goossens M, F Mittelbach, A Samarin (1993):
   The \LaTeX-companion. Addison-Wesley.
}
\lst\goossensmc
   {Goossens M, F Mittelbach, A Samarin (1993):
   Customizing \LaTeX's lists.
   MAPS 93.2, 177\dash183.
}
\lst\goossensmd
   {Goossens M, S.P.Q  Rahtz (1994):
   Colour slides with \LaTeX{} and Seminar.
   Baskerville, 4,1, 8\dash12.
}
\lst\goossensme
   {Goossens M, S.P.Q  Rahtz (1994):
   Simple colour design and colour in \LaTeX2$\epsilon$.
   Euro\TeX, 196\dash205.
}
\lst\grahamrla
   {Graham R.L, D.E Knuth, O Pastashnik (1989):
    Concrete Mathematics. Addison-Wesley.
    \annotation{The macros for formatting this book are available from the
     CTAN and known as gkpmac.tex.}
}
\lst\greeni
   {Green I (1992):
    citesort.sty.
    (From the file server.)
}
\lst\greeneam
   {Greene A.M (1989):
   \TeX reation\Dash Playing Games with \TeX's mind.
   \tubissue{10}(4), 691\dash705.
}
\lst\greenwadegd
   {Greenwade G.D (1993):
   The Comprehensive \TeX\ Archive Network\Dash CTAN.
   TUG '93. \tubissue{14}(3), 342\dash351.
   (Also MAPS 93.2, 133\dash140.)
}
\lst\griesd
   {Gries D (1983 snd printing):
    The science of programming.
    Springer-Verlag. ISBN 0-387-90641-x.
}
\lst\grootenhuisj
   {Grootenhuis J (1990):
    Typesetting SGML coded Mathematics.
    Paper presented at Markup'90. Charleston.
}
\lst\guittetc
   {Guittet C (1986): 
    FORMEX: une mise en practique des normes internationales. 
    SGML user's group. Bulletin, 1, 2.
}
\lst\gurariema
   {Gurari E.M (1989): 
   An introduction to the theory of computation.
   Computer Science Press.
}
\lst\gurariemb
   {Gurari E.M (1994): 
   \TeX{} \& \LaTeX\Dash Drawing \& Literate Programming.
   Mc Graw Hill. ISBN 0-07-025208-4.
}
\lst\gurariemc
   {Gurari E.M  (1994): 
   Writing with \TeX.
   Mc Graw Hill. ISBN 0-07-025207-6.
}
\lst\hafnerja
   {Hafner J (1992):
   Foil\TeX, a \LaTeX-like system for typesetting foils.
   \tubissue{13}(3), 347\dash356.
}
\lst\hagenja
   {Hagen J, A.F Otten (1994):
   PPCH\TeX: Chemische structuur formules in \TeX.
   MAPS 94.2, 167\dash177.
}
\lst\hagenjb
   {Hagen J (1994):
   Een meertalige interface naar \TeX.
   MAPS 94.2, 178\dash182.
}
\lst\hagenjc
   {Hagen J (1994):
   Sub- en Superscripts in Chemische Formules.
   MAPS 94.2, 183.
}
\lst\hamiltonb
   {Hamilton Kelly B (1989):
   The autodoc-option.
   \tubissue{10}(2), 274\dash284.
}
\lst\hamiltonba
   {Hamilton Kelly B (1990):
   Some macros to draw crosswords.
   \tubissue{11}(1), 103\dash119.
}
\lst\hamiltonh
   {Hamilton H (1989):
    Mastering \TeX{} with templates.
    TUG '89. \tubissue{10}(4), 541\dash548.
    \annotation{It has all to do with learning by example.}
}
\lst\hammingrw
   {Hamming R.W (1978): One man's view of computer science.
   Comm ACM ?\dash?. 
   Also in ACM Turing Award Lectures. The first twenty years 1966\dash1985.
   ACM Press. Addison-Wesley IBN 0-201-07794-9.
   \annotation{}
}
\lst\haralambousy
   {Haralambous Y (1992):
    \TeX\ conventions concerning languages. TTN, 1, 4, 3\dash10.
}
\lst\heckelp
   {Heckel P (1982):
    The elements of friendly software design.
    Warner Books. ISBN 0-446-38040-7.
}
\lst\hemelj
   {Hemel J, C.G van der Laan, R.C.G.M Lauwerier (1989):
    Het maken van transparanten voor overhead-projectie.
    RC-Rapport 23. 
    \annotation{In this report a set of 4 characteristic transparencies---a drawing,
      a bar-chart, a pie-chart, 
      a list of items with some formulas---is selected,
     and the aspects which come along when making these by hand,
     by Wordperfect, or by \LaTeX, are discussed. The results are shown and
     the needed amount of work for each approach is summarized among others.}
}
\lst\hendersonda
   {Henderson D (1989):
   Outline fonts with METAfont.
   \tubissue{10}(1), 36\dash38.
}
\lst\hendersondb
   {Henderson D (1989):
   Introduction to METAfont.
   \tubissue{10}(4), 467\dash480.
}
\lst\hendricksonaa
   {Hendrickson A (1985):
   Some diagonal line hacks.
   \tubissue{6}(2), 83\dash86.
   \annotation{The macros go wrong for (nearly) vertical lines.}
}
\lst\hendricksonab
   {Hendrickson A (1989):
   Macro\TeX.
}
\lst\hendricksonac
   {Hendrickson A (1990):
   Getting \TeX nical: Insights into \TeX\ macro writing \TeX niques.
   \tubissue{11}(3), 359\dash370.
}
\lst\hendricksonax
   {Hendrickson A (priv.\ comm.).
}
\lst\henricip
   {Henrici, P (1977): Applied and computational complex analysis.
    II. Special functions, integral transformations, asymptotics, continued
     fractions. John-Wiley.
}
\lst\herwijnenea
   {Herwijnen E van (1988): 
    Electronic submission of Physics
    articles to publishers. De $1^e$ Nederlandse
    SGML conferentie. SGML: De Consequenties.
    \annotation{Also published in: Computer Physics 
     Communications 57 (1989) 244\dash250:
     The use of text interchange standards 
     for submitting physics articles to journals.
     In the context of this paper the discussion of 
     SGML related to \TeX\ is relevant.}
}
\lst\herwijnene
   {Herwijnen E van (1990):
   Practical SGML. Kluwer.
}
\lst\herwijnenea
  {Herwijnen E van, N.A.F.M Poppelier, C.A Rowley (to appear):
   Standard DTDs and scientific publishing. 
   MAPS 92.2, 69\dash80.
}
\lst\herwijneneb
   {Herwijnen E van (priv. comm.): Streamlining publishing
    procedures.
}
\lst\herwijnenec
   {Herwijnen E van (1988): 
    TexT Processing at CERN I. 
    SGML Users' Group Bulletin, 3, 2, 39--54.
}
\lst\hoarecar
   {Hoare C.A.R (1980): The emperor's old clothes.
   Comm ACM ?\dash?. 
   Also in ACM Turing Award Lectures. The first twenty years 1966\dash1985.
   ACM Press. Addison-Wesley IBN 0-201-07794-9.
   \annotation{}
}
\lst\hobbyjda 
    {Hobby J.D (1992):
     A user's manual for METAPost.
    CSTR 162. AT\&T Bell Laboratories.
    (Since 1995 METAPost is in the public domain.)
}
\lst\hobbyjdb 
    {Hobby J.D (1992):
     Introduction to METAPost.
     Euro\TeX{} 92. 21\dash36.
}
\lst\hoenigajaa
   {Hoenig A.J (1987):
   \TeX{} does windows.
   \tubissue{8}(2), 212\dash216.
}
\lst\hoenigajab
   {Hoenig A.J (1989):
   Fractal images with \TeX.
   Proceedings TUG '89. \tubissue{10}(4), 491\dash497.
}
\lst\hoenigaja
   {Hoenig A.J (1990):
   Labelling figures in \TeX\ documents.
   TUG '90. \tubissue{12}(1), 125\dash128.
}
\lst\hoenigajb
   {Hoenig A.J (1991):
   When \TeX\ and METAfont talk:
   Typesetting on curved paths and other special effects.
   TUG91 proceedings. \tubissue{12}(3), 554\dash557.
}
\lst\hoenigajba
   {Hoenig A.J (1991):
   Typesetting along arbitrary curves with \TeX\ and METAfont.
   TUG91 proceedings.
}
\lst\hoenigajc
  {Hoenig A.J (1991):
  \TeX\ for new users. MAPS 91.2, 91\dash96.
}
\lst\hoenigajd
   {Hoenig A.J (1992):
   When \TeX\ and METAfont work together.
   Euro\TeX\ '92 proceedings, 1\dash19.
   (An updated version released in MAPS 93.1.)
}
\lst\hoenigaje
   {Hoenig A (1992): Q \& A. Partitioned Matrices.
   \tubissue{13}(1), 60\dash62.
}
\lst\hoenigajf
   {Hoenig A (1994): 
   Less is more: Complex page layouts and shapes with \TeX.
   TUG94 proceedings. \tubissue{15}(3), 232\dash243.
}
\lst\hooveraza
   {Hoover A.Z (1989):
   Using wordperfect 5.0 to create \TeX\ and \LaTeX\  documents.
   \tubissue{10}(4), 549\dash559.
}
\lst\hooverazb
   {Hoover A.Z (1991):
   Getting Postscript into \TeX\ and \LaTeX\ documents.
   TUG '91.  MAPS 91.2.
}
\lst\hooverazc
   {Hoover A.Z (1992):
   The key to successful support: knowing your \TeX\ and \LaTeX\ users.
   Euro\TeX{} '92 proceedings, 1\dash19.
   (Also MAPS 92.2.)
}
\lst\horakk
   {Horak K (priv. comm. 1992):
    Examples of (scientific) METAfont use.
    (Some have been encorporated in NTG's PR set.)
}
\lst\horakka
   {Horak K (1994):
    Fighting with big METAfont pictures
    when printing them reversely or landscape.
    Proceedings Euro\TeX{} 94, 105\dash107.
}
\lst\hornbkp
  {Horn B.K.P (1993):
   Where are the Math fonts?
   TUG '93. \tubissue{14}(3), 282\dash284.
}
\lst\hornbkpa
  {Horn B.K.P (1993):
   New from Y\&Y: complete bitmap-free \TeX{} packages!
   Flyer 8p.
   \annotation{Reviewed in Notices of the AMS by J.L Casti. 
    Very good with respect to
    encorporation of Postscript (product: DVIPSONE)
    and the accompanying previewer (product: DVIWindo).
    No virtual fonts are supported, and as
    argued by the author  there is no need for it to do so.}
}
\lst\horowitze
   {Horowitz E (1984): 
    Fundamentals of programming languages.
    Computer Science Press. ISBN 0-88175-004-2.
}
\lst\hosekd
  {Hosek D (1991):
   \TeX\ Output Devices.
   TUG Resource Directory, 133\dash158.
}
\lst\houtjfmj
    {Hout J.F.M.J, M.J.A Mirande, E.B Smuling (1981):
     Geven van hoorcolleges.
     Aula 807.
     \annotation{Apart from the useful survey aspects it supplies also references
      to Gagn\'e's work.}
}
\lst\isosgml
   {ISO (8879): Information Processing\Dash Text and Office
     Systems\Dash Standard Generalized Markup Language (SGML). 1986--10--15.
}
\lst\isosgmltr
   {ISO (TR9573): Information Processing\Dash SGML 
    Support Facilities\Dash Techniques for using SGML. 
    1988--09--12.
}
\lst\iwakumat
   {Iwakuma Tetsuo (1994):
   A guide to use Macros and Style files in \LaTeX.
   MAPS 94.2, 73\dash110.
}
\lst\jackowskibc
   {B Jascowski, M Ry\'cko (1994):
    Labyrinth of METAfont paths in outline.
    Proceedings Euro\TeX{} 94, 18\dash32.
}
\lst\janschcr
{J\"ansch C.R, U R\"ode, K Schnepper (1988):
 Macro expansion, a tool for the systematic development of scientific software.
 TUM-I8814.
}
\lst\jeffreya
  {Jeffrey A (1990): Lists in \TeX's mouth.
   \tubissue{11}(2), 237\dash244.
}
\lst\jeffreyab
  {Jeffrey A (1993):
   A Postscript font installation package written in \TeX.
   TUG '93. \tubissue{14}(3), 285\dash292.
}
\lst\jeffreyac
  {Jeffrey A (editor, 1993):
  Math font encodings: a workshop summary.
  TUG '93. \tubissue{14}(3), 293\dash295.
}
\lst\jensenk
   {Jensen K, N Wirth (1975): PASCAL user manual and report.
    Springer-Verlag.
}
\lst\jonesdm
   {Jones D.M (1992):
   A catalogue of \TeX{} macros.
   (From the file server.)
}
\lst\jurrienstaa
   {Jurriens T.A (priv. comm.):
   Supertabular.sty.
   (From the file server.)
}
\lst\jurrienstaaa
   {Jurriens T.A (1992): \TeX\ for everybody?
    Euro\TeX92.  
   \annotation{Experience \LaTeX\  teaching.}
}
\lst\jurrienstab
   {Jurriens, T.A (1991):
   Ladies and \LaTeX I-II-III.
   MAPS 91.2, 102\dash104, 92.1, 133\dash134, MAPS 92.2, 102\dash104.
}
\lst\jurrienstac
   {Jurriens T.A (1992): \TeX\ as database. MAPS92.2,
   100\dash101.
}
\lst\jurrienstad
   {Jurriens T.A (1992): 
   From observation to publication.
   \tubissue{14}(2), 123\dash126.
}
\lst\kabelschachta
   {Kabelschacht A (1987): 
   \cs{expandafter} vs.\ \cs{let} and \cs{def}, and
   a generalization of plain's loop.
   \tubissue{8}(2), 184\dash185.
}
\lst\kappertr
   {Kappert R (1992): scite.sty. (A compilation
    of the earlier versions of Arseneau and Green. 
    From the file server.)
}
\lst\kelderj
  {Kelder J, B van der Velde (1986):
    Dwangposities tegen \'e\'en tegenstander. Becht. A'dam. (Dutch).
    Translated from:
    Kelsey H.W (1985, paperback):
    Simple squeezes. Gollancz. London.
}
\lst\kelleram
   {Keller, A.M (1985):
    From text to \TeX\Dash coursenotes for \TeX\ for beginners.
    (TOPS 20 is outdated. emacs is still actual.)
}
\lst\khanhha
   {Khanh Ha (1990):
   Easy Table. \tubissue{11}(2), 250\dash264.
}
\lst\knappenja
   {Knappen J (1992): 
    Changing the appearance of Math. 
    Euro\TeX'92.
}
\lst\knesert
   {Kneser T (1990):
   \LaTeX-paragraphs floating around figures.
   \tubissue{12}(1), 28\dash30.
}
\lst\knuthdea
   {Knuth D.E (1968):
   The art of computer programming. Vol. I: Fundamental algorithms.
   Addison-Wesley.ISBN 0-201-03809-9.
}
\lst\knuthdeb
   {Knuth D.E (1969):
   The art of computer programming. Vol. II: Seminumerical algorithms.
   Addison-Wesley.LLOCC 67-26020.
}
\lst\knuthdec
   {Knuth D.E (1973):
   The art of computer programming. Vol. III: Sorting and searching.
   Addison-Wesley. LLOCC 67-26020.
}
\lst\knuthdeca
   {Knuth D.E (1974):
    Computer programming as an art.
   Comm ACM ?\dash?. 
   Also in ACM Turing Award Lectures. The first twenty years 1966\dash1985.
   ACM Press. Addison-Wesley IBN 0-201-07794-9.
   \annotation{}
}
\lst\knuthdeca
   {Knuth D.E (1979): Mathematical Typography. 
    Bulletin AMS, 1, 2, 345\dash372.
}
\lst\knuthdecb
   {Knuth D.E (1979):
   \TeX\ and METAfont: New directions in typesetting.
   Part 1 Mathematical Typography. 45p.
   Part 2 \TeX\ a system for technical text. 201p.
   Part 3 METAfont, a system for alphabet design. 105p.
   AMS. Digital Press. ISBN 0-932376-02-9.
   \annotation{A nice and handy book which explains the basic approaches in
    not too much detail.}
}
\lst\knuthdecc
   {Knuth D.E (1984):
   Literate Programming.
   The Computer Journal, 27, 2, 97\dash111.
}
\lst\knuthded
   {Knuth D.E (1984):
   Computers and Typesetting.
   \TB. Addison-Wesley.
   ISBN 0-201-13447-0 (hard cover)
   ISBN 0-201-13448-9 (soft cover).
   \annotation{For the correct printing look in the index
    for \cs{language}.
    \TeX, frozen in version $\pi$, 
    3.1415\dots}
}
\lst\knuthdee
   {Knuth D.E (1984):
   A course on METAfont programming.
   \tubissue{5}(2), 105\dash118.
}
\lst\knuthdeea
   {Knuth, D.E (1985): Recipes and fractions. 
    \tubissue{6}(1), 36\dash38.
}
\lst\knuthdef
   {Knuth D.E (1986):
   Computers and Typesetting.\TeX: the program.
   Addison-Wesley.
   \annotation{Reprint with corrections 1988, 
    a version dated after 1989 is needed.
   Look again for \cs{language} in the index.}
   ISBN 0-201-13437-3.
}
\lst\knuthdeg
   {Knuth D.E (1986):
   Computers and Typesetting. The METAfont book.
   Addison-Wesley.
   ISBN 0-201-13445-4.
}
\lst\knuthdeh
   {Knuth D.E (198?):
   Computers and Typesetting. METAfont: the program.
   Addison-Wesley.
}
\lst\knuthdehb 
   {Knuth D.E, P Mackay (1987):
    Mixing right-to-left texts with left-to-right texts.
    \tubissue{7}(1), 14--25.
}
\lst\knuthdehc 
   {Knuth D.E (1987):
    Saturday morning problem\Dash conclusion.
    \tubissue{8}(2), 211.
    \annotation{The principle of text flowing around a figure
    via an OTR with a `mock'-\cs{everyline}. Hoenig in TUG 94
    has elaborated the issue further.}
}
\lst\knuthdehd 
   {Knuth D.E (1987):
    Reply: Printing out selected pages.
    \tubissue{8}(2), 217.
    \annotation{Manmac's shipout for slected pages.}
}
\lst\knuthdehe 
   {Knuth D.E (1987):
    Fonts for digital halftones.
    \tubissue{8}(2), 135\dash270.
    \annotation{}
}
\lst\knuthdei
   {Knuth D.E (1989):
   The errors of \TeX.
   Software Practice and Experience, 19, 7, 607\dash685.
   (Also \tubissue{10}(4), 529\dash532.)
}
\lst\knuthdeib
   {Knuth D.E, T Larrabee, P.M Roberts (1989):
   Mathematical writing.
   MMA Notes, 14.
\annotation{With contributions by Paul Halmos, Leslie Lamport, Mary-Claire van Leunen,
Nils Nilsson, Rosalie Stemer, Jeff Ullman, and Herbert S. Wilf.}
}
\lst\knuthdej
   {Knuth D.E (1990):
   Virtual Fonts: More Fun for Grand Wizards.
   \tubissue{11}(1), 13\dash23.
}
\lst\knuthdek
{Knuth D.E, S Levy (1987):
 The CWEB System of Structured Documentation.
 (FTP: labrea.stanford.edu, in directory /pub/cweb)
}
\lst\kopkah
   {Kopka H, P.W Daly (1993):
 A guide to \LaTeX\Dash Document preparation for beginners and advanced users.
   Addison-Wesley. ISBN 0-201-56889-6.
}
\lst\kolodziejska
   {Ko{\l}odziejska H (1991):
   Go diagrams with \TeX.
   MAPS 91.2, 63\dash68.
   (From the file server.)
}
\lst\kopkah
   {Kopka H,  P.W Daly (1993):
    A guide to \LaTeX---Document preparation
    for beginners and advanced users.
    Addison-Wesley. ISBN 0-201-56889-6.
}
\lst\krimpenh
  {Krimpen H van (1986):
   Boek over het maken van boeken.
   Gaade Uitgevers. Veenendaal. ISBN 9-060-17521-2.
}
\lst\kuykenshjp
   {Kuykens H.J P (1994):
   MIDI2\TeX, een music\TeX{} tool.
   MAPS 94.2, 184\dash188.
}
\lst\laancg
   {Laan C.G van der (1984): (Graceful) Mixed Language
    Programming. Argonne National Laboratory Workshop.
}
\lst\laancga
   {Laan C.G van der, J.R Luyten (1988):
   Evaluation of K-talk.
   RC-RUG rapport 15.
   \annotation{Contains test collection for evaluating converters.
    The conclusion is that ordinary marked up text is no problem,
    but tables, math and graphics go wrong.}
}
\lst\laancgaa
   {Laan C.G van der (1989): 
    Teaching \TeX: critics and \LaTeX\ proposal. 
    Appendix V. Minutes $4^{th}$ NTG meeting.
}
\lst\laancgb
   {Laan C.G van der (1989):
   Typesetting Bridge via \LaTeX.
   \tubissue{10}(1), 113\dash116.
   (Also MAPS 91.2.)
}
\lst\laancgc
   {Laan C.G van der (1990):
   Typesetting Bridge via \TeX.
   \tubissue{11}(2), 265\dash276.
   (Pre-release GUTenberg Cahiers 5, and a copy in MAPS 91.2.)
}
\lst\laancgd
   {Laan C.G van der (1990):
   SGML(, \TeX\ and \dots).
   \tubissue{12}(1), 90\dash104.
   (Pre-release MAPS 90.2 and GUTenberg
   cahiers 5.
   It contains also an extensive bibliography 
   about SGML-\TeX\ relation.)
}
\lst\laancge
   {Laan C.G van der (1991):
   Math into BLUes.
   Part~I: Mourning. TUG '91. \tubissue{12}(3), 485\dash501.
   Part~II: Sing your song. Euro\TeX\ '91.
            GUTenberg Cahiers 10\&11, 147\dash170.
   (Pre-release MAPS 91.1.)
}
\lst\laancgf
   {Laan C.G van der (1992):
   Tower of Hanoi, revisited.
   \tubissue{13}(1), 91\dash94.
}
\lst\laancgg
   {Laan C.G van der (1992):
    Table Diversions.
    MAPS 92.2, 115\dash129.
    (An earlier version at Euro\TeX{} '92.)
}
\lst\laancgga
   {Laan C.G van der (1992):
    Spivak's \OE uvre.
    MAPS 92.1, 139\dash142.
}
\lst\laancgh
   {Laan C.G van der (1992):
    FIFO and LIFO sing the BLUes.
    \tubissue{14}(1), 54\dash59.   
    (An earlier version at Euro\TeX{} '92
      and MAPS 92.2.)
}
\lst\laancgi
   {Laan C.G van der (1992):
   Typesetting crosswords via \TeX, revisited.
   MAPS 92.2, 145-146.
   \annotation{Submitted TUGboat. An earlier version based upon \cs{halign} in
    Proceedings Euro\TeX\ '92, 217\dash224, and MAPS 92.1, 128\dash132.}
}
\lst\laancgj
   {Laan C.G van der (1992):
   Syntactic Sugar.
   TUG '93.
   \tubissue{14}(3), 310\Dash318.
   (Earlier versions in MAPS 92.2, abridged in GUST bulletin 1.)
}
\lst\laancgk
   {Laan C.G van der (1993):
   Manmac BLUes\Dash Or how to typeset a book via \TeX.
   MAPS 93.1, 171\dash191.
}
\lst\laancgl
   {Laan C.G van der (1993):
   AMS BLUes\Dash Professionals at work.
   MAPS 93.1, 192\dash212.
}
\lst\laancgm
   {Laan C.G van der (1993):
   Sorting in BLUe.
   MAPS 93.1, 149\dash170.
   (Abrid\-ged TUG '93. \tubissue{14}(3), 319\dash328.)
}
\lst\laancgo
   {Laan C.G van der (1993):
   Typesetting number sequences.
   MAPS 93.1, 145\dash148.
   \annotation{Submitted TUGboat. No longer relevant when BLUe's Bib is used.}
}
\lst\laancgp
   {Laan C.G van der (1993):
   Matrix icons via \LaTeX.
   MAPS 93.2, 211\dash212. 
   (Also note in TTN 3.3, 1994.)
}
\lst\laancgq
   {Laan C.G van der (1993):
   BLUe's Bibliography\Dash A ge\-ne\-ric ap\-proach.
   MAPS 93.2, 205\dash210.
   \annotation{Selective loading has been added in MAPS 94.1.}
}
\lst\laancgr
   {Laan C.G van der (1993):
   What is \TeX{} and \MF{} all about? 
   MAPS 93.2, 67\dash87.
   (Also: proceedings `PD, Shareware, Freeware' 
    meeting NLUUG, November 1993. CTAN 
    and PTF CD in \dots/whatstex in 
    ctan/info/info.zip)
}
\lst\laancgs
   {Laan C.G van der (1994):
   TUGboat BLUes\Dash How \TeX ies do it.
   MAPS 94.1, 119\dash150.
}
\lst\laancgt
   {Laan C.G van der (1994):
   BLUe's Trans\-paren\-cies\Dash From report to transparency.
   MAPS 94.1, 111\dash114.
}
\lst\laancgu
   {Laan C.G van der (1994):
   BLUe's Verbatim\Dash The selection.
   MAPS 94.1, 116\dash118.
}
\lst\laancgv
   {Laan C.G van der (1994):
   BLUe's Format\Dash The best of both worlds.
   MAPS 94.2, 189\dash199.
   (Abridged. Euro\TeX\ '94, 33\dash44, also abridged.
    Unabridged version from the CTAN.)
}
\lst\laancgw
   {Laan C.G van der (1994):
   BLUe's Biblio\-gra\-phy\Dash Se\-lec\-tive loading.\\
   MAPS~94.1, 115.
}
\lst\laancgx
   {Laan C.G van der (1994):
   BLUe's Graphs\Dash Simplicity, aha!
   MAPS 94.2, 200\dash206.
}
\lst\laancgy
   {Laan C.G van der (1994):
   BLUe's Cross-Referen\-cing\Dash A one-pass approach.
   MAPS 94.2, 207\dash209.
}
\lst\laancgz
   {Laan C.G van der (1995):
   Publishing with \TeX\Dash BLUe's Selection.
   MAPS Special. %CWI tract.
   See CTAN /pub/archive/info/pwt.
}
\lst\laancgA
   {Laan C.G van der (1994):
   Paradigms\Dash Headache?
   MAPS 94.2, 212\dash214.
}
\lst\laancgB
   {Laan C.G van der (1994):
   Paradigms\Dash Plain's items extended.
   MAPS 94.2, 210\dash211.
}
\lst\laancgC
   {Laan C.G van der (1995):
   BLUe's Typesetting of Pascal\Dash Lean and mean.
   MAPS 95.1, 208\dash210.
   \annotation{This early paper has been improved. The typesetting 
    of array brackets is possible now.}
}
\lst\laancgD
   {Laan C.G van der (1995):
   BLUe's Index\Dash The principle and some more.
   MAPS 95.1, 178\dash186.
   \annotation{A more user oriented version has been appeared in a chapter of the 
    PWT guide and also in the proceedings of Euro\TeX~95.}
}
\lst\laancgE
   {Laan C.G van der (1995):
   BLUe's Format Databases\Dash Stay organized.
   MAPS 95.1, 170\dash177.
}
\lst\laancgF
   {Laan C.G van der (1995):
   Paradigms\Dash Two-part macros.
   MAPS 95.1, 200\dash204.
}
\lst\laancgG
   {Laan C.G van der (1995):
   Paradigms\Dash Parameterization I \Dash\ Options.
   MAPS 95.1, 205\dash207.
}
\lst\laancgH
   {Laan C.G van der (1995):
   Use of \TeX{} as  databases with any \TeX.
   Proceedings Euro\TeX~95, 273\dash278.
}
\lst\lammarschj
   {Lammarsch J (1993):
   A new typesetting system: is it really necessary?
   TUG '93. \tubissue{14}(3), 167\dash170.
}
\lst\lamportla
   {Lamport L (1985?):
   Bezier.sty.
   \annotation{(For drawing arbitray lines within the picture environment.
    From the file server. See however also gkpmac.}
}
\lst\lamportlb
   {Lamport L (1985):
   \LaTeX\ User's Guide \& Reference Manual.
   Addison-Wesley. ISBN-0-201-15790-X.
   \annotation{With respect to \BibTeX\ the following characteristics 
   from UKTUG meeting of 1990.
   Advantages: clear layout of database, unique identifyer for elements,
   compatibility with Scribe databases, explicit statement of citation type,
   extensible style language, uses \LaTeX's cross-referencing, easy to
   edit output, can be mixed with non-automatic generated bibliographies,
   cross-referencing and abbreviations.
   Disadvantages: multiple passes (\LaTeX, \BibTeX, \LaTeX, \LaTeX);
   have to remember unique references, style language is opaque,
   database is very wordy and boring to enter.}
}
\lst\lamportlc
   {Lamport L (1987):
   Makeindex: An index processor for \LaTeX.
   (From the file server.)
}
\lst\langmyhrda
   {Langmyhr D (1994):
   How to make your own documentstyle in \LaTeX2e.
   Euro\TeX'94, 167\dash175.
   (Also MAPS 94.2, 65\dash72.)
}
\lst\larsonje
   {Larson J.E (1989):
   A chess font for \TeX.
   \tubissue{10}(3), 351.
}
\lst\lauwerierhab
   {Fractals\Dash meetkundige figuren in eindeloze herhaling.
    Aramith. ISBN/NUGI-90-6834-031X/619.
   \annotation{Some basic programs of the fractals are included.}
}
\lst\lavaudma
   {Lavaud M (1991):
   As\TeX, or developing a multi-windowing environment for research based on
   \TeX.
   Euro\TeX\ '90. Cahiers Gutenberg.
   (Developments Euro\TeX\ '92, and TUG '93. \tubissue{14}(3), 238\dash244.)
}
\lst\lavaudmb
   {Lavaud M (1993):
   Disquettes PC-GUT: \TeX\ \& Co pour PC.
   (With: manual d'installation, revised 25/6/93.)
}
\lst\lawrencem
  {Lawrence M. (1988): 
   The complete book on hand evaluation. Max Hardy.
   ISBN 0-939460-27-0.
}
\lst\lebanb 
   {Leban B (1985): 
   A solution to the Tower of Hanoi problem using \TeX.  
   \tubissue 6(3), 151\dash154.           
\annotation{Review. Leban requires as input the number of disks and the first tower as
a sequence of one-digit numbers.
This means that creation of the initial tower is not part of the paper.
Furthermore, Leban develops a set of Lisp like functions for \TeX.
Apparently Knuth's List macros, \TeX book Appendix D.2, have been overlooked.
Leban's small list processing system is an example of reinventing the wheel,
with the concept of an active list separator absent. As a consequence
the printing of the towers is done by recursion which is not necessary
when using Knuth's list separator appropriately to `execute' the list.}
}
\lst\leskme
   {Lesk  M.E (1979):  
    Tbl\Dash a program to format tables.
    UNIX manual,157--174.
}
\lst\louarnp
   {Louarn P (1991):
    Instructions to Euro\TeX{} and GUTenberg '91 authors.
}
\lst\louarnpa
  {Louarn P (1991): Manipulons une matrice. 
  Cahiers GUTenberg 8. 59\dash61. 
  \annotation{His step-by-step  explanation is very clear. The example
   does not contain braces connecting cells, 
   or sub parts.}
}
\lst\makeindex
   {Makeindex (1987):
    Makeindex.
    \annotation{From the file server. See also Chen and Harrison, Lamport (1987),
     Salomon for a plain variant. Since 1995 there is BLUe's Index.}
}
\lst\markit
   {MARK-IT (1989): SGML Parser, version 2. Sobemap NV,
    Place du Champ de Mars 5, Bte 40, 1050 Bruxelles.
}
\lst\martincr
   {Martin C.R (1990):
    \TeX\ for \TeX nical typists. 
    \tubissue{11}(3), 425\dash428.
}
\lst\mattese
   {Mattes E (1990?):
   em\TeX.
   (PD version for MS-DOS PCs, in general use. From the archives.)
}
\lst\mauss 
 {Maus S (1991): An expansion power lemma.
 \tubissue{12}(2), 277.
}
\lst\mcclurem
   {McClure M (1989): 
    \TeX\ macros for COBOL syntax diagrams.
    TUGboat, 10, 4, 743--750.
}
\lst\meulenbroekd
   {Meulenbroek D (1989): 
    Nieuwsblad v/h Noorden. December. 
   (Dutch)
}
\lst\meyerse
   {Meyers E, F Paige (199?): \TeX sis. 
   \annotation{Provides \cs{ruledtable} and documentation in 100p. 
    \TeX{} file.
    From lifshitz.ph.utexas.edu, directory /texsis.}
}
\lst\minskym
   {Minsky M (1969): 
   Form and content in computer science.
   Comm ACM ?\dash?. 
   Also in ACM Turing Award Lectures. The first twenty years 1966\dash1985.
   ACM Press. Addison-Wesley IBN 0-201-07794-9.
   \annotation{}
}
\lst\mittelbachfa
   {Mittelbach F (1989):
   An environment for multi-column output.
   \tubissue{10}(3), 407\dash415.
}
\lst\mittelbachfab
   {Mittelbach F (1989):
   The doc-option..
   \tubissue{10}(2), 245\dash273.
}
\lst\mittelbachfb
   {Mittelbach F (1989):
   An extension for the \LaTeX\ theorem environment.
   \tubissue{10}(3), 416\dash426.
}
\lst\mittelbachfc
   {Mittelbach F (1991):
   E-\TeX: Guidelines for future \TeX\ extensions.
   \tubissue{11}(3), 337\dash345.
  (Redistributed: MAPS 93.1)
}
\lst\mittelbachfd
   {Mittelbach F, R Sch\"opf (1989):
   The new font selection scheme.
   For \TeX{} packages.
   \tubissue{10}(2), 222\dash238.\\
   User interface to standard \LaTeX.
   Reprint: \tubissue{11}(2), 297\dash305.
   (See also NFSS 2, in Goossens, Mittelbach Samarin.)
}
\lst\mittelbachfe
   {Mittelbach F, R Sch\"opf (1990):
   Towards \LaTeX~3.0.
   \tubissue{12}(1), 74\dash79.
   (Also MAPS 90.2.)
}
\lst\mittelbachff
   {Mittelbach F, R Sch\"opf (1992):
   The Pursuit of quality.
   Electronic Publishing '92. ISBN 0-521-43277-4.
   (Redistributed MAPS 92.2.)
}
\lst\mittelbachffb
   {Mittelbach F, C.A Rowley (1993):
   The \LaTeX3 project.
   MAPS 93.1, 95\dash99.
   (Also in various early nineties proceedings.)
}
\lst\mittelbachfg
   {Mittelbach F, C.A Rowley, M.J Downes (1993):
   Volunteer work for \LaTeX3 project.
   \tubissue{13}(4), 510\dash515.
}
\lst\mcclurem
   {McClure M (1989):
   \TeX\ macros for COBOL syntax diagrams.
   \tubissue{10}(4), 743\dash750.
}
\lst\modestmf
   {Modest M.F (1989):
   Using \TeX\ and \LaTeX\ with Wordperfect5.0.
   \tubissue{10}(1), 67\dash72.
}
\lst\nagyd
   {Nagy Dezs\"o (1989):
   A bar chart in \LaTeX.
   \tubissue{10}(2), 239\dash240.
}
\lst\nearingj
   {Nearing J (1989): Extended equation numbering 
    in plain \TeX.
    \tubissue{10}(1), 82\dash88.
}
\lst\oostrumpa
   {Oostrum P van (1989): 
   Fancyheadings.
   From the fileserver. 
}
\lst\oostrumpb
   {Oostrum P van (1991):
   Program text generation with \TeX\slash\LaTeX.
   MAPS 91.1, 99\dash105.
   (A survey of the available tools.)
}
\lst\palaisr
   {Palais R (1992):
    Moving a fixed-point. \tubissue{13}(4), 425\dash432.
}
\lst\paperts
   {Papert S (1980):
    Mindstorms---Children, computers, and powerful ideas.
    Harvester studies in cognitive science; 14.
    ISBN 0-85527-163-9.
}
\lst\paternotter
   {Paternotte R (1989): Dwangneurose.
    De {\bf E}nige {\bf G}oede 
    {\bf B}ridge {\bf C}ourant. 
    December. (Dutch)
}
\lst\petryckilj
   {Petrycki L.J (1991): Comparing \TeX\ and 
    traditional typesetting for the composition of a textbook.
    \tubissue{12}(3), 359\dash366.
}
\lst\pittmanje
   {Pittman J.E (1988):
    Loopy.\TeX. \tubissue{9}(3), 289\dash291.
}
\lst\polyaga
   {Polya G (1957): 
    How to solve it. Anchor.
}
\lst\polyagb
   {Polya G (1954): 
    Mathematics and plausible reasoning. 
    I. Induction and analogy in Mathematics.
    ISBN 0-691-08005-4. Princeton University Press.
}
\lst\polyagc
   {Polya G (1954): 
    Mathematics and plausible reasoning. 
    II. Patterns of plausible inference.
    L.C. Card 68-56327. Princeton University Press.
}
\lst\poppeliernafm
   {Poppelier N.A.F.M (1990):
   SGML and \TeX\ in scientific publishing.
   \tubissue{12}(1), 105\dash109. (Also MAPS 90.2)
}
\lst\quinlre
   {Quin L.R.E (1990):
   Summary of METAfont fonts available.
   \TeX MaG, 4, 6, 1990
   (Also MAPS 91.1.)
}
\lst\rahtzspq
   {Rahtz S.P.Q (1987): Bibliographic tools.
    Literary and linguistic computing, 2, 4, 231\dash241.
}
\lst\rahtzspqa
   {Rahtz S.P.Q, M Burbank (1993):
    Guidelines for Proceedings of the 1993 Annual Meeting of the \TeX{} Users
    Group.
    TUG Office.
}
\lst\rahtzspqaa
   {Rahtz S.P.Q (1993):
    Essential NFSS2, version 2. 
   \tubissue{14}(2), 132\dash137.
   (The abstract copied from the article: 
    This article offers a user's view of the New Font Selection Scheme, version 2. 
    It describes the reasons for using the NFSS; 
				the differences a user will encounter between NFSS and old \LaTeX;
    what it will be like installing and using NFSS2;
    some special situations in mathematics; and
    an overview of the advanced NFSS2 commands for describing new fonts.)
}
\lst\rahtzspqb
   {Rahtz S.P.Q (1994):
    Implementing the extended \TeX{} layout
    using \PS{} fonts.
    \tubissue{14}(2), 107\dash117.   
}
\lst\raichleb
   {Raichle B (1993):
    In: V. Eijkhout. Oral \TeX; Erratum.
    \tubissue{13}(1), 75.
}
\lst\raichleba
     {Raichle B (priv.\ comm.): Sorting in \TeX's mouth (revisited).
      Proceedings Euro\TeX{} 94. 53\dash58. Reprinted in MAPS 95.1.
     \annotation{Bernd Raichle reported at DANTE's 1994 Februari meeting about
     sorting numbers in \TeX's mouth in the spirit of the work of
     Jeffrey. Although his algorithms are of order $n^2$ the execution
     time is good. The only drawback for practice is that it is restricted
     to numbers so far. For Euro\TeX{} '94 he has extended his work
     with quicksort in the mouth.}
}
\lst\raichlebb
     {Raichle B (priv.\ comm.): Orale Spielereien.
     \TeX nische Kom\"ode. 
     \annotation{Bernd Raichle started in 1994  a series of notes exploiting
     the mouth processing of \TeX.\\
     I. The n-asteriks is studied in depth. A completely expandable \LaTeX{}
        \cs{Romannumeral} proposal is included.\\
     II. Here the digestive processing of the \TeX{} engine is explained.
        The explained n-asteriks solution is intriguing\Dash if not for the use
        of \cs{uccode}\Dash and probably the fastest.
}
}
\lst\ramekmb
   {Ramek M (1988):
   Chemical structure formulae and X/Y diagrams with \TeX.
   Proceedings Euro\TeX\ '88, 227\dash258.
}
\lst\readd
   {Read D (priv.comm.):
   Some ideas to improve \LaTeX.
   \annotation{Report with suggestions about
   \LaTeX\ implementation,  SGML-based.}
}
\lst\reidtj
   {Reid T.J (1987):
    Floating figures at the right\Dash and\Dash Some random text for testing.
   \tubissue{8}(3), 315\dash320.
}
\lst\rokickyta
  {Rokicky T (199?): 
   DVIPS.
 }
\lst\rokickytb
  {Rokicky T (1994): 
   Driver support for color in \TeX: Proposal and Implementation.
  \tubissue{15}(3), 205\dash2126.
}
\lst\rogersdf
    {Rogers D.F (1992): On contrarian views. 
     \TeX line 14.  2\dash3.
}
\lst\rubinsteinza
   {Rubinstein Z (1989):
   Chess printing via METAfont and \TeX.
   \tubissue{10}(2), 170\dash172.
   (With erratum in \tubissue{10}(3), 359.)
}
\lst\rubinsteinzb
   {Rubinstein Z (1989):
   Printing annotated chess literature in natural notation.
   \tubissue{10}(3), 387\dash390.
}
\lst\ryckom
   {Ry\'cko M, B Jackowski (1993):
   \TeX{} from {\tt\char92indent} to {\tt\char92par}.
   TUG '93. \tubissue{14}(3), 171\dash176.
}
\lst\salomonda
   {Salomon D (1989):
   Macros for indexing and table of contents preparation.
   \tubissue{10}(3), 394\dash400.
   \annotation{Comments by Breitenlohner (1990): \tubissue{11}(1)62,
   with respect to writing long records to {\tt\char92write}
   streams. In 1994 he made \cs{makeindex} available
   for plain \TeX.}
}
%\lst\salomondb
%   {}
\lst\salomondc
   {Salomon D (1990):
   Output Routines Examples \& Techniques.
   Part~I: Introduction \& Examples. \tubissue{11}(1), 69\dash85.
   Part~II: OTR Techniques. \tubissue{11}(2), 212\dash236.
   Part~III: Insertions. \tubissue{11}(4), 588\dash
   605.
   \annotation{Incorporated in his courseware: Insights and Hindsights.}
   Part~IV: Horizontal Techniques. \tubissue{15}(1), 28\dash39.
}
\lst\salomondd
   {Salomon D (1992):
   Arrows for technical drawings.
   \tubissue{13}(2), 146\dash149.
}
\lst\salomonde
   {Salomon D (1992):
   Creating shaded rectangles with POSTSCRIPT.
   \tubissue{13}(3), 327\dash329. (Also MAPS 92.2.)
}
\lst\salomondf
   {Salomon D (1992):
   DDA methods in \TeX.
   \tubissue{10}(2), 207\dash216.
}
\lst\salomondg
   {Salomon D (1992):
   NTG's Advanced \TeX\ course: Insights and Hindsights.
   MAPS Special, $\approx500p.$
}
\lst\salomondh
   {Salomon D (1995):
   The advanced \TeX book. 
   Springer-Verlag. ISBN 0-387-94556-3.
}
\lst\salomondx
   {Salomon D (priv.\ comm.).
}
\lst\samuelal
   {Samuel A.L (1985):
    First grade \TeX\Dash A beginners \TeX\ manual.
    \TeX niques 11.
    \annotation{Beautiful, obligatory reading! Even for \LaTeX\ devotees,
     and for every novice. The layout is nice too. Only some 30p.}
}
\lst\sankers
   {Sankar S (1989):
   APE\Dash a set of \TeX\ macros to to format ADA programs.
   \tubissue{10}(1), 89\dash97.
}
\lst\schellera
   {Scheller A (1989): 
   Experience with SGML in the real world.
   Advisory Group on Computer Graphics workshop, Rutherford.
   \annotation{Work reported from DAPHNE-project: Document Application Processing in a
   Heterogeneous Network Environment.}
}
\lst\schoepfra
   {Sch\"opf R (1989):
   Drawing histogram bars inside the \LaTeX\ picture-environment.
   \tubissue{10}(1), 105\dash108.
}
\lst\schoepfrb
 {Sch\"opf R (1989):
 A new implementation of the \LaTeX\ {\tt verbatim[*]} environments.
 \tubissue{11}(2), 284\dash296.
}
\lst\schrodj
  {Schrod J (1992):
   The DVI Standard, level 0. The TUG DVI Driver standards committee.
   \tubissue{13}(1), 54\dash57.
}
\lst\schumacherefa
  {Schumacher E.F (1973):
  Small is beautiful.
  Blond \& Briggs, London.
}
\lst\schumacherefb
  {Schumacher E.F (1979):
  Good Work.
  Jonathan Cape Ltd, London.
}
\lst\schwarzn
   {Schwarz N (1987):
   {\em Einf\"uhrung in \TeX}. Addison-Wesley.
    (Translated into English with co-author 
     J. Krieger (1990): Introduction to \TeX.
     Addison-Wesley. Also into Dutch.)
}
\lst\schwarzhr
    {Schwarz H.R, H Rutishauser, E Stiefel (1972):
     Numerik symmetrischer Matrizen. 
     Teubner. (German)
}
\lst\seroulr
   {Seroul R (1989): 
    Le petit livre de \TeX. Inter-\'Editions. 
    Paris.
}
\lst\sewellw
   {Sewell W (1989):
    Weaving a program\Dash Literate programming in WEB.
    Van Nostrand. ISBN 0-442-31946.
}
\lst\sewellwa
   {Sewell W (1987):
    Multiple changefiles: The adventure continues.
    \tubissue{8}(2), 117\dash118.
}
\lst\sgmlug
   {SGML User's Group (Newsletter): (Editorial
    address: Pindar Infotek, 2 Grosvenor Road, Wallington, 
    Surrey SM6 0ER, UK.)
}
\lst\siebenmannl
   {Siebenmann L (1992):
Elementary text processing and parsing in \TeX\Dash The appreciation of tokens.
    \tubissue{13}(1), 62\dash73.
}
\lst\smedingar
   {Smedinga R (1991):
   Hoe met \LaTeX\ een boek gemaakt kan worden.
   MAPS 91.2, 97\dash101.
}
\lst\smithjma
   {Smith J.M (1987): The standard generalized markup language
    (SGML): Guidelines for editors and publishers.
    British National Bibliography Research Fund Report 26.
    ISBN 0-7123-3111-5.
}
\lst\smithjmb
   {Smith J.M (1987): The standard generalized markup language
    (SGML): Guidelines for authors.
    British National Bibliography Research Fund Report 27.
    ISBN 0-7123-3112-3.
}
\lst\southallra
   {Southall R (1984):
   First principles of typographic design for document production.
   \tubissue{5}(2), 79\dash90.
   (Corrigenda (1985): \tubissue{6}(1), p.6.)
}
\lst\southallrb
   {Southall, R (1985):
   Designing a new typeface via METAfont.
   STAN-CS-85-1074.
}
\lst\sowafa
   {Sowa F (1991):
   Graphics and halftones with BM2font.
   TUG '91. \tubissue{12}(4), 534\dash538.
}
\lst\sowafb
   {Sowa F (1994):
   Printing colour pictures.
   Euro\TeX'94, 176\dash181.
   TUG 94, \tubissue{15}(3), 223\dash227.
}
\lst\sperbergmcq
   {Sperberg-McQueen C.M, L Bernard (1990):
    ACH-ACL-ALLC. Guidelines for the encoding and 
    interchange of machine readable texts.
}
\lst\spivakmda
 {Spivak M.D (1986):
 The Joy of \TeX\Dash\AmSTeX.
 AMS. ISBN 0-8218-2999-8.
 (Updated 2$^{nd}$ printing 1990.)
}
\lst\spivakmdb
  {Spivak M.D (1989):
  \LAMSTeX\Dash The Syn\-thesis.
  \TeX\-plora\-tors Corporation.
}
\lst\spivakmdc
  {Spivak M.D (1991):
  \LAMSTeX\Dash The wizards manual.
  \TeX\-plora\-tors Corporation.
}
\lst\swansone
   {Swanson E (1986):
   Mathematics into Type.
   AMS.
}
\lst\swonkgl
   {Swonk G.L (1991):
   \LaTeX\ tree drawer.
   \tubissue{12}(2), 286\dash289.
}
\lst\taupind
   {Taupin D (1990):
   Musique en \TeX.
   Cahiers GUTenberg, 5, 62\dash69.
   (Updated English version MAPS 92.1.)
}
\lst\taylorp
   {Taylor P (1992):
   The future  of \TeX.
   In: Proceedings Euro\TeX\ '92.
   235\dash254. (Reprinted in \tubissue{13}(4), 433\dash442.)
}
\lst\taylorpb
   {Taylor P (1993):
   NTS: The future  of \TeX?
   TUG '93. \tubissue{14}(3), 177\dash182.
}
\lst\taylorpba
   {Taylor P (1994):
   $\epsilon$-\TeX{} and NTS: a status report
   Euro\TeX'94, 182\dash187.
}
\lst\taylorpc
   {Taylor P (1993):
   A pragmatic approach to paragraphs.
   \tubissue{14}(2), 138\dash140.
}
\lst\taylorpd
   {Taylor P (1994):
   Defensive programming in \TeX:
   towards a better class of a \TeX{} macro.
   Proceedings Euro\TeX{} 94, 69\dash82.
}
\lst\temmenm
   {Temme N.M (1990): 
    Speciale functies in de mathematische
    fysica. Epsilon 15. ISBN 90-5041-019-7. 
    (Dutch)
}
\lst\thielec
    {Thiele C (1993):
     The future of \TeX{} and TUG.
   TUG '93. \tubissue{14}(3), 162\dash166.
}
\lst\thieleca
    {Thiele C (1987):
     What constitutes a well-documented macro?
     \tubissue8(3), 307\dash308.
}
\lst\tobing
   {Tobin G (198?):
    METAfont for beginners.
    (From the CTAN.)
}
\lst\tofstedd
   {Tofsted D (1990):
   An improved chess font.
   \tubissue{11}(4), 542\dash544.
}
\lst\treebusk
   {Treebus K (1988):
   Tekstwijzer, een gids voor het grafisch verwerken van tekst.
   SDU. Den Haag.
}
\lst\tugpub
   {TUG (publications):
    TUGboat, TTN, \TeX niques.
\\  (TUGboat: Scholarly quarterly of TUG, with the proceedings of the annual
             meeting as special issue, and the resource directory as
             supplementary issue. From 1980 onward.
    The style files involved are {\tt tugboat.cmn}, 
    and the styles {\tt tug\-boat}, and
    {\tt ltug\-boat} available from the (CTAN) archives.
\\  \TeX niques: Special themed editions, with no 1 to 14 of 1993)
     TTN: A portable quarterly newsletter of TUG. From 1990 onward.)
}
\lst\tutelaersp
   {Tutelaers P (1991):
   A font and a style for typesetting chess using \LaTeX\ or \TeX.
   MAPS 91.2, 41\dash45. (Also \tubissue{13}(1), 85\dash90.)
}
\lst\urbanm
   {Urban M (1986):
    An introduction to \LaTeX.
    TRW Software Productivity Project.
    \TeX niques 9.
}
\lst\vensej
   {Vens E.J (1992):
    Incorporating POSTSCRIPT fonts in \TeX.
    In: Proceedings Euro\TeX\ '92, 173\dash181.
    (Also in MAPS 92.2.)
}
\lst\vignaudd
   {Vignaud D (1989):
    L'\'edition structr\'ee dans les documents, 
    SGML applications \`a l'\'edition fran\c caise. 
    \'Editions du Cercle de la Librairie. Paris.
}
\lst\vriesh
   {Vries H de (1990): Biedwedstrijd.
    De {\bf E}nige {\bf G}oede 
   {\bf B}ridge {\bf C}ourant. Maart. (Dutch)
}
\lst\warmerj
   {Warmer J, S van Egmond (1989):
    The implementation of the Amsterdam SGML Parser.
    EP-ODD, 2, 2, 65\dash90.
}
\lst\whitneyrf
   {Whitney R.F, B.N Beeton (1989):
   TUGboat authors' guide.
   \tubissue{10}(3), 378\dash385.
   (Updated versions via the file server.)
}
\lst\wichuramj
   {Wichura M.J (199?):
   The \PiCTeX\ manual.
   \TeX niques, 6.
   (${\approx}\$30,$\dash.)
}
\lst\wichuramja
    {Wichura M.J (1990): 
     Showing-off math macros. 
     \tubissue{11}(1), 57\dash61.
}
\lst\wilkinsonjh
   {Wilkinson J.H (1965): 
    The Algebraic Eigenvalue Problem. 
    Oxford University Press.
}
\lst\williamsl
   {Williams L, L Hall (1990):
   Increased efficiency using advanced EDT editing features.
   \tubissue{11}(3), 421\dash424.
}
\lst\williamst
   {Williams T, C Kelley (199?):
   GNUplot: an interactive plotting program.
   Version 3.
}
\lst\wilsonir
   {Wilson I.R, A.M Addyman (1983, second edition, reprint):
    A practical introduction to PASCAL with BS 6192.
    Macmillan Press Ltd. ISBN 0 333 3340 3.
}
\lst\winninkjj
   {Winnink J.J (editor, 1993):
   NTG's PR set.
   MAPS '93 Special, $\approx25$p.
   (Contains: Wat is \TeX?, Hoenig's \TeX\ for new users, 4\TeX/em\TeX\
    information, and examples with respect to
    math, tables, graphics, and the hobbies bridge, chess, and music.)
}
\lst\winogradt
   {Winograd T, B Paxton (1980):
   An indexing facility for \TeX.
   \tubissue{1}(x), A1\dash A12.
   \annotation{The work uses \TeX\ version 1.x and a Lisp
   program. It does not contain such a clear user guide as for makeindex.
   It provides numbers in range notation and allows for
   subentries, and cross-references like see \dots and see also \dots.
   The program can merge files. The program has been converted into
   Pascal some years later. The latter version is available on file servers.}
}
\lst\wirthna
   {Wirth N (1973): 
   Systematic Programming: An introduction.
   Prentice-Hall. ISBN 0-13-880369-2.
}
\lst\wirthnb
   {Wirth N (1976): 
   Algorithms $+$ Data Structures $=$ Programs.
   Prentice-Hall. ISBN 0-13-022418-9.
}
\lst\wittbeckera
   {Wittbecker A (1988):
   Making paragraphs.
   \tubissue{9}(3), 272\dash276.
}
\lst\wittbeckeraa
   {Wittbecker A (1989): 
   \TeX\ enslaved. Proceedings TUG89. Stanford. 
   \annotation{Advantages and disadvantages of \TeX-formatter with SGML
   ``front-end'' are discussed, related to DEC's VAX Document.}
}
\lst\wonnebergerr
   {Wonneberger R (1987): Kompaktf\"uhrer \LaTeX.
    Addison-Wesley.
}
\lst\yasukis
   {Ysuki Saito (1987):
    Report on J\TeX: a Japanese \TeX.
   \tubissue{8}(2), 103\dash116.
}
\lst\youngenra
  {Youngen R (1989):
  Computers and Mathematics.
  Notices AMS.
  \annotation{Discusses \TeX, \LaTeX\
   and \AmSTeX, summarizing also the relative advantages.
  Since the publication of this note \AmS-\LaTeX\ has been released,
  and Spivak has provided \LAMSTeX.  Of course these are not dealt with.}
}
\lst\youngenrb
 {Youngen R (1991):
  Typesetting with \TeX\ at the AMS.
  4p.
 \annotation{A nice survey of why-and-what AMS is using \TeX\  for.}
}
\lst\youngenrc
 {Youngen R (1992):
 \TeX-based production at AMS.
  MAPS 92.2, 63\dash68.
}
\lst\zalmstraj
  {Zalmstra J, D.F. Rogers (1989): 
  A page make-up macro.
  \tubissue{10}(1), 73--81.
}
\lst\zandta
  {Zandt T van (1992): 
  PStricks. Princeton University.
}
\lst\zandtb
  {Zandt T van, D Girou (1994): 
   Inside PStricks. 
  \tubissue{15}(3), 239\dash246.
}
\lst\zbikowskir
  {Zbikowski R (1993):
   Hacker's guide to AMSfonts and NFSS in the context of \LaTeX.
   \tubissue{14}(1), 62\dash69.
}
\lst\zlatuskaja
   {Zlatuska J (1991):
   Virtual fonts with accented letters.
   Cahiers GUTenberg 10\&11, 57\dash68.
}
\lst\zlatuskajb
   {Zlatuska J (editor, 1992):
    Proceedings Euro\TeX\ '92.
    Masarykova universita, Brno. ISBN 80-210-0480-0.
}
\lst\zusek
   {Zuse K (1976):
    The Plankalk\"ul,
    Gesellschaft f\"ur Mathematik und Datenverarbeitung,
    Bonn. BMFT-GMD-106.
}
%%end data
\endinput