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
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<!-- updated up to 'bibex' -->
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META http-equiv="Content-Style-Type" content="text/css">
<TITLE>The TeX Catalogue OnLine, Topic Index</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="./texcatalogue.css">
</HEAD>
<BODY>
<H1><A name="top"></A><!--The TeX Catalogue Online--></H1>
<DIV style="text-align:center">
<A href="./index.html">
<IMG src="./title.png" alt="The TeX Catalogue Online" style="border:0">
</A>
</DIV>
<P>
<DIV style="text-align:center">
<A href="http://tug.ctan.org/find.html">Search</A> |
<A href="./index.html">Home</A> |
<A href="./alpha.html">Alpha</A> |
<A href="./brief.html">Brief</A> |
<A href="./bytopic.html">Topical</A> |
<A href="./hier.html">Hierarchical</A> <!--|
<A href="./full.html">Full</A Available from Graham as PDF-->
</DIV>
<P>
<HR><!-- End of Navigation -->
<P class="names">
<I>The TeX Catalogue by </I>
<A href="http://www.togaware.com/">Graham Williams</A>
</P>
<P class="names">
<I>Topic Index by
<A href="http://www.juergenfenn.de/">Jürgen Fenn</A></I>
</P>
<P style="text-align:center">
Last modified: 1 August 2005
</P>
<P>
<HR><!-- End of Header -->
<P class="notes">
This part of the <A href="index.html">TeX Catalogue</A> eventually
will list all packages available from the "Comprehensive TeX
Archive Network", or
<A href="http://www.ctan.org">CTAN</A>, for using
<A href="entries/base.html">plain TeX</A>,
<A href="entries/latex.html">LaTeX</A>,
<A href="#context">ConTeXt</A>, and
<A href="#omega">Omega</A> by topic. We also try to give some
advice that might help you in getting software and guides not
available on CTAN.<BR>
<BR>
New packages on CTAN and package updates are announced on the
tex-announce list which is also available as a
<a href="http://blog.gmane.org/gmane.comp.tex.ctan.announce">blog
and rss feed</a>.
<BR>
<BR>Every systematical order is arbitrary in some way or
another. This is why entries may appear in more than one place. The
following order generally tries to keep to that of the "The
LaTeX Companion", 1st ed., by Goosens, Mittelbach, and Samarin.
<BR>
<BR>This is very much a work in progress, so
suggestions to the
<A href="http://www.juergenfenn.de/">maintainer</A>
are quite welcome.
</P>
<H2 style="border-style:none">Contents</h2>
<UL>
<LI><A href="#refmans">References and Manuals</A>
<UL>
<LI><A href="#faqs">Frequently asked questions</A>
<LI><A href="#lshortintro">Introduction to LaTeX "lshort"</A>
<LI><A href="#l2tabuintro">Usage Guide "l2tabu"</A>
<LI><A href="#moreguides">Some more guides to (La)TeX</A>
<LI><A href="#fontsgraph">Fonts and Graphics</A>
<LI><A href="#refmath">Mathematics</A>
<LI><A href="#texwin">(La)TeX on Windows</A>
<LI><A href="#devman">Developing (La)TeX Packages</A>
<LI><A href="#webguide">(La)TeX on the Web</A>
<LI><A href="#texvswp">(La)TeX vs. Word Processors</A>
<LI><A href="#texsymb">The Symbols available in (La)TeX</A>
<LI><A href="#settables">Typesetting Tables</A>
<LI><A href="#bibliographyguides">Managing Bibliographies</A>
<LI><A href="#tboat">TUGboat</A>
<LI><A href="#typo">Typography</A>
<LI><A href="#fancytips">Tips for using <I>fancyhdr.sty:</I></A>
<LI><A href="#floattips">Tips for using Floats</A>
<LI><A href="#compos">Components of TeX</A>
<LI><A href="#tdstructure">The TeX Directory Structure documentation</A>
<LI>Last, but not least: <A href="#knuthdocs">Donald
E. Knuth's Own Documentation of TeX and Metafont</A>
</UL>
<LI><A href="#classes">Alternative Document Classes</A>
<UL>
<LI><A href="#koma">KOMA-Script</A>
<LI><A href="#hcbundleclasses">hc</A>
<LI><A href="#memoir">Memoir</A>
<LI><A href="#ntg">NTG Class</A>
<LI><A href="#octa">Octavo</A>
<LI><A href="#refm">Refman</A>
</UL>
<LI><A href="#structure">Document Structure</A>
<UL>
<LI><A href="#title">Document and Section Titles</A>
<LI><A href="#abstract">Abstract</A>
<LI><A href="#toc">Table of Contents</A>
<LI><A href="#chaptercounter">Changing the Counting of Chapters</A>
<LI><A href="#crossref">Crossreferences</A>
<LI><A href="#footnotes">Footnotes and Endnotes</A>
<LI><A href="#appendix">Appendix</A>
</UL>
<LI><A href="#format">Formatting</A>
<UL>
<LI><A href="#enumeration">Enumerating and Listing Items</A>
<LI><A href="#verbatim">Verbatim Input and Quoting</A>
<LI><A href="#lining">Underlining, Letterspacing etc.</A>
<LI><A href="#raggedtypesetting">Raggedright and Raggedleft Typesetting</A>
<LI><A href="#formattingparagraphs">Formatting Paragraphs</A>
</UL>
<LI><A href="#layout">Page Layout</A>
<UL>
<LI><A href="#margins">Page Margins</A>
<LI><A href="#headings">Page Headings</A>
<LI><A href="#landscape">Landscape Format</A>
</UL>
<LI><A href="#pnumbers">Page Numbers</A>
<LI><A href="#othercounters">Manipulating Counters</A>
<LI><A href="#lnumbers">Line and Paragraph Numbers</A>
<LI><A href="#cols">Columns in a Page</A>
<LI><A href="#tables">Tables</A>
<UL>
<LI><A href="#setlongtables">Typesetting Long Tables</A>
<LI><A href="#numericalpoints">Formatting Decimal Columns</A>
<LI><A href="#colourintables">Adding some Colour to Tables</A>
<LI><A href="#misctables">Misc</A>
</UL>
<LI><A href="#floats">Floats</A>
<LI><A href="#index">Creating Indices and Glossaries</A>
<LI><A href="#bibliography">Bibliography</A>
<UL>
<LI><A href="#bibtexpack">BibTeX</A>
<LI><A href="#multilingbiblio2">Multilingual Bibliographies</A>
<LI><A href="#bibmulti">Multiple Bibliographies in a document</A>
<LI><A href="#bibadd">Some more additional Packages</A>
<LI><A href="#bibliostyles">Bibliography Styles</A>
<LI><A href="#bibtools">Tools for managing your Bibliography</A>
</UL>
<LI><A href="#fonts">Fonts</A>
<UL>
<LI><A href="#cmfonts">Computer Modern Fonts</A>
<LI><A href="#ecfonts">Extended Computer Fonts</A>
<LI><A href="#tcfonts">Text Companion Fonts</A>
<LI><A href="#ccfonts">The Concrete Fonts</A>
<LI><A href="#cmsuperfonts">CM-super Fonts</A>
<LI><A href="#lmfonts">Latin Modern Fonts</A>
<LI><A href="#berafonts">The Bera Fonts</A>
<LI><A href="#mathfonts">AMS Fonts for Mathematical Typesetting</A>
<LI><A href="#type1fonts">PostScript Type1 Fonts</A>
<LI><A href="#type3fonts">PostScript Type3 Fonts</A>
<LI><A href="#metafontandmetapost">Metafont and MetaPost</A>
<LI><A href="#symfonts">Symbol Fonts</A>
<LI><A href="#eurosymbol">The "Euro" Currency Symbol €</A>
<LI><A href="#barcode">Typesetting Barcode</A>
<LI><A href="#initialfonts">Typesetting Initials</A>
<LI><A href="#histfonts">Historic Fonts</A>
<UL>
<LI><A href="#antiquity">Antiquity and Early Ages</A>
<LI><A href="#gothicfonts">Gothic Fonts</A>
<LI><A href="#bookhandfonts">Bookhand Fonts</A>
<LI><A href="#runes">Runes</A>
</UL>
<LI><A href="#handwriting">Typesetting Handwriting</A>
<LI><A href="#installfonts">Installing Fonts</A>
<LI><A href="#fontsmisc">Misc</A>
</UL>
<LI><A href="#ps">PostScript Support</A>
<UL>
<LI><A href="#dvipspack">dvips</A>
<LI><A href="#psnfsspack">psnfss</A>
<LI><A href="#pstrickspack">PS-Tricks</A>
<LI><A href="#psmisc">Misc</A>
</UL>
<LI><A href="#pdf">Creating PDF Documents</A>
<UL>
<LI><A href="#pdf">PDFTeX</A>
<LI><A href="#pdfpacks">Packages for Special PDF Features</A>
<LI><A href="#pdffonts">Fonts for PDF Files</A>
<LI><A href="#pdfview">PDF Viewers and Tools</A>
</UL>
<LI><A href="#combine">Combining Documents</A>
<LI><A href="#bundling">Bundling all Packages necessary for
compiling a Document</A>
<LI><A href="#revision">Managing different versions of your
document</A>
<LI><A href="#splitup">Managing large Documents</A>
<LI><A href="#languages">Multilingual Support</A>
<UL>
<LI><A href="#babel">Misc: The <I>babel</I> Package</A>
<LI><A href="#multilingbiblio">Multilingual Bibliographies</A>
<LI><A href="#arabic">Arabic</A>
<LI><A href="#armenian">Armenian</A>
<LI><A href="#bangl">Bangla and Asamese</A>
<LI><A href="#basqu">Basque</A>
<LI><A href="#bengal">Bengali</A>
<LI><A href="#burm">Burmese</A>
<LI><A href="#casy">Casyl</A>
<LI><A href="#cherok">Cherokee</A>
<LI><A href="#cjk">Chinese, Japanese, Korean</A>
<LI><A href="#copt">Coptic</A>
<LI><A href="#croat">Croatian</A>
<LI><A href="#czech">Czech and Slovene</A>
<LI><A href="#cyril">Cyrillic</A>
<LI><A href="#devan">Devanagari</A>
<LI><A href="#dutch">Dutch</A>
<LI><A href="#englishlang">English</A>
<LI><A href="#epiolmec">Epi-Olmec</A>
<LI><A href="#ethiop">Ethiopian</A>
<LI><A href="#french">French</A>
<LI><A href="#german">German</A>
<LI><A href="#greek">Greek</A>
<LI><A href="#gurmuk">Gurmukhi</A>
<LI><A href="#hebrew">Hebrew</A>
<LI><A href="#hungarian">Hungarian</A>
<LI><A href="#iceland">Icelandic</A>
<LI><A href="#india">Indian</A>
<LI><A href="#inukti">Inuktitut</A>
<LI><A href="#italian">Italian</A>
<LI><A href="#japan">Japanese</A>
<LI><A href="#korea">Korean</A>
<LI><A href="#latin">Latin</A>
<LI><A href="#malay">Malayalam</A>
<LI><A href="#manjua">Manju</A>
<LI><A href="#mongol">Mongolian</A>
<LI><A href="#polish">Polish</A>
<LI><A href="#portu">Portuguese</A>
<LI><A href="#roman">Romanian</A>
<LI><A href="#russian">Russian</A>
<LI><A href="#sanskr">Sanskrit</A>
<LI><A href="#sinhal">Sinhala</A>
<LI><A href="#slove">Slovene</A>
<LI><A href="#somali">Somali</A>
<LI><A href="#spanish">Spanish</A>
<LI><A href="#sweden">Swedish</A>
<LI><A href="#tamil">Tamil</A>
<LI><A href="#telug">Telugu</A>
<LI><A href="#tibet">Tibetan</A>
<LI><A href="#turkey">Turkish</A>
<LI><A href="#ukraine">Ukrainian</A>
<LI><A href="#vietnam">Vietnamese</A>
<LI><A href="#misclang">Misc</A>
</UL>
<LI><A href="#office">"Office" Applications</A>
<UL>
<LI><A href="#letters">Writing Letters, Faxes, Memos, and Newsletters</A>
<LI><A href="#meetingprotocols">Meeting protocols</A>
<LI><A href="#address">Keeping Lists of Addresses and Mass-Mailing</A>
<LI><A href="#calendar">Calendars, Date and Time</A>
<LI><A href="#currency">Money Currency</A>
<LI><A href="#applications">Writing Applications for a Job / CV</A>
<LI><A href="#bizcards">Business Cards, Labels and Envelopes</A>
<LI><A href="#leaflets">Leaflets</A>
<LI><A href="#factur">Writing Invoices</A>
<LI><A href="#present">Presentation Slides</A>
<LI><A href="#spread">Spreadsheets</A>
</UL>
<LI><A href="#dbase">Databases</A>
<LI><A href="#science">Science</A>
<UL>
<LI><A href="#theses">Typesetting Theses and Papers for Journals</A>
<LI><A href="#labjournals">Typesetting Laboratory Journals</A>
<LI><A href="#typeunits">Typesetting Physical Units</A>
<LI><A href="#math">Mathematics</A>
<UL>
<LI><A href="#calculating">Calculating</A>
<LI><A href="#ams">AMS-LaTeX</A>
<LI><A href="#amssupport">Support for AMS-LaTeX</A>
<LI><A href="#matheasy">The <em>easy</em> Family of Packages</A>
<LI><A href="#mathmacros">Other Math Macros</A>
<LI><A href="#mathfonts2">Math Fonts</A>
<LI><A href="#mathgraphics">Math Graphics</A>
</UL>
<LI><A href="#statisticalpackages">Statistics</A>
<LI><A href="#physics">Physics</A>
<LI><A href="#astronomy">Astronomy</A>
<LI><A href="#aeronautics">Aeronautics</A>
<LI><A href="#chem">Chemistry</A>
<LI><A href="#biology">Biology</A>
<Li><A href="#geophysics">Geophysics</A>
<LI><A href="#electro">Electronics</A>
<LI><A href="#cs">Computer Science</A>
<LI><A href="#humanities">Humanities</A>
<UL>
<LI><A href="#bibhum">Bibliography</A>
<LI><A href="#critical">Critical Editions</A>
<LI><A href="#dictio">Typesetting Dictionaries</A>
<LI><A href="#hummisc">Misc</A>
</UL>
<LI><A href="#psycho">Psychology</A>
<LI><A href="#law">Law</A>
<LI><A href="#economics">Economics</A>
<LI><A href="#phonetics">Phonetics</A>
<LI><A href="#linguistics">Linguistics</A>
</UL>
<LI><A href="#graphics">Including Graphics</A>
<LI><A href="#grid">Drawing Graph Paper and Grids</A>
<LI><A href="#charts">Drawing Diagrams and Charts</A>
<UL>
<LI><A href="#arrowtheoretic">Arrow Theoretic Diagrams</A>
<LI><A href="#barcharts">Barcharts</A>
<LI><A href="#beziercurves">Bezier Curves</A>
<LI><A href="#bridgediags">Bridge Diagrams</A>
<LI><A href="#circles">Drawing Circles</A>
<LI><A href="#clockdiags">Clocks</A>
<LI><A href="#commutative">Commutative Diagrams</A>
<LI><A href="#keyboards">Computer Keyboards</A>
<LI><A href="#circuitdiags">Electric Circuit Diagrams</A>
<LI><A href="#diagfeynm">Feynman Diagrams</A>
<LI><A href="#histograms">Histograms</A>
<LI><A href="#diagkarnaugh">Karnaugh-Maps, and Veitch-Charts</A>
<LI><A href="#diaglogic">Logic Diagrams</A>
<LI><A href="#nassidiags">Nassi-Schneidermann Diagrams</A>
<LI><A href="#pictexlist">Pictex</A>
<LI><A href="#drawpostscript">Postscript Macros for Drawing</A>
<LI><A href="#diagsyntax">Syntax Diagrams</A>
<LI><A href="#timingdiags">Timing Diagrams</A>
<LI><A href="#vectordiags">Vector Arrows</A>
<LI><A href="#diagtools">Tools</A>
<LI><A href="#diagmisc">Misc</A>
</UL>
<LI><A href="#colour">Adding some Colour and Shading</A>
<LI><A href="#exams">Typesetting Exam Scripts, Quizzes, and Questionnaires</A>
<LI><A href="#music">Music</A>
<LI><A href="#literature">Poetry and Drama</A>
<LI><A href="#recipes">Cooking Recipes</A>
<LI><A href="#games">Documenting Games</A>
<LI><A href="#crosswd">Crossword Puzzles</A>
<LI><A href="#cd">CD and MC Covers</A>
<LI><A href="#braille">Support for the Blind</A>
<LI><A href="#charsets">Using different character sets</A>
<LI><A href="#devel">Developing and Documenting LaTeX Packages</A>
<LI><A href="#distros">(La)TeX Distributions</A>
<UL>
<LI><A href="#unix">Unices</A>
<LI><A href="#dos">DOS</A>
<LI><A href="#os2">OS/2</A>
<LI><A href="#win">Windows</A>
<LI><A href="#mac">Macintosh</A>
<LI><A href="#distromisc">Misc</A>
</UL>
<LI><A href="#context">ConTeXt</A>
<LI><A href="#etexdist">E-TeX</A>
<LI><A href="#omega">Omega</A>
<LI><A href="#editors">Editors</A>
<LI><A href="#lyxnode">LyX</A>
<LI><A href="#microimpnode">MicroIMP</A>
<LI><A href="#viewers">Previewers and Plugins</A>
<LI><A href="#spchecker">Spelling Checker</A>
<LI><A href="#convert">Converters</A>
<UL>
<LI><A href="#wp">TeX, and Word Processors</A>
<LI><A href="#html">TeX to HTML</A>
<LI><A href="#html2">HTML to TeX</A>
<LI><A href="#fontconverters">Font Formats</A>
<LI><A href="#convmisc">Misc</A>
</UL>
<LI><A href="#perl">Using Perl with LaTeX</A>
<LI><A href="#xml">Using SGML and XML with LaTeX</A>
<LI><A href="#miscbin">Some more binaries</A>
<LI><A href="#miscpack">Miscellanous Packages</A>
</UL>
<P>
<HR><!-- End of Contents -->
<H2 style="border-style:none"><A name="refmans"> </A>References and Manuals</H2>
<P class="notes">
You should refer to <A href="#lshortintro">"lshort"</A> for
the basic rules for writing correct LaTeX2e.
<BR> On the other hand, the most common mistakes in using LaTeX2e and
how to avoid them are listed in Mark Trettin's guide
<A href="#l2tabuintro">"l2tabu"</A> available in
<A href="entries/l2tabu.html">German</A>,
<A href="entries/l2tabu-english.html">English</A>,
<A href="entries/l2tabu-french.html">French</A>, and
<A href="entries/l2tabu-italian.html">Italian</A>.
<BR><BR>
Below are some TeX resources online mostly outside CTAN
that deserve to be mentioned, too:
<BR>
<BR> A comprehensive commented reference of the commands available
both in LaTeX and the most popular packages can be found at Michael
Wiedmann's
<A href="http://www.miwie.org/tex-refs/tex-refs.html"> tex-refs
project</A>.
<BR>
<BR>
Herbert Voß has gathered together a rather comprehensive
collection of
<A href="http://www.texnik.de/">Tips & Tricks on (La)TeX</A>.
<BR>
<BR>There also is Norman Walsh's help for <A
href="http://www.nwalsh.com/tex/index.html">Plain TeX, LaTeX, BibTeX,
MakeIndex, and SliTeX</A>.
<BR>
<BR> Tutorials on TeX by TUG India are available <A
href="http://www.tug.org.in/tutorials.html">online</A>, or as <A
href="http://sarovar.org/projects/ltxprimer">PDF</A>. There also is
Peter Flynn's Beginner's Introduction available both
<A href="http://www.ctan.org/tex-archive/info/beginlatex/html/index.html">
online</A> and <A href="entries/beginlatex.html">for download</A>.
<BR><BR>
For news on the development of LaTeX see the
<A href="http://www.latex-project.org/">LaTeX3 Project</A>.
<BR>The <A href="#context">ConTeXt project</A>, too, has a
<A href="http://www.pragma-ade.com/">homepage</A> of its own.
<BR><BR>For practical hints on how to use LaTeX
in general as well as on particular packages refer to the
"Frequently Asked Questions" lists of local TeX User Groups
available on the WWW in
<A href="http://www.fi.muni.cz/cstug/csfaq/">Czech / Slowak</A>,
<A href="http://www.ntg.nl/faq.html">Dutch</A>,
<A href="http://www.tex.ac.uk/cgi-bin/texfaq2html?introduction=yes">English</A>,
<A href="http://www.grappa.univ-lille3.fr/FAQ-LaTeX/index.php">French</A>,
<A href="http://www.dante.de/faq/de-tex-faq/html/de-tex-faq.html">German</A>,
<A href="http://obelix.ee.duth.gr/eft/greek/faq.html">Greek</A>,
<A href="http://www.guit.sssup.it/latex/latex.html">Italian</A>,
<A href="http://www.gust.org.pl/cototex.html">Polish</A>,
<A href="http://corbu.aq.upm.es/~agmartin/latex/FAQ-CervanTeX/FAQ-CervanTeX.html">Spanish</A>,
or on CTAN:
</P>
<H3><A name="faqs"> </A>Frequently asked questions:</H3>
<UL>
<LI><A href="entries/faq-de.html">faq-de</A>
- auf Deutsch
<LI><A href="entries/faq-es.html">faq-es</A>
- en Español
<LI><A href="entries/faq-fr.html">faq-fr</A>
- en Français
<LI><A href="entries/faq.html">faq</A>
- in English
</UL>
<H3><A name="lshortintro"> </A>Introduction to LaTeX "lshort":</H3>
<UL>
<LI>lshort-bulgarian
- Bulgarian version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-english.html">lshort-english</A>
- A (Not So) Short Introduction to LaTeX2e
<LI><A href="entries/lshort-finnish.html">lshort-finnish</A>
- Finnish version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-french.html">lshort-french</A>
- French version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-german.html">lshort-german</A>
- German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung
<LI><A href="entries/lshort-italian.html">lshort-italian</A>
- Italian translation of the (Not So) Short Introduction to LaTeX
<LI><A href="entries/lshort-japanese.html">lshort-japanese</A>
- Japanese version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-mongolian.html">lshort-mongolian</A>
- Mongolian version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-polish.html">lshort-polish</A>
- Introduction to LaTeX in Polish
<LI><A href="entries/lshort-portuguese-br.html">lshort-portuguese-br</A>
- Introduction to LaTeX in Portuguese (Brazil)
<LI><A href="entries/lshort-portuguese.html">lshort-portuguese</A>
- Introduction to LaTeX in Portuguese
<LI><A href="entries/lshort-russian.html">lshort-russian</A>
- Russian version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-slovak.html">slovak-lshort</A>
- Slovak translation of "Not so Short Introduction ..."
<LI><A href="entries/lshort-spanish.html">lshort-spanish</A>
- Spanish version of A Short Introduction to LaTeX2e
<LI><A href="entries/lshort-ukr.html">lshort-ukr</A>
- Ukrainian version of the LaTeX introduction
</UL>
<H3><A name="l2tabuintro"> </A>Usage Guide "l2tabu":</H3>
<UL>
<LI><A href="entries/l2tabu.html">l2tabu</A>
- Obsolete packages and commands (in German)
<LI><A href="entries/l2tabu-english.html">l2tabu-english</A>
- English translation of
<A href="entries/l2tabu.html">l2tabu</A>, an essential guide
on the dos and don'ts of LaTeX2e
<LI><A href="entries/l2tabu-french.html">l2tabu-french</A>
- French translation of
<A href="entries/l2tabu.html">l2tabu</A>
<LI><A href="entries/l2tabu-italian.html">l2tabu-italian</A>
- Italian translation of
<A href="entries/l2tabu.html">l2tabu</A>
</UL>
<H3><A name="moreguides"> </A>Some more guides to (La)TeX:</H3>
<UL>
<LI><A href="entries/beginlatex.html">beginlatex</A>
- A comprehensive beginner's guide to LaTeX by Peter Flynn
<LI><A href="entries/index.html">catalogue</A>
- The <A href="index.html">TeX Catalogue</A> of what's
available on CTAN. You are just reading it.
<LI><A href="entries/french-translations.html">french-translations</A>
- French translation project for documentation of LaTeX packages
<LI><A href="entries/gentle.html">gentle</A>
- A Gentle Introduction to TeX
<LI><A href="entries/gentl-gr.html">gentl-gr</A>
- Modern Greek translation of the Gentle Introduction to TeX
<LI><A href="entries/latex2e.html">latex2e</A>
- Documentation on LaTeX2e in OS/2 hypertext format and html
<LI><A href="entries/russian-help.html">russian-help</A>
- LaTeX help in <A href="#russian">Russian</A>
<LI><A href="entries/simplified-latex.html">simplified-latex</A>
- A Simplified Introduction to LaTeX
<LI><A href="entries/texbuch.html">texbuch</A>
- A summary in German of D. E. Knuth's `TeXBook' by Fritz Cremer
<LI><A href="entries/texmalli.html">texmalli</A>
- A quick Finnish introduction to using LaTeX
</UL>
<H3><A name="fontsgraph"> </A>
<A href="#fonts">Fonts</A> and <A href="#graphics">Graphics</A>:</H3>
<UL>
<LI><A href="entries/anleitung.html">anleitung</A>
- A German introduction by Jens Weissenburger to using True
Type Fonts with LaTeX on a
<A href="entries/miktex.html">MikTeX</A> system with
<A href="entries/winedt.html">WinEdT</A>
<LI><A href="entries/comp-fonts-faq.html">comp-fonts-faq</A>
- Frequently Asked Questions from the <I>comp.fonts</I> newsgroup
<LI><A href="entries/chroma.html">chroma</A>
- A reference book of LaTeX colors
<LI><A href="entries/fonteinf.html">fonteinf</A>
- A German translation of a guide by Javier Bezos on how to
use fonts in LaTeX
<LI><A href="entries/fontinstallationguide.html">fontinstallationguide</A>
- How to install new fonts
<LI><A href="entries/fontname.html">fontname</A>
- Karl Berry's scheme for naming fonts in TeX
<LI><A href="entries/grafik.html">grafik</A>
- A guide by Marco Duebendorfer on how to produce EPS
graphics files for use with LaTeX on MS Windows platforms
<LI><A href="entries/grfguide.html">grfguide</A>
- Guide to using graphics in LaTeX, including documentation on
various packages including color and graphicx
<LI><A href="entries/metafp.html">metafp</A>
- Some Experiences in Running METAFONT and MetaPost
<LI><A href="entries/metapost-examples.html">MetaPost Examples</A>
- Example drawings using metapost
<LI><A href="entries/neufont.html">neufont</A>
- A guide by Bjoern Lorenz on how to install new fonts (in
German)
<LI><A href="entries/tipos.html">tipos</A>
- Description of fonts for TeX in Spanish
<LI><A href="entries/truetype.html">True Type</A>
- Harald Harders' guide on how to use TrueType fonts with
teTeX, and dvips
</UL>
<H3><A name="refmath"> </A><A href="#math">Mathematics</A>:</H3>
<UL>
<LI><A href="entries/amslatexprimer.html">amslatexprimer</A>
- An introduction to AMS-LaTeX by Philip S. Hirschhorn
<LI><A href="entries/voss-mathcol.html">voss-mathcol</A>
- Typesetting mathematics in colour
<LI><A href="entries/voss-mathmode.html">voss-mathmode</A>
- A comprehensive review of mathematics in (La)TeX
</UL>
<H3><A name="texwin"> </A>(La)TeX on Windows:</H3>
<P class="notes">There are two guides for installing
LaTeX on Windows in German in the first place: Both
<A href="http://www.joachimschlosser.de/latexsystem">Joachim
Schlosser</A>, and
<A href="http://www.dante.de/help/documentation/miktex/">Viktor Witting,
Maik Scherer, Florian Hibler, Johannes Schubert, Mathias Wasserthal,
and Andreas Hirsch</A> provide rather good guides to installing a
complete <A href="entries/miktex.html">MiKTeX</A> system on Windows.
</P>
<UL>
<LI><A href="entries/anleitung.html">anleitung</A>
- A German introduction by Jens Weissenburger to using True
Type Fonts with LaTeX on a MikTeX system with WinEdT
<LI><A href="entries/win95-guide.html">win95-guide</A>
- An installation-guide for a complete TeX-System consisting
of MiKTeX, WinEdt and GhostView
</UL>
<H3><A name="devman"> </A>Developing (La)TeX Packages:</H3>
<UL>
<LI><A href="entries/dtxtut.html">How to Package Your LaTeX Package</A>
- Tutorial on writing .dtx and .ins files
</UL>
<H3><A name="webguide"> </A>(La)TeX on the Web:</H3>
<UL>
<LI><A href="entries/acrotex.html">acrotex</A>
- How to generate PDF with TeX
<LI><A href="entries/webguide.html">webguide</A>
- Brief Guide to LaTeX Tools for Web publishing
</UL>
<H3><A name="texvswp"> </A>(La)TeX vs. Word Processors:</H3>
<P class="notes">
<A href="#lyxnode">LyX</A> is an advanced alternative to
word processors which is based on LaTeX.
<BR>
<BR>You may also input text using
<A href="http://www.openoffice.org">OpenOffice Writer</A> and later
convert it to LaTeX, or <A href="#html">HTML</A> with Henrik Just's
Java-based
<A href="http://www.hj-gym.dk/~hj/writer2latex/">Writer2LaTeX</A>.
<BR>
<BR>The <A href="http://www.tug.org">TUG</A> offers an overview of
converters
<A href="http://www.tug.org/utilities/texconv/pctotex.html">from PC
Textprocessors to LaTeX</A> and
<A href="http://www.tug.org/utilities/texconv/textopc.html">vice
versa</A>.
Some of the <A href="#wp">converters</A> between LaTeX and
word processor formats can be found on CTAN.
</P>
<UL>
<LI><A href="entries/latex4wp.html">latex4wp</A>
- A LaTeX guide specifically designed for word processor users
</UL>
<H3><A name="texsymb"> </A>The Symbols available in (La)TeX:</H3>
<UL>
<LI><A href="entries/symbols.html">symbols</A>
- Comprehensive list of LaTeX symbols
</UL>
<H3><A name="settables"> </A>Typesetting <A href="#tables">Tables</A>:</H3>
<UL>
<LI><A href="entries/tabsatz.html">tabsatz</A>
- A tutorial by Axel Reichert on typessetting tables with a
some examples (in German)
</UL>
<H3><A name="bibliographyguides"> </A>Managing Bibliographies:</H3>
<UL>
<LI><A href="entries/tamethebeast.html">tamethebeast</A>
- A manual about bibliographies and especially
<A href="#bibtexpack">BibTeX</A>
</UL>
<H3><A name="tboat"> </A>TUGboat:</H3>
<UL>
<LI><A href="entries/tugboat-toc.html">tugboat-toc</A>
- The complete accumulation of TUGboat tables of contents
</UL>
<H3><A name="typo"> </A>Typography:</H3>
<UL>
<LI><A href="entries/typografie.html">typografie</A>
- A tutorial on typography by Axel Reichert (in German)
</UL>
<H3><A name="fancytips"> </A>Tips for using
<A href="entries/fancyhdr.html">fancyhdr</A>:</H3>
<UL>
<LI><A href="entries/fancyfolien.html">fancyfolien</A>
- A guide by Hans Friedrich Steffani on how to use the
<A href="entries/fancyhdr.html">fancyhdr</A> package (in
German)
</UL>
<H3><A name="floattips"> </A>Tips for using <A href="#floats">Floats</A>:</H3>
<UL>
<LI><A href="entries/gleitobjekte.html">gleitobjekte</A>
- Tutorial from a DANTE meeting in November 1997 on floats and
their placement, captions, inclusion of graphics, lettering of
graphics, layout of tables and large amounts of numerical data
</UL>
<H3><A name="compos"> </A>Components of TeX:</H3>
<UL>
<LI><A href="entries/components.html">components</A>
- An introduction to the components and files users of TeX
get in contact with by Joachim Schrod
</UL>
<H3><A name="tdstructure"> </A>The TeX Directory Structure documentation:</H3>
<UL>
<LI><A href="entries/tds.html">tds</A>
- The TeX Directory Structure documentation
</UL>
<H3><A name="knuthdocs"> </A>Donald E. Knuth's Own Documentation of TeX and Metafont:</H3>
<UL>
<LI><A href="entries/knuth.html">knuth</A>
- Knuth's own documentation, including the TeX book and the
MetaFont book
<LI><A href="entries/tex98.html">tex98</A>
- The 1998 cycle of changes to TeX from Knuth
</UL>
<P>
<H2><A name="classes"> </A>Alternative Document Classes</H2>
<P class="notes">
These class files provide an alternative to the
usual LaTeX <I>article</I>, <I>report</I>,
or <I>book</I> classes. They are used to change document
layout in general and they usually provide
some special features, as well. You should check the class file
documentation first to make sure whether you can use options or
commands that are part of the respective class file before considering
the use of one of the packages listed below in alphabetical order.
<BR>
<BR>
There are some <A href="#letters">alternatives to
<I>letter.cls</I></A>, too, for writing letters and faxes.
<BR>
<BR>
There are also <A href="#theses">classes for typesetting theses and
papers</A> for scientific journals. Some more classes which also might
be of interest to general users of TeX are listed under
<A href="#science">Science</A>.
</P>
<H3><A name="koma"> </A>KOMA-Script:</H3>
<UL>
<LI><A href="entries/koma-script.html">koma-script</A>
- A drop-in replacement for the article/report/book/letter
classes with emphasis on European rules of typography and
paper formats as laid down by Tschichold
<LI><A href="entries/typearea.html">typearea</A>
- Set page margins; part of the
<A href="entries/koma-script.html">koma-script</A> bundle
</UL>
<H3><A name="hcbundleclasses"> </A>HC:</H3>
<UL>
<LI><A href="entries/hc.html">hc</A>
- Provides replacements for the default LaTeX classes, based
upon the <A href="entries/koma-script.html">koma-script</A>
bundle and the <A href="entries/seminar.html">seminar</A>
class
</UL>
<H3><A name="memoir"> </A>Memoir:</H3>
<UL>
<LI><A href="entries/memoir.html">memoir</A>
- Typeset fiction, non-fiction and mathematical books; provides
a variety of predefined page, chapter and caption styles and
easy means of creating new ones
</UL>
<H3><A name="ntg"> </A>NTG Class:</H3>
<UL>
<LI><A href="entries/ntgclass.html">ntgclass</A>
- Versions of the standard LaTeX article and report classes,
rewritten to reflect a more European design
</UL>
<H3><A name="octa"> </A>Octavo:</H3>
<UL>
<LI><A href="entries/octavo.html">octavo</A>
- A modification of the standard LaTeX book class to typeset
books following classical layout and design principles,
implementing many of the proposals and insights of especially
Jan Tschichold and Hugh Williamson
</UL>
<H3><A name="refm"> </A>Refman:</H3>
<UL>
<LI><A href="entries/refman.html">refman</A>
- A document class for writing technical reference manuals
offering a wide left margin for notes to the reader, like some
of the manuals distributed by Adobe, available for articles
and reports
</UL>
<P>
<H2><A name="structure"> </A>Document Structure</H2>
<H3><A name="title"> </A>Document and Section Titles:</H3>
<UL>
<LI><A href="entries/alnumsec.html">alnumsec</A>
- Alphanumeric section numbering similar to
<A href="entries/alphanum.html">alphanum</A>, but you may use
the standard LaTeX sectioning commands
<LI><A href="entries/alphanum.html">alphanum</A>
- Permits alphanumeric section numbering
<LI><A href="entries/authblk.html">authblk</A>
- A LaTeX2e package to redefine the \author command to work as
normal or to allow a footnote style of author/affiliation
input
<LI><A href="entries/bsheaders.html">bsheaders</A>
- Implements chapter headers in sans-serif and bounded by
lines \textwidth wide, both above and below the header
itself.
<LI><A href="entries/sectsty.html">sectsty</A>
- Control sectional headers
<LI><A href="entries/titlefoot.html">titlefoot</A>
- Add special material to footer of title page
<LI><A href="entries/titleref.html">titleref</A>
- Cross-reference section (and chapter, etc) titles and
captions just like \ref and \pageref
<LI><A href="entries/titles.html">titles</A>
- Defining macros that typeset the titles of books, journals,
etc. and handle following spacing and punctuation
intelligently
<LI><A href="entries/titlesec.html">titlesec</A>
- Select alternative section titles
<LI><A href="entries/titletoc.html">titletoc</A>
- Alternative headings for toc/tof/tol
<LI><A href="entries/titling.html">titling</A>
- Control over the typesetting of the \maketitle command
</UL>
<H3><A name="abstract"> </A>Abstract:</H3>
<UL>
<LI><A href="entries/abstract.html">abstract</A>
- Control the typesetting of the abstract environment
</UL>
<H3><A name="toc"> </A>Table of Contents:</H3>
<UL>
<LI><A href="entries/minitoc.html">minitoc</A>
- Produce a table of contents for each chapter
<LI><A href="entries/multitoc.html">multitoc</A>
- Set table of contents in multiple columns
<LI><A href="entries/shorttoc.html">shorttoc</A>
- Table of contents with different depths
<LI><A href="entries/titletoc.html">titletoc</A>
- Alternative headings for toc/tof/tol
<LI><A href="entries/tocbibind.html">tocbibind</A>
- Add bibliography/index/contents to Table of Contents
<LI><A href="entries/tocloft.html">tocloft</A>
- Control table of contents, figures, etc.
<LI><A href="entries/tocvsec2.html">tocvsec2</A>
- Section numbering and table of contents control
</UL>
<H3><A name="chaptercounter"> </A>Changing the Counting of Chapters:</H3>
<UL>
<LI><A href="entries/alnumsec.html">alnumsec</A>
- Alphanumeric section numbering similar to
<A href="entries/alphanum.html">alphanum</A>, but you may use
the standard LaTeX sectioning commands
<LI><A href="entries/anonchap.html">anonchap</A>
- Make \chapter s be typeset like sections
<LI><A href="entries/alphanum.html">alphanum</A>
- Permits alphanumeric section numbering
<LI><A href="entries/koma-script.html">koma-script</A>
- A drop-in replacement for the article/report/book classes
with emphasis on European rules of typography and paper
formats as laid down by Tschichold
<LI><A href="entries/tocvsec2.html">tocvsec2</A>
- Section numbering and table of contents control
</UL>
<H3><A name="crossref"> </A>Crossreferences:</H3>
<UL>
<LI><A href="entries/cwebhy.html">cwebhy</A>
- Insert hyperlinks for included files
<LI><A href="entries/drftcite.html">drftcite</A>
- Print the tags instead of the numbers for \cite and \bibitem
<LI><A href="entries/lastpage.html">lastpage</A>
- Reference last page for Page N of M type footers
<LI><A href="entries/prettyref.html">prettyref</A>
- Additional functionality for the LaTeX2e label--reference
mechanism, allowing the "preformat" of all types of
labels; compatible with
<A href="entries/hyperref.html">hyperref</A> and other
packages
<LI><A href="entries/refcheck.html">refcheck</A>
- Check references (in figures, table, equations, etc)
<LI><A href="entries/showkeys.html">showkeys</A>
- Show label, ref, cite and bib keys
<LI><A href="entries/titleref.html">titleref</A>
- Cross-reference section (and chapter, etc) titles and
captions just like \ref and \pageref
<LI><A href="entries/totpages.html">totpages</A>
- Access last page number and page mark of last page
<LI><A href="entries/ut-backref.html">ut-backref</A>
- A version of bachref which adds to bibliography entries an
entry saying where this particular reference was cited
<LI><A href="entries/varioref.html">varioref</A>
- Intelligent page references
<LI><A href="entries/xr.html">xr</A>
- References to other LaTeX documents
</UL>
<H3><A name="footnotes"> </A>Footnotes and Endnotes:</H3>
<P class="notes">
There are some packages for working on
<A href="#critical">critical editions</A> for those interested in
<A href="#humanities">the Humanities</A>.
</P>
<UL>
<LI><A href="entries/authblk.html">authblk</A>
- A LaTeX2e package to redefine the \author command to work as
normal or to allow a footnote style of author/affiliation
input
<LI><A href="entries/endnotes.html">endnotes</A>
- Accumulates footnotes and places them at the end of the document
<LI><A href="entries/fixfoot.html">fixfoot</A>
- Multiple use of the same footnote text
<LI><A href="entries/fnpara.html">fnpara</A>
- Typeset footnotes in run-on paragraphs, instead of one above another
<LI><A href="entries/footbib.html">footbib</A>
- A package to put bibliographic references as footnotes
<LI><A href="entries/footmisc.html">footmisc</A>
- Captures as package options much (if not all) of the
functionality of the various other footnote packages
<LI><A href="entries/footnpag.html">footnpag</A>
- Allows footnotes on individual pages to be numbered from 1,
rather than being numbered sequentially through the document
<LI><A href="entries/ftn">ftn</A>
- LaTeX document-style option to make footnotes available in
any environment, except inside floats
<LI><A href="entries/ftnright.html">ftnright</A>
- Footnotes in two column documents
<LI><A href="entries/manyfoot.html">manyfoot</A>
- Add footnote levels to the standard LaTeX's footnote mechanism
<LI><A href="entries/nccfoots.html">nccfoots</A>
- Implements commands for generating footnotes marked by hands
<LI><A href="entries/pagenote.html">pagenote</A>
- Provides tagged notes on a separate page (also known as
"end notes")
<LI><A href="entries/savefnmark.html">savefnmark</A>
- Save name of the footnote mark for reuse
<LI><A href="entries/titlefoot.html">titlefoot</A>
- Add special material to footer of title page
<LI><A href="entries/yafoot.html">yafoot</A>
- Enclose footnote numbers within a page; control the
position of footnotes; and make footnotes double-columned
</UL>
<H3><A name="appendix"> </A>Appendix:</H3>
<UL>
<LI><A href="entries/appendix.html">appendix</A>
- Extra control of appendices
</UL>
<P>
<H2><A name="format"> </A>Formatting</H2>
<H3><A name="enumeration"> </A>Enumerating and Listing Items:</H3>
<UL>
<LI><A href="entries/enumerate.html">enumerate</A>
- Adds an optional argument to the enumerate environment which
determines the style in which the counter is printed
<LI><A href="entries/enumitem.html">enumitem</A>
- Control layout of itemize, enumerate, description
<LI>etaremune
- Implements the etaremune environment which is similar to the
enumerate environment, except that labels are decreasing
instead of increasing, similar to the
<A href="entries/revnum.html">revnum</A> package
<LI><A href="entries/expdlist.html">expdlist</A>
- Provides additional features to the LaTeX description
environment, such as changing the left margin, or
breaking a list for a comment without touching any counters
<LI><A href="entries/mdwtools.html">mdwtools</A>
- A collection of tools that also includes support for
list handling
<LI><A href="entries/multenum.html">multenum</A>
- Multi-column enumerated lists
<LI><A href="entries/paralist.html">paralist</A>
- Provides enumerate and itemize environments that can be used
within paragraphs to format the items either as running text
or as separate paragraphs with a preceding number or symbol
<LI><A href="entries/revnum.html">revnum</A>
- Provides a reverse-enumerate environment where all items are
numbered in reverse order
</UL>
<H3><A name="verbatim"> </A>Verbatim Input and Quoting:</H3>
<UL>
<LI><A href="entries/alltt.html">alltt</A>
- A verbatim environment other commands, and environments can
appear within
<LI><A href="entries/attrib.html">attrib</A>
- A LaTeX package defining \attrib, which attributes block
elements, for example when citing a reference after a block
quotation
<LI><A href="entries/bbfig.html">bbfig</A>
- A Bourne shell script that prints its input surrounded by
its bounding box
<LI><A href="entries/csquotes.html">csquotes</A>
- Provides commands for smart, or
"context-sensitive" quoting
<LI><A href="entries/eplain.html">eplain</A>
- extended version of the plain format
<LI><A href="entries/fancyvrb.html">fancyvrb</A>
- Sophisticated handling of verbatim text
<LI><A href="entries/listings.html">listings</A>
- Typeset programming code within LaTeX using different
styles, e.g., default is bold for keywords, italic for
comments and no special style for strings, including support
for <A href="entries/hyperref.html">hyperref</A>
<LI><A href="entries/moreverb.html">moreverb</A>
- Extended verbatim
<LI><A href="entries/quotchap.html">quotchap</A>
- Creating decorative chapter headings with quotations
<LI><A href="entries/quotes.html">quotes</A>
- Translates plain text input into English quotes
"..."
<LI><A href="entries/stdpage.html">stdpage</A>
- Standard pages with n lines of at most m characters each
<LI><A href="entries/url.html">url</A>
- Verbatim with URL-sensitive line breaks
<LI><A href="entries/verbatim.html">verbatim</A>
- The LaTeX verbatim environment
<LI><A href="entries/vrb.html">vrb</A>
- Verbatim macros via plain TeX
</UL>
<H3><A name="lining"> </A>Underlining, Letterspacing etc.:</H3>
<UL>
<LI><A href="entries/soul.html">soul</A>
- Hyphenation for letterspacing, underlining, and more
<LI><A href="entries/subscript.html">subscript</A>
- Provides the textsubscript command (analogous to
textsuperscript in standard LaTeX2e)
<LI><A href="entries/tracking.html">tracking</A>
- Automatically adjust spaces between symbols in words or
phrases to fit them into a specified length
<LI><A href="entries/truncate.html">truncate</A>
- Truncate text to a specified width
<LI><A href="entries/ulem.html">ulem</A>
- Package for underlining
<LI><A href="entries/umoline.html">umoline</A>
- Underlines text allowing line breaking
<LI><A href="entries/underbracket.html">underbracket</A>
- Draw brackets to underline (song) text
<LI><A href="entries/underlin.html">underlin</A>
- Package for underlining
</UL>
<H3><A name="raggedtypesetting"> </A>Raggedright and Raggedleft Typesetting</H3>
<UL>
<LI><A href="entries/ragged.html">ragged</A>
- Ragged left and ragged right options
<LI><A href="entries/ragged2e.html">ragged2e</A>
- Defines new commands which set ragged text and are easily
configurable to allow hyphenation.
<A href="entries/raggedr.html">raggedr</A> is part of this
package.
</UL>
<H3><A name="formattingparagraphs"> </A>Formatting Paragraphs</H3>
<UL>
<LI><A href="entries/hanging.html">hanging</A>
- Facilitates the typesetting of hanging paragraphs
</UL>
<P>
<H2><A name="layout"> </A>Page Layout</H2>
<H3><A name="margins"> </A>Page Margins:</H3>
<UL>
<LI><A href="entries/a4.html">a4</A>
- Obsolete support for A4 paper sizes
<LI><A href="entries/a4wide.html">a4wide</A>
- Increases width of printed area of an a4 page
<LI><A href="entries/a5.html">a5</A>
- Obsolete support for a5 paper size
<LI><A href="entries/a5comb.html">a5comb</A>
- Support for a5 paper sizes superceded by the
<LI><A href="entries/anysize.html">anysize</A>
- A simple package to set up document margins (obsolete)
<LI><A href="entries/chngpage.html">chngpage</A>
- Change the page layout in the middle of a document
<LI><A href="entries/fullpage.html">fullpage</A>
- Sets all 4 margins to be either 1 inch or 1.5 cm, and
specifies the page style
<LI><A href="entries/geometry.html">geometry</A>
- Flexible and complete interface to document dimensions
<LI><A href="entries/isostds.html">isostds</A>
- Typeset ISO International Standard documents
<LI><A href="entries/mparhack.html">mparhack</A>
- Implements a workaround for the LaTeX bug that marginpars
will sometimes come out at the wrong margin
<LI><A href="entries/rmpage.html">rmpage</A>
- Change page layout parameters in LaTeX
<LI><A href="entries/savetrees.html">savetrees</A>
- Pack as much text as possible onto each page of a LaTeX
document
<LI><A href="entries/sober.html">sober</A>
- Reduces the amount of white space on the page by reducing
the size of various skips
<LI><A href="entries/stdpage.html">stdpage</A>
- Standard pages with n lines of at most m characters each
<LI><A href="entries/textfit.html">textfit</A>
- Package to support fitting of text to a given width or
height by scaling the font
<LI><A href="entries/typearea.html">typearea</A>
- Set page margins; part of the
<A href="entries/koma-script.html">koma-script</A> bundle
<LI><A href="entries/vmargin.html">vmargin</A>
- Set various dimensions
</UL>
<H3><A name="headings"> </A>Page Headings:</H3>
<UL>
<LI><A href="entries/fancyhdr.html">fancyhdr</A>
- Extensive control of page headers and footers in LaTeX2e
<LI><A href="entries/fancyfolien.html">fancyfolien</A>
- A guide by Hans Friedrich Steffani on how to use the
fancyhdr package (in German)
<LI><A href="entries/rplain.html">rplain</A>
- A predecessor to
<A href="entries/fancyhdr.html">fancyhdr</A>, redefining the
plain pagestyle
</UL>
<H3><A name="landscape"> </A>Landscape Format:</H3>
<UL>
<LI><A href="entries/lscape.html">lscape</A>
- Place selected parts of a document in landscape
<LI><A href="entries/twoinone.html">twoinone</A>
- Print two pages on a single page (a4paper landscape)
<LI><A href="entries/twoup.html">twoupe</A>
- Print two virtual pages on each physical page
<LI><A href="entries/twoupltx.html">twoupltx</A>
- Print two virtual pages on each physical page
</UL>
<P>
<H2><A name="pnumbers"> </A>Page Numbers</H2>
<UL>
<LI><A href="entries/chappg.html">chappg</A>
- Package for page numbering by chapter
<LI><A href="entries/count1to.html">count1to</A>
- Set count1 to count9 for selecting pages with a driver or
for accessing certain pages in a document
<LI><A href="entries/lastpage.html">lastpage</A>
- Reference last page for "Page N of M" type footers
<LI><A href="entries/pageno.html">pageno</A>
- A package that can re-define the plain page style under the
control of options, so you can have page numbers: at the top
or bottom of the page; in the inside corner, outside corner,
or in the middle
</UL>
<P>
<H2><A name="othercounters"> </A>Manipulating Counters</H2>
<UL>
<LI><A href="entries/alphalph.html">alphalph</A>
- Converting numbers to letters, like \number but the
expansion consists of lowercase and uppercase letters
respectively
<LI><A href="entries/chngcntr.html">chngcntr</A>
- Change the resetting of counters
<LI><A href="entries/count1to.html">count1to</A>
- Set count1 to count9 for selecting pages with a driver or
for accessing certain pages in a document
<LI><A href="entries/romanneg.html">romanneg</A>
- Roman neg.
<LI><A href="entries/romannum.html">romannum</A>
- Changes LaTeX generated numbers to be printed with roman
numerals instead of arabic digits
<LI><A href="entries/zahl2string.html">zahl2string</A>
- Format numbers as German words
</UL>
<P>
<H2><A name="lnumbers"> </A>Line and Paragraph Numbers</H2>
<P class="notes">
There are packages for working on <A href="#critical">critical editions</A>.
</P>
<UL>
<LI><A href="entries/ledpar.html">ledpar</A>
- An extension of <A href="entries/ledmac.html">ledmac</A>
enabling parallel typesetting in columns or on facing
pages and line numbering.
<LI><A href="entries/lineno.html">lineno</A>
- Line numbers on paragraphs
<LI><A href="entries/numline.html">numline</A>
- Macros for numbering lines
<LI><A href="entries/vruler.html">vruler</A>
- A package for adding a vertical numbering to the general
text so that the text can be properly referenced. The vertical
ruler can be scaled and moved freely
</UL>
<P>
<H2><A name="cols"> </A>Columns in a Page</H2>
<UL>
<LI><A href="entries/balance.html">balance</A>
- Balanced two-column mode
<LI><A href="entries/cuted.html">cuted</A>
- Mixing onecolumn and twocolumn modes at any place of page
<LI><A href="entries/fix2col.html">fix2col</A>
- Fix miscellaneous two column mode features
<LI><A href="entries/flushend.html">flushend</A>
- Columns balancing at last page
<LI><A href="entries/ftnright.html">ftnright</A>
- Footnotes in two column documents
<LI><A href="entries/mhequ.html">mhequ</A>
- Multicolumn equations, tags, labels, sub-numbering
<LI><A href="entries/midfloat.html">midfloat</A>
- Mixing onecolumn and twocolumn modes at any place of page
<LI><A href="entries/multicol.html">multicol</A>
- Intermix single and multiple columns
<LI><A href="entries/parallel.html">parallel</A>
- Typesetting two languages side-by-side
</UL>
<P>
<H2><A name="tables"> </A>Tables</H2>
<P class="notes">
See also packages for <A href="#floats">floats</A>.
<BR>There are guides to <A href="#settables">typesetting tables</A>.
<BR>
There is <a href="http://web.hc.keio.ac.jp/~mr041754/calc2latex/">Calc2LaTeX</a>
for converting OpenOffice spreadsheets to LaTeX tables.
</P>
<H3><A name="setlongtables"> </A>Typesetting Long Tables:</H3>
<UL>
<LI><A href="entries/longtable.html">longtable</A>
- Support for tables longer than a page. Generally easier to
use, and more flexible than
<A href="entries/supertabular.html">supertabular</A>
<LI><A href="entries/ltxtable.html">ltxtable</A>
- Longtable and tabularx merge
<LI><A href="entries/supertabular.html">supertabular</A>
- A multi-page tables package
<LI><A href="entries/xtab.html">xtab</A>
- An extended version of supertabular to automatically break
tables across pages and includes extra functionality
</UL>
<H3><A name="numericalpoints"> </A>Formatting Decimal Columns:</H3>
<UL>
<LI><A href="entries/comma.html">comma</A>
- A flexible package that allows commas (or anything else) to
be inserted every three digits in a number, as in 1,234
<LI><A href="entries/dcolumn.html">dcolumn</A>
- Align on the decimal point of numbers in tabulars
<LI><A href="entries/numprint.html">numprint</A>
- Print numbers with a separator every three digits
<LI><A href="entries/rccol.html">rccol</A>
- Provides right-centered numbers; furthermore, rounding to
the desired precision is possible
<LI><A href="entries/warpcol.html">warpcol</A>
- Defines a tabular column type for formatting numerical
columns in LaTeX
</UL>
<H3><A name="colourintables"> </A>Adding some Colour to Tables:</H3>
<P class="notes">
There are packages for <A href="#colour">colour and
shading</A> in general.
</P>
<UL>
<LI><A href="entries/colortab.html">colortab</A>
- Shade, or colour cells of tables and halign
<LI><A href="entries/colortbl.html">colortbl</A>
- Allows rows and columns to be coloured, and even individual
cells
<LI><A href="entries/shadbox.html">shadbox</A>
- Shade the background of any box (text, figure, table, etc.)
</UL>
<H3><A name="misctables"> </A>Misc:</H3>
<UL>
<LI><A href="entries/array.html">array</A>
- Arrays and tables with formatted columns
<LI><A href="entries/arraymaker.html">Array Maker</A>
- A program for making latex and xypic arrays
<LI><A href="entries/autotab.html">autotab</A>
- Generating tabular setups
<LI><A href="entries/blkarray.html">blkarray</A>
- Extended array and tabular
<LI><A href="entries/booktabs.html">booktabs</A>
- Nicer layout of tables
<LI><A href="entries/cellular.html">cellular</A>
- Cellular table construction
<LI><A href="entries/csvtools.html">csvtools</A>
- Allows you to repeatedly perform a set of LaTeX commands on
data in each row of a comma separated variable (CSV) file
<LI><A href="entries/easybmat.html">easybmat</A>
- Writing block matrices with equal column widths or equal
rows heights or both, with various kinds of rules between rows
and columns
<LI><A href="entries/easyeqn.html">easyeqn</A>
- Introduces some equation environments that simplify writing
of equations
<LI><A href="entries/easytable.html">easytable</A>
- Tables with equal column widths or equal rows heights or
both, with various kinds of rules (lines) between rows and
columns
<LI><A href="entries/excel2latex.html">Excel-to-LaTeX</A>
- Convert Excel spreadsheets to LaTeX tables (works with Excel
up to Excel 97)
<LI><A href="entries/ftcap.html">ftcap</A>
- Allows \caption at the beginning of a table-environment
<LI><A href="entries/hhline.html">hhline</A>
- Better horizontal lines in tabulars and arrays
<LI><A href="entries/hvdashln.html">hvdashln</A>
- Definitions of horizontal and vertical dashed lines for the
array and tabular environment
<LI><A href="entries/latable.html">LaTable</A>
- A near-WYSIWYG editor for LaTeX tables
<LI><A href="entries/ltablex.html">ltablex</A>
- Modifies the tabularx environment to combine the features of
the <A href="entries/tabularx.html">tabularx</A> package
(auto-sized columns in a fixed width table) with those of the
<A href="entries/longtable.html">longtable</A> package
(multi-page tables).
<LI><A href="entries/multirow.html">multirow</A>
- Creates tabular cells spanning multiple rows
<LI><A href="entries/savefnmark.html">savefnmark</A>
- Save name of the footnote mark for reuse
<LI><A href="entries/tabls.html">tabls</A>
- Better vertical spacing in tables and arrays (tabular lineskip)
<LI><A href="entries/tabularx.html">tabularx</A>
- Tabulars that widen automatically
<LI><A href="entries/tap.html">tap</A>
- An easy TeX macro package for typesetting complex tables
<LI><A href="entries/threeparttable.html">threeparttable</A>
- Tables with captions and notes all the same width
</UL>
<P>
<H2><A name="floats"> </A>Floats</H2>
<P class="notes">
See also the packages for including
<A href="#graphics">graphics</A> and <A href="#tables">tables</A>.
</P>
<UL>
<LI><A href="entries/algorithm2e.html">algorithm2e</A>
- An environment for writing algorithms, defining an
algorithm as a floating object
<LI><A href="entries/algorithms.html">algorithms</A>
- Defines a floating algorithm environment
<LI><A href="entries/captcont.html">captcont</A>
- Retain float number accross several floats
<LI><A href="entries/caption.html">caption</A>
- Extends caption capabilities for figures and tables
<LI><A href="entries/caption2.html">caption2</A>
- Newer version of the caption package
<LI><A href="entries/capt-of.html">capt-of</A>
- Captions on more than floats
<LI><A href="entries/ccaption.html">ccaption</A>
- Continuation headings and legends for floats
<LI><A href="entries/dpfloat.html">dpfloat</A>
- Support for double-page floats
<LI><A href="entries/endfloat.html">endfloat</A>
- Move floats to the end with markers where they belong
<LI><A href="entries/figcaps.html">figcaps</A>
- Collect figure captions for later printing
<LI><A href="entries/float.html">float</A>
- Improved interface for floating objects (defining your
own floats and improving the behaviour of the old ones)
<LI><A href="entries/floatfig.html">floatfig</A>
- Allows text to be wrapped around figures
<LI><A href="entries/floatflt.html">floatflt</A>
- Float text around figures and tables which do not span the
full width of a page, improving upon
<A href="entries/floatflt.html">floatflt</A>
<LI><A href="entries/floatrow.html">floatrow</A>
- Extension or addition for
<A href="entries/float.html">float</A> package which offers
possibilities to put floats side by side, to put a caption
beside a float. All floats of one type appear in one layout.
<LI><A href="entries/hangcaption.html">hangcaption</A>
- Defines a variant of the caption command to produce captions
with hanging indentation
<LI><A href="entries/here.html">here</A>
- Provides the H option for floats in LaTeX to mean that the
float should really be placed here
<LI><A href="entries/hvfloat.html">hvfloat</A>
- Rotating caption and object of floats in different ways
<LI><A href="entries/nonfloat.html">nonfloat</A>
- Non-floating table and figure captions
<LI><A href="entries/photo.html">photo</A>
- A float environment for photographs
<LI><A href="entries/refcheck.html">refcheck</A>
- Check references (in figures, table, equations, etc)
<LI><A href="entries/rotfloat.html">rotfloat</A>
- A package for rotating floats
<LI><A href="entries/stfloats.html">stfloats</A>
- Floating baselineskip, footnotes below the floats, dblfloats
at bottom
<LI><A href="entries/subfigure.html">subfigure</A>
- Generates sub-figures within one normal figure
<LI><A href="entries/subfloat.html">subfloat</A>
- Enables sub-numbering of different floats (figures and
tables) similar to the subequations divided into subfigures
<LI><A href="entries/topcapt.html">topcapt</A>
- Place captions above figures and tables
<LI><A href="entries/wrapfig.html">wrapfig</A>
- Produces figures which text can flow around
</UL>
<P>
<H2><A name="index"> </A>Creating Indices and Glossaries</H2>
<UL>
<LI><A href="entries/abbrevs.html">abbrevs</A>
- A LaTeX package defining "abbreviation macros,"
which expand to defined text and insert following space
intelligently, based on context
<LI><A href="entries/acronym.html">acronym</A>
- Ensures that all acronyms used in the text are spelled out
in full at least once; provides an environment to build a list
of acronyms
<LI><A href="entries/addindex.html">addindex</A>
- A C/Lex program for adding index entries to LaTeX document
<LI><A href="entries/appendix.html">appendix</A>
- Extra control of appendices
<LI><A href="entries/authorindex.html">authorindex</A>
- A package to generate a list of all authors cited in a
document along with a list of pages where these citations
occur
<LI><A href="entries/esindex.html">esindex</A>
- Typset index entries in Spanish documents
<LI><A href="entries/forindex.html">forindex</A>
- Generating and deleting \index entries automatically
<LI><A href="entries/gloss.html">gloss</A>
- Create glossaries using BibTeX
<LI><A href="entries/glosstex.html">glosstex</A>
- Atomatic preparation of glossaries; combines the
functionality of <A href="entries/acronym.html">acronym</A>
and <A href="entries/nomencl.html">nomencl</A>
<LI><A href="entries/index.html">index</A>
- Extended index for LaTeX including multiple indexes
<LI><A href="entries/juraabbrev.html">juraabbrev</A>
- Handle abbreviations for typesetting (German) juridical
documents
<LI><A href="entries/makeglos.html">makeglos</A>
- Include a glossary into a document
<LI><A href="entries/makeidx.html">makeidx</A>
- Standard LaTeX package for creating indexes
<LI><A href="entries/makeindex.html">makeindex</A>
- A general purpose hierarchical index generator
<LI><A href="entries/nomencl.html">nomencl</A>
- Produce lists of symbols as in nomenclature using the <A
href="entries/makeidx.html">makeidx</A> program
<LI><A href="entries/splitindex.html">splitindex</A>
- Unlimited number of indices
<LI><a href="entries/toolbox.html">toolbox</A>
- A package for (La)TeX which provides some macros which are
convenient for writing indices, glossaries, or other macros
</UL>
<P>
<H2><A name="bibliography"> </A>Bibliography</H2>
<P class="notes">
For showing \cite and \bibitem
<A href="bytopic.html#crossref">crossreferences</A> use the
<A href="entries/drftcite.html">drftcite</A> package.
</P>
<H3><A name="bibtexpack"> </A>BibTeX:</H3>
<UL>
<LI><A href="entries/amsrefs.html">amsrefs</A>
- A LaTeX-based replacement for
<A href="entries/bibtex.html">bibtex</A>
<LI><A href="entries/bibtex.html">bibtex</A>
- Bibliography management for LaTeX
<LI><A href="entries/bibtex8bit.html">bibtex8bit</A>
- A fully 8-bit adaptation of
<A href="entries/bibtex.html">bibtex</A> 0.99
<LI><A href="entries/camel.html">camel</A>
- Comprehensive bibliography manager (prototype citation
engine for <A href="http://www.latex-project.org">LaTeX3</A>)
that will become BibTeX 1.0 on release
<LI><A href="entries/macbibtex.html">macbibtex</A>
- A port of <A href="entries/bibtex.html">bibtex</A> which is
distributed with <A href="entries/oztex.html">OzTeX</A> for
the <a href="#mac">Macintosh OS</A>
</UL>
<H3><A name="multilingbiblio2"> </A>Multilingual Bibliographies:</H3>
<UL>
<LI><A href="entries/babelbib.html">babelbib</A>
- Generate multilingual bibliographies in cooperation with <A
href="entries/babel.html">babel</A>
</UL>
<H3><A name="bibmulti"> </A>Multiple Bibliographies in a document:</H3>
<UL>
<LI><A href="entries/bibtopic.html">bibtopic</A>
- Include multiple "by topic" bibliographies in a
document
<LI><A href="entries/bibunits.html">bibunits</A>
- Multiple bibliographies in one document; compatible with
<A href="entries/koma-script.html">koma-script</A>
<LI><A href="entries/chapterbib.html">chapterbib</A>
- Separate bibliography for each \include file
</UL>
<H3><A name="bibadd"> </A>Some more additional Packages:</H3>
<UL>
<LI><A href="entries/authorindex.html">authorindex</A>
- A package to generate a list of all authors cited in a
document along with a list of pages where these citations
occur
<LI><A href="entries/backref.html">backref</A>
- Bibliographical back referencing
<LI><A href="entries/backrefx.html">backrefx</A>
- Bibliographical back referencing (obsolete)
<LI><A href="entries/bibcheck.html">bibcheck</A>
- Check on references to items in thebibliography
<LI><A href="entries/bibhtml.html">bibhtml</A>
- Consists of a <A href="#perl">Perl</A> script and a
<A href="entries/bibtex.html">BibTeX</A> style file, which
together allow you to compile a bibliography for a collection
of HTML files
<LI><A href="entries/bibsort.html">bibsort</A>
- Sort a bibliography
<LI><A href="entries/chbibref.html">chbibref</A>
- Change the Bibliography/References title
<LI><A href="entries/cite.html">cite</A>
- Supports compressed, sorted lists of numerical citations
<LI><A href="entries/citeref.html">citeref</A>
- Support backward references in the bibliography
<LI><A href="entries/compactbib.html">compactbib</A>
- Allows many thebibliography environments with continuous
numbering
<LI><A href="entries/easybib.html">easybib</A>
- Macro package for writing custom bibliographies with a
simple <A href="entries/amstex.html">AMS-TeX</A>-like syntax
<LI><A href="entries/eplain.html">eplain</A>
- extended version of the plain format, adding support for
bibliographies, tables of contents, enumerated lists, verbatim
input of files, numbered equations, tables, two-column output,
footnotes and commutative diagrams
<LI><A href="entries/footbib.html">footbib</A>
- Put bibliographic references as footnotes
<LI><A href="entries/listbib.html">listbib</A>
- Lists contents of <A href="entries/bibtex.html">bibtex</A>
files for archival purposes
<LI><A href="entries/hellas.html">hellas</A>
- Typeset bibliographies which include Greek using
<A href="entries/bibtex.html">bibtex</A>
<LI><A href="entries/notoccite.html">notoccite</A>
- Prevent erroneous numbering of cites when using BibTeX/unsrt
<LI><A href="entries/rangecite.html">rangecite</A>
- Will turn a range of citations into something like [1..3]
<LI><A href="entries/saferef.html">saferef</A>
- Provides a means of expressing `typed' references (as it
were) within a document
<LI><A href="entries/tocbibind.html">tocbibind</A>
- Add bibliography/index/contents to
<a href="#toc">Table of Contents</A>
<LI><A href="entries/ut-backref.html">ut-backref</A>
- A version of bachref which adds to bibliography entries an
entry saying where this particular reference was cited
</UL>
<H3><A name="bibliostyles"> </A>Bibliography Styles:</H3>
<P class="notes">
For using <A href="entries/bibtex.html">bibtex</A> for working in the
<A href="#humanities">humanities</A> see the bibliography section
<A href="#bibhum">there</A>.
</P>
<UL>
<LI><A href="entries/achemso.html">achemso</A>
- LaTeX and BibTeX style for American Chemical Society
<LI><A href="entries/achicago.html">achicago</A>
- Produces author-date citations based on <EM>The Chicago
Manual of Style</EM>
<LI><A href="entries/achicago-bst.html">achicago-bst</A>
- Produces bibliographies based on <EM>The Chicago Manual of
Style</EM>, requires the
<A href="entries/achicago.html">achicago</A> package
<LI><A href="entries/aguplus.html">aguplus</A>
- Styles for American Geophysical Union
<LI><A href="entries/authblk.html">authblk</A>
- Redefines the \author command to work as normal or to allow
a footnote style of author/affiliation input
<LI><A href="entries/authorindex.html">authorindex</A>
- Generates a list of all authors cited in a document along
with a list of pages where these citations occur
<LI><A href="entries/beebe.html">beebe</A>
- A collection of TeX-related bibliographies and BibTeX style
files
<LI><A href="entries/bibarts.html">bibarts</A>
- A package to assist in making bibliographical lists common
in the arts
<LI><A href="entries/bib-fr.html">bib-fr</A>
- French translation of classical BibTeX styles
<LI><A href="entries/biblio.html">biblio</A>
- An extensive collection of
<A href="entries/bibtex.html">bibtex</A> bibliographies on
many topics and for many journals
<LI><A href="entries/biblist.html">biblist</A>
- <A href="entries/bibtex.html">bibtex</A> styles by Joachim
Schrod
<A href="entries/bibtex.html">bibtex</A> bibliographies on
many topics and for many journals
<LI><A href="entries/chicago.html">chicago</A>
- A bibliography style
<LI><A href="entries/chem-journal.html">chem-journal</A>
- Various <A href="entries/bibtex.html">bibtex</A>
formats for journals in <A href="#chem">Chemistry</A>, including
Reviews in Computational Chemistry, Journal of Physical
Chemistry, Journal of Computational Chemistry, and Physical
Chemistry Chemical Physics
<LI><A href="entries/custom-bib.html">custom-bib</A>
- Generates customized <A href="entries/bibtex.html">bibtex</A>
bibliography styles from a generic file using
<A href="entries/docstrip.html">docstrip</A>, includes support
for the <A href="entries/harvard.html">harvard</A> style
<LI><A href="entries/dinat.html">dinat</A>
- Bibliography style files intended for texts in german in
accordance with the german DIN 1505, parts 2 and 3
<LI><A href="entries/germbib.html">germbib</A>
- German variants of standard BibTeX styles
<LI><A href="entries/harvard.html">harvard</A>
- The Harvard bibliography style family
<LI><A href="entries/jurarsp.html">jurarsp</A>
- A BibTeX style for quoting court decisions, and
official papers as required in German legal texts
<LI><A href="entries/jtbnew.html">jtbnew</A>
- BibTeX style for Journal of Theoretical Biology
<LI><A href="entries/jurabib.html">jurabib</A>
- <A href="entries/bibtex.html">bibtex</A> databases for
German legal texts in the first place, but also of interest to
everyone else working in the <A href="#humanities">humanities</A>
<LI><A href="entries/natbib.html">natbib</A>
- Bibliography style with author-year and numbered references
<LI><A href="entries/revtex.html">revtex</A>
- Styles for various Physics Journals
</UL>
<H3><A name="bibtools"> </A>Tools for managing your Bibliography:</H3>
<UL>
<LI><A href="entries/barracuda.html">barracuda</A>
- A <A href="entries/bibtex.html">bibtex</A> database manager
that allows loading, editing, merging, sorting, searching,
printing and saving of BibTeX database files
<LI><A href="entries/bbl2html.html">bbl2html</A>
- Convert a LaTeX .bbl file to formatted html code
<LI><A href="entries/bibex.html">bibex</A>
- Automates the extraction of bibliographic references from
BibTeX databases
<LI><A href="entries/bibhtml.html">bibhtml</A>
- Consists of a <A href="#perl">Perl</A> script and a
<A href="entries/bibtex.html">BibTeX</A> style file, which
together allow you to compile a bibliography for a collection
of HTML files
<LI><A href="entries/bib2xhtml.html">bib2xhtml</A>
- A program that converts BibTeX files into HTML (specifically
XHTML 1.0)
<LI><A href="entries/bibarts.html">bibarts</A>
- A package to assist in making bibliographical lists common
in the arts
<LI><A href="entries/bibdb.html">bibdb</A>
- <A href="entries/bibtex.html">bibtex</A> bibliography
manager fow MS-Windows and MS-DOS
<LI><A href="entries/bibfind.html">bibfind</A>
- Reads your bib file and prints those references that match
your search string
<LI><A href="entries/bibindex.html">bibindex</A>
- A stand-alone tool for indexing
<A href="entries/bibtex.html">BibTeX</A>
documents to be searched using the corresponding
<A href="entries/biblook.html">biblook</A> tool
<LI><A href="entries/biblook.html">biblook</A>
- A stand-alone tool for searching BibTeX documents which have
been indexed by <A href="entries/bibindex.html">bibindex</A>
<LI><A href="entries/biblio-perl.html">biblio-perl</A>
- A program for preprocessing bibliographic references
(written in <A href="#perl">Perl</A>)
<LI><A href="entries/biblios.html">biblios</A>
- A MS-Windows95 tool that uses the CGI protocol so that
<A href="entries/bibtex.html">BibTeX</A> files can be managed
remotely using an HTTP-server on the server side and a
Web-browser on the client side
<LI><A href="entries/bibtool.html">bibtool</A>
- Command line manipulation of
<A href="entries/bibtex.html">BibTeX</A> files
<LI><A href="entries/bibtools.html">bibtools</A>
- Bib management tools, including a bib2html converter, and a
style file for listing papers on a homepage/
<A href="#applications">cv</A>
<LI><A href="entries/bibweb.html">bibweb</A>
- Automatically retrieve bibliography from MathSciNet
<LI><A href="entries/bidstobibtex.html">bidstobibtex</A>
- A tool to take input from a BIDS email message (generated
using one of the downloading formats) to
<A href="entries/bibtex.html">BibTeX</A>
<LI><A href="entries/btool.html">btOOL</A>
- <A href="#perl">Perl</A> library for parsing and processing
<A href="entries/bibtex.html">BibTeX</A> files
<LI><A href="entries/citation.html">citation</A>
- A bibliographical conversion program
<LI><A href="entries/pybliographer.html">pybliographer</A>
- A comprehensive tool for managing bibliographic databases on
*ix platforms
<LI><A href="entries/tex2bib.html">tex2bib</A>
- Converts bibitems embedded in a document to bib format
<LI><A href="entries/tex2ltx.html">tex2ltx</A>
- Useful for converting plain TeX (AMS) files into AMS-LaTeX
and convert plain AMS-TeX bibliographic references into
<A href="entries/bibtex.html">BibTeX</A>
</UL>
<P>
<H2><A name="fonts"> </A>Fonts</H2>
<P class="notes">
See also
<A href="#ps">PostScript Support</A>, and
<A href="#pdf">Creating PDF Documents</A>.
<BR>PostScript <A href="#type1fonts">Type 1</A>, and
<A href="#type3fonts">Type 3</A> Fonts are listed in this section.
<BR>There are <A href="#fontsgraph">guides</A> on using different types of fonts.
</P>
<H3><A name="cmfonts"> </A>Computer Modern Fonts:</H3>
<UL>
<LI><A href="entries/aifont.html">aifont</A>
- Virtual fonts and other related files for remapping the
BSR/YandY/AMS Type 1 Computer Modern fonts
<LI><A href="entries/bbm.html">bbm</A>
- "Blackboard-style" cm fonts
<LI><A href="entries/bbm-macros.html">bbm-macros</A>
- LaTeX support for <A href="entries/bbm.html">bbm</A>
<LI><A href="entries/bluesky.html">bluesky</A>
- Computer Modern family in format
<LI><A href="entries/cm.html">cm</A>
- Computer Modern fonts; the typical (La)TeX typeface
designed by Donald Knuth
<LI><A href="entries/cmcyr.html">cmcyr</A>
- Computer Modern fonts extended with Russian letters, in
MetaFont sources and ATM Compatible
<LI><A href="entries/cmextra.html">cmextra</A>
- Extra Computer Modern fonts, from the American Mathematical
Society
<LI><A href="entries/cmolddig.html">cmolddig</A>
- A virtual fount setup for using old style digits by default
with the OT1 encoded Computer Modern Roman upright founts
<LI><A href="entries/cmpica.html">cmpica</A>
- A Computer Modern Pica variant
<LI><A href="entries/cmps.html">cmps</A>
- Versions of PostScript fonts, from Blue Sky and Y&Y
<LI><A href="entries/cmsd.html">cmsd</A>
- A package including additional fd files, providing an
alternative interface to the CM Sans Serif boldface fonts
<LI><A href="entries/cmtt.html">cmtt</A>
- A package for handling the `cmtt' font better
<LI><A href="entries/hfbright.html">hfbright</A>
- The hfbright fonts (Type1 version of the CM Bright fonts)
<LI><A href="entries/zefonts.html">zefonts</A>
- Virtual T1 encoded Computer Modern fonts based on (OT1)
Computer Modern, Times, and Helvetica fonts, intended to
simulate `dc' fonts
</UL>
<H3><A name="ecfonts"> </A>Extended Computer Fonts:</H3>
<UL>
<LI><A href="entries/ec.html">ec</A>
- The European Computer Modern Fonts supporting the complete
LaTeX T1 encoding defined at the 1990 TUG conference hold at
Cork/Ireland
<LI><A href="entries/ecc.html">ecc</A>
- The MetaFont sources and tfm files of the European Concrete
Fonts. This is the EC implementation of Knuth's
<A href="#ccfonts">Concrete</A>
<LI><A href="entries/eco.html">eco</A>
- A set of font metric files and virtual fonts for using the
<A href="entries/ec.html">ec</A> fonts with oldstyle numerals
fonts, including also the corresponding text companion fonts
<LI><A href="entries/ec-plain.html">ec-plain</A>
- A plain-like format using the ec fonts including an extended
math italic font (exmi) providing upright
<A href="#greek">greek</A> letters
<LI>ecpk
- No description available
<LI><A href="entries/fontenc.html">fontenc</A>
- Standard package for activating ec fonts
<LI><A href="entries/hfoldsty.html">hfoldsty</A>
- Provides virtual fonts for using oldstyle figures with the
European Computer Modern fonts. It does a similar job as the
<A href="entries/eco.html">eco</A> package, but includes a
couple of improvements
<LI><A href="entries/t1enc.html">t1enc</A>
- Obsolete package for activating ec fonts
</UL>
<H3><A name="tcfonts"> </A>Text Companion Fonts:</H3>
<UL>
<LI><A href="entries/ecc.html">ecc</A>
- The MetaFont sources and tfm files of the European Concrete
Fonts. This is the EC implementation of Knuth's
<A href="#ccfonts">Concrete</A>
fonts, including also the corresponding text companion fonts
<LI><A href="entries/textcomp.html">textcomp</A>
- The Text Companion fonts which provide many text symbols (such
as baht, bullet, copyright, musicalnote, onequarter, section,
and yen) in the TS1 encoding
</UL>
<H3><A name="ccfonts"> </A>The Concrete Fonts:</H3>
<UL>
<LI><A href="entries/beton.html">beton</A>
- Typeset a LaTeX2e document with the Concrete fonts designed
by Don Knuth and used in his book "Concrete
Mathematics"
<LI><A href="entries/ccfonts.html">ccfonts</A>
- LaTeX font definition files for the
<A href="entries/concrete.html">concrete</A> fonts and a
LaTeX package for typesetting documents using Concrete as the
default font family. The files support OT1, T1, TS1, and
Concrete math including AMS fonts
<LI><A href="entries/cc-pl.html">cc-pl</A>
- Polish extension of Computer
<A href="entries/concrete.html">concrete</A> fonts (MetaFont
sources).
<LI><A href="entries/cc-plps.html">cc-plps</A>
- Polish extension of Computer
<A href="entries/concrete.html">concrete</A> fonts in Type1
format
<LI><A href="entries/concrete.html">concrete</A>
- Concrete Roman fonts, designed by Donald E. Knuth,
originally for use with <A href="entries/euler.html">Euler</A>
math fonts
<LI><A href="entries/concrete-wrap">concrete-wrap</A>
- A wrapper to load up the appropriate packages to use the
<A href="entries/concrete.html">concrete</A> fonts
<LI><A href="entries/ecc.html">ecc</A>
- The MetaFont sources and tfm files of the European Concrete
Fonts. This is the EC implementation of Knuth's
<A href="#ccfonts">Concrete</A>
fonts, including also the corresponding text companion fonts
<LI><A href="entries/euler.html">euler</A>
- Provides a setup for using the AMS Euler family of fonts for
math in LaTeX documents
</UL>
<H3><A name="cmsuperfonts"> </A>CM-super Fonts:</H3>
<UL>
<LI><A href="entries/cm-super.html">cm-super</A>
- CM-Super family of fonts in type 1 format
</UL>
<H3><A name="lmfonts"> </A>Latin Modern Fonts:</H3>
<UL>
<LI><A href="entries/lm.html">lm</A>
- Latin modern fonts in type 1 format
</UL>
<H3><A name="berafonts"> </A>The Bera Fonts</H3>
<UL>
<LI><A href="entries/bera.html">bera</A>
- Contains the Bera Type 1 fonts, and a zip archive containing
files to use the fonts with LaTeX
</UL>
<H3><A name="mathfonts"> </A>AMS Fonts for Mathematical Typesetting:</H3>
<UL>
<LI><A href="entries/amsfonts.html">amsfonts</A>
- Augments the standard set normally distributed with TeX,
including: extra mathematical symbols; blackboard bold letters
(uppercase only);
<A href="#gothicfonts">fraktur</A> letters; subscript sizes of
bold math italic and bold Greek letters; subscript sizes of large
symbols such as sum and product; added sizes of the
<A href="#cmfonts">Computer Modern</A> small caps font;
<A href="#cyril">cyrillic</A> fonts (from the University of
Washington); <A href="entries/euler.html">Euler</A> math fonts
<LI><A href="entries/euler.html">euler</A>
- Provides a setup for using the AMS Euler family of fonts for
math in LaTeX documents
</UL>
<H3><A name="type1fonts"> </A>PostScript Type1 Fonts:</H3>
<UL>
<LI><A href="entries/brushscr.html">brushscr</A>
- BrushScript fonts including pbsi, a Type-1 PostScript font
containing BrushScript Italic characters that simulates
hand-written characters
<LI><A href="entries/cmbright.html">cmbright</A>
- A family of sans serif fonts for TeX and LaTeX, based on
Donald Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded
text fonts of various shapes as well as all the fonts
necessary for mathematical typesetting, incl. AMS
symbols. This collection provides all the necessary files for
using the fonts with LaTeX
<LI><A href="entries/mf2pt1.html">mf2pt1</A>
- Produce PostScript Type 1 fonts from
<A href="#metafontandmetapost">MetaFont</A> source
</UL>
<H3><A name="type3fonts"> </A>PostScript Type3 Fonts:</H3>
<UL>
<LI><A href="entries/mf2pt3.html">mf2pt3</A>
- <A href="#perl">Perl</A> script to generate PostScript Type
3 fonts from <A href="#metafontandmetapost">MetaFont</A>
sources by processing
<A href="entries/metapost.html">MetaPost</A> output
</UL>
<H3><A name="truetypefonts"> </A>TrueType Fonts:</H3>
<UL>
<LI><A href="entries/freetype.html">freetype</A>
- A free, full-featured TrueType rasterizer library
<LI><A href="entries/ttf2mf.html">ttf2mf</A>
- MS program to convert True Type to
<A href="#metafontandmetapost">metafont</A>
<LI><A href="entries/ttf2pk.html">ttf2pk</A>
- This tool rasterizes the glyph outlines of a TrueType font
into a bitmap font in PK format as part of the
<A href="entries/freetype.html">FreeType</A> package
<LI><A href="entries/ttf2pt1.html">ttf2pt1</A>
- A tool that converts True Type fonts into
<A href="#type1fonts">PS Type 1 fonts</A>
<LI><A href="entries/ttf2tex.html">ttf2tex</A>
- A Bash script which will create all files neccessary to use
TrueType fonts with <A href="entries/tetex.html">teTeX</A>
from a set of TTF files
<LI><A href="entries/ttf2tfm.html">ttf2tfm</A>
- Extracts the metric and kerning information of a TrueType
font and converts it into metric files usable by TeX (quite
similar to afm2tfm which is part of the
<A href="entries/dvips.html">dvips</A> package)
<LI><A href="entries/ttftogf.html">ttftogf</A>
- Convert MS-Windows True Type fonts to GF format
</UL>
<H3><A name="metafontandmetapost"> </A>Metafont and MetaPost:</H3>
<UL>
<LI><A href="entries/emp.html">emp</A>
- A package for encapsulated
<A href="entries/metapost.html">MetaPost</A> pictures in LaTeX
<LI><A href="entries/meta-mode.html">meta-mode</A>
- A GNU Emacs Lisp package that implements a major mode for
editing MetaFont or
<A href="entries/metapost.html">MetaPost</A> sources
<LI><A href="entries/metapost.html">metapost</A>
- A tool based on MetaFont for producing precise technical
illustrations, creating scalable PostScript instead of bitmaps
<LI><A href="entries/metapost-examples.html">metapost-examples</A>
- Example drawings using <A href="entries/metapost.html">metapost</A>
<LI><A href="entries/mf2pt1.html">mf2pt1</A>
- Produce PostScript Type 1 fonts from
<A href="#metafontandmetapost">MetaFont</A> source
<LI><A href="entries/mf2pt3.html">mf2pt3</A>
- <A href="#perl">Perl</A> script to generate PostScript Type
3 fonts from <A href="#metafontandmetapost">MetaFont</A>
sources by processing
<A href="entries/metapost.html">MetaPost</A> output
<LI><A href="entries/threed.html">threed</A>
- Create animations of 3-dimensional objects (such as
polyhedra) in <A href="entries/metapost.html">metapost</A>
</UL>
<H3><A name="symfonts"> </A>Symbol Fonts:</H3>
<P class="notes">The <A href="#ps">PostScript</A> symbol fonts
<EM>Zapf Dingbats</EM> are supported by the <EM>pifont</EM> package
which is part of <A href="entries/psnfss.html">psnfss</A>.
</P>
<UL>
<LI><A href="entries/astro.html">astro</A>
- Astronomical (planetary) symbols
<LI><A href="entries/bbding.html">bbding</A>
- Symbol font including many Zapf dingbats
<LI><A href="entries/dingbat">dingbat</A>
- A dingbat symbol font
<LI><A href="entries/genealogy.html">genealogy</A>
- A simple compilation of the genealogical symbols found in
the <A href="entries/wasy.html">wasy</A> and `gen' font
<LI><A href="entries/gensymb.html">gensymb</A>
- Generic symbols for both text and math mode
<LI><A href="entries/harpoon.html">harpoon</A>
- Extra harpoons, using the graphics package
<LI><A href="entries/hoekwater.html">hoekwater</A>
- Fonts originally created in MetaFont, transformed to
PostScript by Taco Hoekwater; includes
logo,
<A href="entries/manfnt.html">manfnt</A>,
<A href="entries/rsfs.html">rsfs</A>,
<A href="entries/stmaryrd.html">stmaryrd</A>,
<A href="entries/wasy.html">wasy</A>,
<A href="entries/wasy2.html">wasy2</A>,
xipa
<LI><A href="entries/ifsym.html">ifsym</A>
- Symbols for alpinistic, electronic, meteorological,
geometric etc. usage
<LI><A href="entries/manfnt.html">manfnt</A>
- LaTeX support for the TeX book symbols
<LI><A href="entries/marvosym.html">marvosym</A>
- Martin Vogel's Symbole (marvosym) font
<LI><A href="entries/marvosym-mac.html">marvosym-mac</A>
- A Macintosh version of the <A
href="entries/marvosym.html">marvosym</A> font
<LI><A href="entries/rsfs.html">rsfs</A>
- Contains MetaFont sources for fonts of uppercase script
letters for use as symbols in scientific and mathematical
typesetting, in contrast to the informal script fonts such as
that used for the `calligraphic' symbols in the TeX math
symbol font
<LI><A href="entries/stmaryrd.html">stmaryrd</A>
- St Mary Road symbols for functional programming
<LI><A href="entries/stmaryrd.html">stmaryrd-ps</A>
- PostScript version of the
<A href="entries/stmaryrd.html">stmaryrd</A> fonts
<LI><A href="entries/textcomp.html">textcomp</A>
- The <A href="#tcfonts">Text Companion fonts</A> which
provide many text symbols (such as baht, bullet, copyright,
musicalnote, onequarter, section, and yen) in the TS1 encoding
<LI><A href="entries/texlogos.html">texlogos</A>
- Ready-to-use LaTeX logos
<LI><A href="entries/tipa.html">tipa</A>
- Fonts and macros for IPA phonetics characters
<LI><A href="entries/wasy.html">wasy</A>
- The wasy fonts (Waldis symbol fonts)
<LI><A href="entries/wasy2.html">wasy2</A>
- The wasy fonts (Waldis symbol fonts)
<LI><A href="entries/wasy2-ps.html">wasy2-ps</A>
- Converted (PostScript) outlines of the
<A href="entries/wasy.html">wasy</A> fonts
<LI><A href="entries/wasysym.html">wasysym</A>
- Extra characters from the Waldis symbol fonts
<LI><A href="entries/wsuipa.html">wsuipa</A>
- Style for using International Phonetic Alphabet fonts
<LI><A href="entries/wsuipa2tipa.html">wsuipa2tipa</A>
- A filter that translates an old LaTeX document, replacing
all <A href="entries/wsuipa.html">wsuipa</A> font commands
with <A href="entries/tipa.html">tipa</A> font commands
</UL>
<H3><A name="eurosymbol"> </A>The "Euro" Currency Symbol €:</H3>
<UL>
<LI><A href="entries/euro.html">euro</A>
- Converts arbitrary national currency amounts using the Euro
as base unit, and typesets monetary amounts in almost any
desired way; automatically. Conversion rates for the so-called
Euro-zone countries are already built-in
<LI><A href="entries/eurofont.html">eurofont</A>
- Provides a command that prints a euro symbol
<LI><A href="entries/europs.html">europs</A>
- Provides access to Adobe's Euro currency symbol fonts from
LaTeX
<LI><A href="entries/eurosans.html">eurosans</A>
- Provides a convenient interface for using the free Adobe
Type 1 PostScript Euro fonts
<LI><A href="entries/eurosym.html">eurosym</A>
- The new European currency symbol for
the "Euro" implemented in Metafont, using
the official European Commission dimensions, and providing
several shapes
<LI><A href="entries/marvosym.html">marvosym</A>
- Martin Vogel's Symbole (marvosym) font
<LI><A href="entries/marvosym-mac.html">marvosym-mac</A>
- A Macintosh version of the <A
href="entries/marvosym.html">marvosym</A> font
<LI><A href="entries/textcomp.html">textcomp</A>
- The <A href="#tcfonts">Text Companion fonts</A> which
provide many text symbols (such as baht, bullet, copyright,
musicalnote, onequarter, section, and yen) in the TS1 encoding
</UL>
<H3><A name="barcode"> </A>Typesetting Barcode:</H3>
<UL>
<LI><A href="entries/barcode2.html">barcode2</A>
- Typesetting Barcode
<LI><A href="entries/barcodes.html">barcodes</A>
- Fonts for making barcodes
<LI><A href="entries/code128.html">code128</A>
- A set of barcode macros for the Code 128 standard
<LI><A href="entries/ean.html">ean</A>
- Font for making EAN barcodes
<LI><A href="entries/wbarcode.html">wbarcode</A>
- Typeset common (and less common) barcodes with TeX
</UL>
<H3><A name="initialfonts"> </A>Typesetting Initials:</H3>
<UL>
<LI><A href="entries/dropcaps.html">dropcaps</A>
- Use dropped capitals to start a paragraph in LaTeX 2.09
<LI><A href="entries/dropping.html">dropping</A>
- A LaTeX2e macro for dropping the first character(s) (or
word(s)) of a paragraph, extending the LaTeX 2.09 package
<A href="entries/dropcaps.html">dropcaps</A> and automatically
taking care of finding the font name
<LI><A href="entries/gothic.html">gothic</A>
- Gothic and ornamental initial fonts by Yannis Haralambous
<LI><A href="entries/initials.html">initials</A>
- A special font (yinit) is defined to be used for initial
dropped capitals
<LI><A href="entries/lettrine.html">lettrine</A>
- Supports various dropped capitals styles, typically those
described in the French typographic books
</UL>
<H3><A name="histfonts"> </A>Historic Fonts:</H3>
<H4><A name="antiquity"> </A>Antiquity and Early Ages:</H4>
<UL>
<LI><A href="entries/archaic.html">archaic</A>
- A collection of archaic fonts
<LI><A href="entries/cypriot.html">cypriot</A>
- A script which was used on Cyprus for writing Greek
<LI><A href="entries/etruscan.html">etruscan</A>
- Fonts for the Etruscan script
<LI><A href="entries/greek6cbc.html">greek6cbc</A>
- A Greek font from the sixth century BC
<LI><A href="entries/greek4cbc.html">greek4cbc</A>
- A Greek font from 394BC
<LI><A href="entries/hieroglf.html">hieroglf</A>
- A Metafont version of about 75 Egyptian hieroglyphs, but the
package is not for serious Egyptologists
<LI><A href="entries/hieroglyph.html">hieroglyph</A>
- A package for typesetting ancient egyptian
hieroglyphs which contains a hieroglyphic font, a number of
style files, and an helper program in C that allows one to
type hieroglyphic texts using the so-called "manuel de
codage", which is the current standard for encoding
ancient egyptian; also includes the Type 1 fonts for creating
PDF files.
<LI><A href="entries/linearb.html">linearb</A>
- Linear B script used in the Bronze Age for Mycenaean Greek
<LI><A href="entries/oldprsn.html">oldprsn</A>
- Fonts old Persian cuneiform script
<LI><A href="entries/phoenician.html">phoenician</A>
- Fonts for the semitic script in use from about 1600 BC
<LI><A href="entries/protosem.html">protosem</A>
- Fonts for proto-Semitic cuneiform script
<LI><A href="entries/runic.html">runic</A>
- Fonts for Anglo-Saxon futharc script
<LI><A href="entries/ugarite.html">ugarite</A>
- Fonts for Ugaritic cuneiform script
<LI><A href="entries/viking.html">viking</A>
- Scandinavian runic alphabet as used by the Vikings
</UL>
<H4><A name="gothicfonts"> </A>Gothic Fonts:</H4>
<UL>
<LI><A href="entries/blackletter1.html">blacklettert1</A>
- A Gothic font
<LI>CTAN: fonts/gothic/cmfrak/
<LI><A href="entries/gothic.html">gothic</A>
- Gothic and ornamental initial fonts by Yannis Haralambous
<LI><A href="entries/mfnfss.html">mfnfss</A>
- Packages to typeset
<A href="entries/yfonts.html">oldgerman</A> and
<A href="entries/pandora.html">pandora</A> fonts in LaTeX
<LI><A href="entries/yfonts.html">yfonts</A>
- A LaTeX interface to the old-german fonts designed by Yannis
Haralambous: Gotisch, Schwabacher, Fraktur and the baroque
initials
<LI><A href="entries/yfonts-t1.html">yfonts-t1</A>
- Old German-style fonts, in type 1 format
<LI><A href="entries/yfrak.html">yfrak</A>
- Old German Fraktur font
<LI><A href="entries/ygoth.html">ygoth</A>
- Old German Gothic font
<LI><A href="entries/yinit.html">yinit</A>
- Old German decorative initials
<LI><A href="entries/yswab.html">yswab</A>
- Old German Schwabacher font
</UL>
<H4><A name="bookhandfonts"> </A>Bookhand Fonts:</H4>
<UL>
<LI><A href="entries/auncial.html">auncial</A>
- Metafont fonts based on the Artificial Uncial manuscript
book-hand used between the 6th and 10th century AD
<LI><A href="entries/bookhands.html">bookhands</A>
- A collection of book-hand fonts
<LI><A href="entries/carolmin.html">carolmin</A>
- Metafont fonts based on the Carolingan Miniscules manuscript
book-hand used between the 8th and 12th century AD
<LI><A href="entries/egothic.html">egothic</A>
- Metafont fonts based on the Early Gothic manuscript
book-hand used between the 11th and 12th century AD
<LI><A href="entries/humanist.html">humanist</A>
- Humanist manuscript book-hand font
<LI><A href="entries/huncial.html">huncial</A>
- Metafont fonts based on the Half Uncial manuscript book-hand
used between the 3rd and 9th centuries
<LI><A href="entries/inslrmaj.html">inslrmaj</A>
- Metafont fonts based on the Insular Majuscule manuscript
book-hand used between the 6th and 9th centuries
<LI><A href="entries/inslrmin.html">inslrmin</A>
- Metafont fonts based on the Insular Miniscules manuscript
book-hand used from the 6th century onwards
<LI><A href="entries/pgothic.html">pgothic</A>
- Metafont fonts based on the Gothic Textura Prescisus vel
sine pedibus manuscript book-hand used from the 13th century
AD
<LI><A href="entries/rotunda.html">rotunda</A>
- Metafont fonts based on the Rotunda manuscript book-hand
used between the 13th and 15th century AD
<LI><A href="entries/sqrcaps.html">sqrcaps</A>
- Metafont fonts based on the Square Capitals manuscript
book-hand used from the 1st century AD
<LI><A href="entries/tgothic.html">tgothic</A>
- Metafont fonts based on the Gothic Textura Quadrata
manuscript book-hand used between the 13th and 15th century AD
<LI><A href="entries/uncial.html">uncial</A>
- Metafont fonts based on the Uncial manuscript book-hand used
between the 3rd and 6th century AD
</UL>
<H4><A name="runes"> </A>Runes:</H4>
<UL>
<LI><A href="entries/allrunes.html">alrunes</A>
- Fonts and LaTeX package for almost all runes
<LI><A href="entries/runic.html">runic</A>
- Fonts for Anglo-Saxon futharc script, this font was used in
England until just after printing was established
</UL>
<H3><A name="handwriting"> </A>Typesetting Handwriting:</H3>
<UL>
<LI><A href="entries/augie.html">augie</A>
- A calligraphic font for simulating informal handwriting
<LI><A href="entries/aurical.html">aurical</A>
- Calligraphic font (AuriocusKalligraphicus) for LaTeX in
T1-encoding
<LI><A href="entries/brushscr.html">brushscr</A>
- BrushScript fonts including pbsi, a Type-1 PostScript font
containing BrushScript Italic characters that simulates
hand-written characters
<LI><A href="entries/calligra.html">calligra</A>
- Calligraphic font in the handwriting style of the author,
Peter Vanroose, which may be used with the
<A href="entries/fundus.html">fundus</A> package
<LI><A href="entries/calrsfs.html">calrsfs</A>
- Nicer calligraphic letters
<LI><A href="entries/rsfs.html">rsfs</A>
- Contains MetaFont sources for fonts of uppercase script
letters for use as symbols in scientific and mathematical
typesetting, in contrast to the informal script fonts such as
that used for the 'calligraphic' symbols in the TeX math
symbol font
<LI><A href="entries/rsfs-ps.html">rsfs-ps</A>
- Converted (PostScript) outlines of the
<A href="entries/rsfs.html">rsfs</A> fonts
<LI><A href="entries/schwell.html">schwell</A>
- Calligraphic font for typesetting handwriting in Schwell
fonts
<LI><A href="entries/sueterlin.html">sueterlin</A>
- Calligraphic font for typesetting handwriting in Suetterlin
fonts
<LI><A href="entries/twcal.html">twcal</A>
- A calligraphic font which may be used for typesetting what
is called the "vereinfachte Ausgangsschrift" in
German used in school books for first form
</UL>
<H3><A name="#installfonts"> </A>Installing Fonts:</H3>
<UL>
<LI><A href="entries/fontinst.html">fontinst</A>
- TeX macros for converting Adobe Font Metric files to TeX
metric and virtual font format
<LI><A href="entries/fontinstallationguide.html">fontinstallationguide</A>
- How to install new fonts
</UL>
<H3><A name="fontsmisc"> </A>Misc:</H3>
<UL>
<LI><A href="entries/a2ac.html">a2ac</A>
- Enables the use of PostScript fonts while typesetting texts
in languages where accented letters are used. The program may
be used to prepare a font for any typesetting system,
especially TeX
<LI><A href="entries/accfonts.html">accfonts</A>
- Two utilities to permit easy manipulation of fonts, in
particular the creation of unusual accented characters
(mkt1font and vpl2vpl)
<LI><A href="entries/adobeother.html">adobeother</A>
- Font metrics for Adobe non-standard fonts
<LI><A href="entries/adobestd.html">adobestd</A>
- Font metrics for Adobe standard fonts
<LI><A href="entries/ascii.html">ascii</A>
- Support for IBM extended ASCII font
<LI><A href="entries/apl.html">apl</A>
- Fonts for typesetting APL programs
<LI><A href="entries/cirth.html">cirth</A>
- Fonts for Cirth
<LI><A href="entries/fundus.html">fundus</A>
- Providing LaTeX access to various font families
</UL>
<P>
<H2><A name="ps"> </A>PostScript Support</H2>
<P class="notes">PostScript <A href="#type1fonts">Type 1</A>, and
<A href="#type3fonts">Type 3</A> fonts are listed in the
<A href="#fonts">Fonts</A> section.
</P>
<H3><A name="dvipspack"> </A>dvips:</H3>
<UL>
<LI><A href="entries/aurora.html">aurora</A>
- Header files for dvips to make colour separations
<LI><A href="entries/dvips.html">dvips</A>
- A dvi to PostScript driver by Tom Rokicki
<LI><A href="entries/dvipsk.html">dvipsk</A>
- Convert DVI to Postscript - with KPSE search path
<LI><A href="entries/dvips-os2.html">dvips-os2</A>
- OS/2 executable for <A href="entries/dvips.html">dvips</A>
<LI><A href="entries/dvips-shell.html">dvips-shell</A>
- A <A href="entries/dvips.html">dvips</A> Shell for MS-Windows32
</UL>
<H3><A name="psnfsspack"> </A><A href="entries/psnfss.html">psnfss:</A></H3>
<P class="notes">
The <A href="entries/psnfss.html">psnfss</A> packages mathppl, mathptm,
palatino, utopia and times are obsolete and hence should not be used any more.
</P>
<UL>
<LI><A href="entries/altfont.html">altfont</A>
- A generalised replacement for some parts of
<A href="entries/psnfss.html">psnfss</A> and
<A href="entries/mfnfss.html">mfnfss</A>
<LI><A href="entries/lw35nfsx.html">lw35nfsx</A>
- LaTeX <A href="entries/psnfss.html">psnfss</A> support for
the 35 printer resident PostScript fonts using
<A href="entries/ly1.html">ly1</A> text font encoding,
employing the Berry names
<LI><A href="entries/ly1.html">ly1</A>
- The Y&Y texnansi (TeX 'n ANSI) encoding
<LI><A href="entries/psnfss.html">psnfss</A>
- Font support for common PostScript fonts, including font
definition files, macros and font metrics for common
PostScript fonts using the New Font Selection Scheme, or
NFSS2, originally implemented by Sebastian Rahtz. Implements
the following style files: avant, bookman, chancery, charter,
courier, helvet, mathpazo, mathptmx, newcent, pifont, and fourier
<LI><A href="entries/psnfss-source.html">psnfss-source</A>
- Sources (makefiles and fontinst scripts) of the PSNFSS
<LI><A href="entries/psnfssx.html">psnfssx</A>
- Extra styles and encodings for PS fonts, including Y&Y
encoding support
</UL>
<H3><A name="pstrickspack"> </A>PS-Tricks:</H3>
<P class="notes"><A href="entries/pstricks.html">PS-Tricks</A> has its own
<A href="http://www.pstricks.de">homepage</A>.
<BR>
There are more packages for drawing
<A href="#circuitdiags">curcuit diagrams</A> and for working in the
field of <A href="#electro">electronics</A>.
</P>
<UL>
<LI><A href="entries/pdftricks.html">pdftricks</A>
- Support for pstricks in
<A href="entries/pdftex.html">pdftex</A>
<LI><A href="entries/pstricks.html">PS-Tricks</A>
- An extensive collection of PostScript macros that is
compatible with most TeX macro packages, used for drawing
technical, and mathematical diagrams
<LI><A href="entries/pst-3dplot.html">pst-3dplot</A>
- Draw 3d curves and graphs using PSTricks
<LI><A href="entries/pst-bar.html">pst-bar</A>
- Produces bar charts using pstricks
<LI><A href="entries/pst-blur.html">pst-blur</A>
- PSTricks package for "blurred" shadows
<LI><A href="entries/pst-circ.html">pst-circ</A>
- PSTricks package for drawing electric circuits
<LI><A href="entries/pst-fr3d.html">pst-fr3d</A>
- Draw 3-dimensional framed boxes using PSTricks
<LI><A href="entries/pst-func.html">pst-func</A>
- PSTricks package for plotting mathematical functions
<LI><A href="entries/pst-geo.html">pst-geo</A>
- A PSTricks related package for various cartographic
projections of the terrestrial sphere
<LI><A href="entries/pst-ghsb.html">pst-ghsb</A>
- Draw HSB colour gradients
<LI><A href="entries/pst-gr3d.html">pst-gr3d</A>
- Three dimensional grids with PSTricks
<LI><A href="entries/pst-infixplot.html">pst-infixplot</A>
- Using pstricks plotting capacities with infix expressions
rather than RPN
<LI><A href="entries/pst-jftree.html">pst-jftree</A>
- Drawing trees for use in linguistic analysis
<LI><A href="entries/pst-lens.html">pst-lens</A>
- Lenses with PSTricks
<LI><A href="entries/pst-light3d.html">pst-light3d</A>
- Three ensional lighting effects on characters and PSTricks
graphics, like lines, curves, plots, etc.
<LI><A href="entries/pst-math.html">pst-math</A>
- Enhancement of postscript math operators to use with
pstricks
<LI><A href="entries/pst-node.html">pst-node</A>
- Allows you to define nodes in your document, and to draw
connections between the nodes
<LI><A href="entries/pst-optic.html">pst-optic</A>
- Optic drawings: lenses and mirrors
<LI><A href="entries/pst-osci.html">pst-osci</A>
- Enables you to produce oscilloscope "screen shots"
<LI><A href="entries/pst-poly.html">pst-poly</A>
- Drawing polygons with PSTricks
<LI><A href="entries/pst-slpe.html">pst-slpe</A>
- Sophisticated colour gradients
<LI><A href="entries/pst-uml.html">pst-uml</A>
- Support for drawing moderately complex UML (Universal
Modelling Language) diagrams
<LI><A href="entries/pst-vue3d.html">pst-vue3d</A>
- Draw perspective views of three dimensional objects
<LI><A href="entries/pst-xkey.html">pst-xkey</A>
- Key-value syntax for pstricks packages
</UL>
<H3><A name="psmisc"> </A>Misc:</H3>
<UL>
<LI><A href="entries/cep.html">cep</A>
- Compression tools for PostScript
<LI><A href="entries/pslatex.html">pslatex</A>
- A small package that makes LaTeX default to
"standard" PostScript fonts. It is basically a
merger of the obsolete <A href="entries/times.html">times</A>
and <A href="entries/mathptm.html">mathptm</A> styles from
the <A href="entries/psnfss.html">psnfss</A> suite of
packages, and hence should not be used any more
</UL>
<P>
<H2><A name="pdf"> </A>Creating PDF Documents</H2>
<H3><A name="pdftexdiv"> </A>PDFTeX:</H3>
<UL>
<LI><A href="entries/pdftex.html">pdftex</A>
- An extension of TeX which directly generates PDF documents
instead of DVI
<LI><A href="entries/pdftex_oztex.html">pdftex_oztex</A>
- PdfTeX designed to run with OzTeX
</UL>
<H3><A name="pdfpacks"> </A>Packages for Special PDF Features:</H3>
<UL>
<LI><A href="entries/attachfile.html">attachfile</A>
- Attaching files to PDF documents
<LI><A href="entries/hyperref.html">hyperref</A>
- Extensive support for hypertext in LaTeX
<LI><A href="entries/microtype.html">microtype</A>
- Provides a LaTeX interface to pdfTeX's micro-typographic
extensions: character protrusion and font expansion. See also
<A href="entries/pdfcprot.html">pdfcprot</A>
<LI><A href="entries/pdfcprot.html">pdfcprot</A>
- Activating and setting of character protruding using
pdflatex. See also
<A href="entries/microtype.html">microtype</A>
<LI><A href="entries/pdfcrop.html">pdfcrop</A>
- Crop PDF graphics
<LI><A href="entries/pdfcrypt.html">pdfcrypt</A>
- Allows the setting of pdf encryption options for pdfTeX and VTeX
<LI><A href="entries/pdfpages.html">pdfpages</A>
- Include pages from external PDF documents in LaTeX documents
<LI><A href="entries/pdfscreen.html">pdfscreen</A>
- An extension of the <A href="entries/hyperref.html">hyperref</A>
package to provide a screen-based document design
<LI><A href="entries/pdfslide.html">pdfslide</A>
- Make nive presentation slides using pdftex
<LI><A href="entries/pdftricks.html">pdftricks</A>
- Support for pstricks in pdftex
<LI><A href="entries/thumbpdf.html">thumbpdf</A>
- Provides support, using Perl, for thumbnails in pdfTeX and
dvips/ps2pdf
</UL>
<H3><A name="pdffonts"> </A>Fonts for PDF Files:</H3>
<UL>
<LI><A href="entries/ae.html">ae</A>
- Virtual fonts for PDF-files with T1 encoded CMR-fonts
<LI><A href="entries/aeguill.html">aeguill</A>
- A package adding several kinds of guillemets to the ae fonts
</UL>
<H3><A name="pdfview"> </A>PDF Viewers and Tools:</H3>
<UL>
<LI><A href="entries/a2ping.html">a2ping</A>
- A UNIX command line utility written in Perl that converts
many raster image and vector graphics formats to EPS or PDF
and other page description formats
<LI><A href="entries/acroread.html">acroread</A>
- A tool from Adobe for reading Adobe <A href="#pdf">PDF</A>
files available for a variety of architectures
<LI><A href="entries/xpdf.html">xpdf</A>
- Previewing and manipulating upon PDF files on most platforms
available
</UL>
<P>
<H2><A name="combine"> </A>Combining Documents</H2>
<P class="notes">
For linking documents by
<A href="#crossref">crossreferences</A> use <A href="entries/xr.html">xr</A>.
<BR>
See also <A href="#splitup">Managing large Documents</A>.
</P>
<UL>
<LI><A href="entries/askinclude.html">askinclude</A>
- Asks the user which files to put in a \includeonly command
<LI><A href="entries/chapterfolder.html">chapterfolder</A>
- Package that simplifies working with folder structure;
useful for organizing complex projects
<LI><A href="entries/combine.html">combine</A>
- Bundle individual documents into a single document, such as
when preparing a conference proceedings
<LI><A href="entries/csvtools.html">csvtools</A>
- Allows you to repeatedly perform a set of LaTeX commands on
data in each row of a comma separated variable (CSV) file
<LI><A href="entries/cwebhy.html">cwebhy</A>
- Insert hyperlinks for included files
<LI><A href="entries/dviconcat.html">dviconcat</A>
- Concatenates dvi files
<LI><A href="entries/dvicopy.html">dvicopy</A>
- Copy and concatenate DVI files
<LI><A href="entries/pdfpages.html">pdfpages</A>
- Include pages from external PDF documents in LaTeX documents
<LI><A href="entries/texdepend.html">texdepend</A>
- Find dependencies in a LaTeX file
<LI><A href="entries/textmerg.html">textmerg</A>
- Merge text in TeX and LaTeX. Useful, for example, in mail
merge
<LI><A href="entries/twoinone.html">twoinone</A>
- Print two pages on a single page (a4paper landscape)
<LI><A href="entries/twoup.html">twoupe</A>
- Print two virtual pages on each physical page
<LI><A href="entries/twoupltx.html">twoupltx</A>
- Print two virtual pages on each physical page
<LI><A href="entries/tvs.html">tvs</A>
- A Perl script to collect all files which are needed to
re-typeset TeX documents by parsing TeX logs
</UL>
<P>
<H2><A name="bundling"> </A>Bundling all Packages necessary for
compiling a Document</H2>
<UL>
<LI><A href="entries/bundledoc.html">bundledoc</A>
- Bundle together all the files needed to build a LaTeX
document
<LI><A href="entries/snapshot.html">snapshot</A>
- List the external dependencies of a LaTeX document
</UL>
<P>
<H2><A name="revision"> </A>Managing different versions of your
document</H2>
<P class="notes">
See also <A href="#combine">Combining Documents</A>, and
<A href="#splitup">Managing large documents</A>.
</P>
<UL>
<LI><A href="entries/changebar.html">changebar</A>
- Generate changebars in LaTeX documents for indicating which
parts of the text have changed
<LI><A href="entries/chappg.html">chappg</A>
- Package for page numbering by chapter
<LI><A href="entries/comment.html">comment</A>
- Selectively include/ exclude pieces of text, allowing the
user to define new, separately controlled, comment versions
<LI><A href="entries/draftcopy.html">draftcopy</A>
- Places the word DRAFT (or other words) in light grey
diagonally across the background (or at the bottom) of each
(or selected) pages of the document
<LI><A href="entries/extract.html">extract</A>
- Extract specific content from a source document and write
that to a target document
<LI>pdfdraftcopy
- A package derived from the
<A href="entries/draftcopy.html">draftcopy</A>
package for use with
<A href="entries/pdftex.html">pdftex</A>
<LI><A href="entries/optional.html">optional</A>
- Facilitate optional printing of parts of a document
<LI><A href="entries/prelim2e.html">prelim2e</A>
- Allows the marking of preliminary versions of a document, by
default marking the document as draft and putting a timestamp on
it. Can be used together with e.g. the
<A href="entries/version.html">version</A>,
<A href="entries/rcs.html">rcs</A>, and
<A href="entries/rcsinfo.html">rcsinfo</A> packages and it may
be used with the scrtime package from the
<A href="entries/koma-script.html">koma-script</A> bundle.
<LI><A href="entries/rcs.html">rcs</A>
- Use RCS (revision control system) tags in LaTeX documents
<LI><A href="entries/rcsinfo.html">rcsinfo</A>
- A package to extract RCS (Revision Control System)
information and use it in a LaTeX document
<LI><A href="entries/svn.html">svn</A>
- Lets you typeset (in LaTeX) the value of Subversion keywords
which is approximately an equivalent to the
<A href="entries/rcs.html">rcs</A> package, but for
<A href="http://subversion.tigris.org/">Subversion</A>
rather than CVS
<LI><A href="entries/svninfo.html">svninfo</A>
- A package for incorporating the values of Subversion
keywords into typeset documents
<LI><A href="entries/version.html">version</A>
- Add version number to DVI file
<LI><A href="entries/versions.html">versions</A>
- This package does the same as the
<A href="entries/version.html">version</A> package, but
corrects, improves, and extends it in both implementation and
function
</UL>
<P>
<H2><A name="splitup"> </A>Managing large Documents</H2>
<P class="notes">
See also <A href="#combine">Combining Documents</A>, and
<A href="#revision">Managing different versions of your document</A>.
</P>
<UL>
<LI><A href="entries/chapterfolder.html">chapterfolder</A>
- Provides a macro to define chapter/ section/ subsection
folders that contain the files for chapter/section/subsection,
and provides a macro that allows inclusion without using the
full path
<LI><A href="entries/collect.html">collect</A>
- Provides a 'collect' environment, that typesets text and
saves it for later re-use. (A variant collects text in a
macro.)
<LI><A href="entries/import.html">import</A>
- Allow input of a file with its own inputs from another
directory
<LI><A href="entries/progress.html">progress</A>
- A package which. when compiling TeX and LaTeX documents,
generates a HTML file showing an overview of a documents'
state (of how finished it is)
</UL>
<P>
<H2><A name="languages"> </A>Multilingual Support</H2>
<P class="notes">
Try the <A href="entries/parallel.html">parallel</A>
package for typesetting bilingual versions of a text side by side in
two columns. <A href="entries/parrun.html">parrun</A> may be useful
for typesetting two streams of text running parallel one above the
other.
<BR>There are packages for typesetting
<A href="#critical">critical editions</A> too.
<BR>You may also typeset two-language
<A href="#dictio">dictionaries</A> using LaTeX2e.
<BR><BR><A href="#omega">Omega</A> is intended for multilingual
typesetting, supporting unicode and bi-directional typesetting.
</P>
<H3><A name="babel"> </A>Misc:</H3>
<H4>The <I>babel</I> Package:</H4>
<UL>
<LI>The <A href="entries/babel.html">babel</A>
package currently provides support for 41 languages in all,
both modern and ancient. It should be used whenever possible
as <I>babel</I> is available on all LaTeX systems.
</UL>
<H4><A name="multilingbiblio"> </A>Multilingual Bibliographies:</H4>
<UL>
<LI><A href="entries/babelbib.html">babelbib</A>
- Generate multilingual bibliographies in cooperation with <A
href="entries/babel.html">babel</A>
</UL>
<H3><A name="arabic"> </A>Arabic:</H3>
<UL>
<LI><A href="entries/arabtex.html">arabtex</A>
- Macros and fonts for typesetting Arabic and Hebrew
</UL>
<H3><A name="armenian"> </A>Armenian:</H3>
<UL>
<LI><A href="entries/armenian.html">armenian</A>
- Write in Armenian with TeX
<LI><A href="entries/armtex.html">armtex</A>
- An Armenian system for TeX/LaTeX(2e)/METAFONT
</UL>
<H3><A name="basqu"> </A>Basque:</H3>
<UL>
<LI><A href="entries/bahyph.html">bahyph</A>
- Hyphenation patterns for basque at CTAN:language/basque
</UL>
<H3><A name="bangl"> </A>Bangla and Asamese:</H3>
<UL>
<LI><A href="entries/bangtex.html">bangtex</A>
- Class files for writing Bangla and Asamese with LaTeX
</UL>
<H3><A name="bengal"> </A>Bengali:</H3>
<UL>
<LI><A href="entries/arosgn.html">arosgn</A>
- Support for the Bengali language
<LI><A href="entries/pandey.html">pandey</A>
- Support for the Bengali language
</UL>
<H3><A name="burm"> </A>Burmese:</H3>
<UL>
<LI><A href="entries/burmese.html">burmese</A>
- basic support for writing Burmese with LaTeX. Requires
<A href="#perl">Perl</A>.
</UL>
<H3><A name="casy"> </A>Casyl:</H3>
<UL>
<LI><A href="entries/casyl.html">casyl</A>
- Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics
</UL>
<H3><A name="cherok"> </A>Cherokee:</H3>
<UL>
<LI><A href="entries/cherokee.html">cherokee</A>
- Fonts for typesetting Cherokee
<LI><A href="entries/ocherokee.html">ocherokee</A>
- Typesetting the Chirokee language with the
<A href="#omega">Omega</A> version of LaTeX
</UL>
<H3><A name="cjk"> </A>Chinese, Japanese, Korean:</H3>
<P class="notes">
For information on Chinese TeX see <A href="http://www.ctex.org/">the CTeX homepage</A>.
</P>
<UL>
<LI><A href="entries/china2e.html">china2e</A>
- A LaTeX package to produce Chinese calendar symbols of the
old Chinese lunisolar calendar
<LI><A href="entries/cjk.html">cjk</A>
- A macro package which enables the use of
Chinese/ Japanese/ Korean with LaTeX2e
<LI><A href="entries/cjk-fonts.html">cjk-fonts</A>
- Fonts to go with the
<A href="entries/cjk.html">cjk</A> macro package for
Chinese/ Japanese/ Korean with LaTeX2e
<LI><A href="entries/hlatex.html">hlatex</A>
- Support for Korean documents written in Korean standard KSC
codes for LaTeX2e
<LI><A href="entries/manjutex.html">manjutex</A>
- Manju language support
<LI><A href="entries/mnttex.html">mnttex</A>
- Assists in typing special Chinese characters
<LI><A href="entries/uhc-gothic.html">uhc-gothic</A>
- Fonts for the Korean language
<LI>zwtex
-
</UL>
<H3><A name="copt"> </A>Coptic:</H3>
<UL>
<LI><A href="entries/coptic.html">copte</A>
- Coptic Fonts
</UL>
<H3><A name="croat"> </A>Croatian:</H3>
<UL>
<LI><A href="entries/croatian.html">croatian</A>
- Fonts for typesetting Croatian scripts
<LI><A href="entries/hrhyph.html">hrhyph</A>
- Hyphenation patterns for the Croatian language
</UL>
<H3><A name="cyril"> </A>Cyrillic:</H3>
<UL>
<LI><A href="entries/ascii-cyrillic.html">ascii-cyrillic</A>
- A converter for 8-Bit Russian and Ukrainian text to the
Latin alphabet (7-Bit ASCII).
<LI><A href="entries/cmcyr.html">cmcyr</A>
- Computer Modern fonts extended with Russian letters, in
MetaFont sources and ATM Compatible
<LI><A href="entries/cmcyralt.html">cmcyralt</A>
- Alternative Russian encoding support
<LI><A href="entries/cyrtug.html">CyrTUG</A>
- The CyrTUG distribution for
<A href="entries/emtex.html">emtex</A>
<LI><A href="entries/lh.html">lh</A>
- The lh fonts for the `T2'/X2 encodings
<LI><A href="entries/izhitsa.html">izhitsa</A>
- Support for the old Russian font "Izhitsa"
<LI><A href="entries/ot2cyr.html">ot2cyr</A>
- Macros to use the OT2 Cyrillic encoding
<LI><A href="entries/rawprint.html">rawprint</A>
- Print raw Russian text
</UL>
<H3><A name="czech"> </A>Czech and Slovene:</H3>
<UL>
<LI><A href="entries/czech.html">czech</A>
- Typeset Czech documents
<LI><A href="entries/csfonts.html">csfonts</A>
- Czech/Slovak-tuned MetaFont Computer Modern fonts
<LI><A href="entries/cslatex.html">cslatex</A>
- LaTeX support for Czech/Slovak typesetting
<LI><A href="entries/csplain.html">csplain</A>
- Plain TeX support for Czech/Slovak typesetting
<LI><A href="entries/cspsfonts.html">cspsfonts</A>
- Czech and Slovakian PostScript fonts
<LI><A href="entries/czhyph2e.html">czhyph2e</A>
- A Perl script czhyph2e.pl by Werner Lemberg which converts
the Czech hyphenation pattern as distributed on the CTAN
network from the PC encoding into a form usable by LaTeX2e
with T1 fontencoding (DC fonts)
<LI><A href="entries/sihyph23.html">sihyph23</A>
- Slovene hyphenation patterns
<LI><A href="entries/slovak.html">slovak</A>
- Typeset Slovakian documents
</UL>
<H3><A name="devan"> </A>Devangari:</H3>
<UL>
<LI><A href="entries/devanagari.html">devanagari</A>
- Frans Velthuis' preprocessor for Devanagari text, and fonts
and macros to use when typesetting the processed text
</UL>
<H3><A name="dutch"> </A>Dutch:</H3>
<UL>
<LI><A href="entries/beletter.html">beletter</A>
- A small class for typesetting Belgium letters
<LI><A href="entries/ntgclass.html">ntgclass</A>
- Versions of the standard LaTeX article and report classes,
rewritten to reflect a more European design, by the Dutch TeX
Users Group
</UL>
<H3><A name="englishlang"> </A>English</H3>
<UL>
<LI><A href="entries/ukhyph.html">ukhyph</A>
- Hyphenation patterns for British English
<LI><A href="entries/ushyph.html">ushyph</A>
- Extended US hyphenation patterns
</UL>
<H3><A name="epiolmec"> </A>Epi-Olmec:</H3>
<UL>
<LI><A href="entries/epiolmec.html">epiolmec</A>
- Typesetting the Epi-Olmec language used in Southern Middle
America until about 500 AD
</UL>
<H3><A name="ethiop"> </A>Ethiopian:</H3>
<UL>
<LI><A href="entries/ethiop.html">enthiop</A>
- Ethiopian language support for the babel package, including
a collection of fonts and TeX macros for typesetting the
characters of the languages of Ethiopia, with fonts based on
EthTeX originally distributed by Abass B. Alamnehe
</UL>
<H3><A name="french"> </A>French:</H3>
<UL>
<LI><A href="entries/aeguill.html">aeguill</A>
- A package adding several kinds of guillemets (polish cmr,
cyrillic cmr, lasy and ec) to the
<A href="entries/ae.html">ae</A> fonts. It is useful if
you are using the ae fonts to produce
<A href="#pdf">PDF</A> files, since the
additional guillemets exist in Type 1 versions
<LI><A href="entries/beletter.html">beletter</A>
- A small class for typesetting Belgium letters
<LI><A href="entries/bib-fr.html">bib-fr</A>
- French translation of classical BibTeX styles
<LI><A href="entries/esieecv.html">esieecv</A>
- <A href="#applications">Curriculum vitae</A> for French
<LI><A href="entries/frenchle.html">frenchle</A>
- French option for Babel (also independently)
<LI><A href="entries/frenchpro.html">frenchpro</A>
- Professional typesetting of French documents (for Windows
and up to Mac OS 9)
<LI><A href="entries/french-translations.html">french-translations</A>
- French translation project for documentation of LaTeX packages
<LI><A href="entries/frhyph.html">frhyph</A>
- French hyphenation patterns
<LI><A href="entries/lettre.html">lettre</A>
- Letters and faxes in French
</UL>
<H3><A name="german"> </A>German:</H3>
<UL>
<LI><A href="entries/brief.html">brief</A>
- German letter style
<LI><A href="entries/dinat.html">dinat</A>
- Bibliography style files intended for texts in german in
accordance with the german DIN 1505, parts 2 and 3
<LI><A href="entries/dinbrief.html">dinbrief</A>
- Implements a document layout for writing letters according
to the rules of DIN
<LI><A href="entries/fribrief.html">fribrief</A>
- A LaTeX class for writing letters
<LI><A href="entries/g-brief.html">g-brief</A>
- Serves for formatting formless letters in German or English
language
<LI><A href="entries/german.html">german</A>
- Support for traditional German typography
<LI><A href="entries/germbib.html">germbib</A>
- German variants of standard BibTeX styles
<LI><A href="entries/germdoc.html">germdoc</A>
- Guide to <A href="entries/german.html">german</A>
<LI><A href="entries/ngerman.html">ngerman</A>
- Supports the new German orthography, or Neue deutsche
Rechtschreibung
</UL>
<H3><A name="greek"> </A>Greek:</H3>
<P class="notes">
For typesetting ancient Greek use the
<A href="entries/babel.html">babel</A> package
with the option <I>polutonikogreek</I>.
<BR><BR>See <A href="#humanities">"Humanities"</A> for more
references on the Humanities.
</P>
<UL>
<LI><A href="entries/betababel.html">betababel</A>
- Provides a simple way to insert ancient greek texts with
diacritical characters into your document through the commonly
used Beta Code transliteration
<LI><A href="entries/bgreek.html">bgreek</A>
- Implements a dialect of the Beta Code encoding (TLG and
Perseus Project) for typesetting classical Greek using Claudio
Beccari's Greek Fonts
<LI><A href="entries/cbgreek.html">cbgreek</A>
- MetaFont source files for a complete set of Greek fonts
<LI><A href="entries/cypriot.html">cypriot</A>
- Provides a Metafont version of a syllabic script which was
used on Cyprus for writing Greek between approximately the
tenth and third centuries BC; part of the
<A href="entries/archaic.html">archaic</A> fonts
<LI><A href="entries/greek4cbc.html">greek4cbc</A>
- A Greek monumental font as used on a stele in Athens in
394BC
<LI><A href="entries/greek6cbc.html">greek6cbc</A>
- This Greek font is typical of those used in the 6th century
BC
<LI><A href="entries/hellas.html">hellas</A>
- Typeset bibliographies which include Greek using
<A href="entries/bibtex.html">bibtex</A>
<LI><A href="entries/hyphenation-greek.html">hyphenation-greek</A>
- Hyphenation patterns for ancient and modern Greek
<LI><A href="entries/kdgreek.html">kdgreek</A>
- Greek fonts
<LI><A href="entries/lgreek.html">lgreek</A>
- Macros for using Silvio Levy's Greek fonts
<LI><A href="entries/macgreek.html">macgreek</A>
- Greek language support for the macintosh
<LI><A href="entries/mtgreek.html">mtgreek</A>
- Use italic and upright greek letters with
<A href="entries/mathtime">mathtime</A>
<LI><A href="entries/upgreek.html">upgreek</A>
- Provides the upright Greek letters from the Euler or Adobe
Symbol fonts as additional math symbols, with proper scaling
in super- and subscripts
</UL>
<H3><A name="gurmuk"> </A>Gurmukhi:</H3>
<UL>
<LI><A href="entries/gurmukhi.html">gurmukhi</A>
- Gurmukhi (a Punjabi language) for TeX, including a converter
from us-ascii to Gurmukhi
</UL>
<H3><A name="hebrew"> </A>Hebrew:</H3>
<UL>
<LI><A href="entries/arabtex.html">arabtex</A>
- Macros and fonts for typesetting Arabic and Hebrew
<LI><A href="entries/cjhebrew.html">cjhebrew</A>
- Typesetting Hebrew
<LI><A href="entries/makor.html">makor</A>
- A system for typesetting Hebrew with TeX
<LI><A href="entries/makor2.html">Makor 2</A>
- Typeset Hebrew with vowels or liturgical accents, Yiddish,
documents prepared using
<A href="entries/arabtex.html">arabtex</A> Hebrew conventions,
Biblia Hebraica Stuttgartensia, and Old Hebrew with
<A href="entries/omega.html">omega</A>
<LI><A href="entries/pcfonts.html">pcfonts</A>
- Support for Hebrew
</UL>
<H3><A name="hungarian"> </A>Hungarian:</H3>
<UL>
<LI><A href="entries/huhyph.html">huhyph</A>
- Hyphenation patterns for the Hungarian language
</UL>
<H3><A name="iceland"> </A>Icelandic:</H3>
<UL>
<LI><A href="entries/icelandic.html">icelandic</A>
- Icelandic fonts
</UL>
<H3><A name="india"> </A>Indian:</H3>
<UL>
<LI><A href="entries/itrans.html">itrans</A>
- The Indian Language Transliteration package
</UL>
<H3><A name="inukti"> </A>Inuktitut:</H3>
<UL>
<LI><A href="entries/oinuit.html">oinuit</A>
- A set of Lambda (<A href="#omega">omega</A> LaTeX)
typesetting tools for the Inuktitut language
</UL>
<H3><A name="italian"> </A>Italian:</H3>
<UL>
<LI><A href="entries/cdpbundl.html">C.D.P. Bundle</A>
- Business letters in the Italian style
<LI><A href="entries/ithyph.html">ithyph</A>
- Italian hyphenation
</UL>
<H3><A name="japan"> </A>Japanese:</H3>
<P class="notes">See also <A href="#cjk">CJK</A>.
</P>
<H3><A name="korea"> </A>Korean:</H3>
<P class="notes">See also <A href="#cjk">CJK</A>.
</P>
<UL>
<LI><A href="entries/hlatex.html">hlatex</A>
- Support for Korean documents written in Korean standard KSC
codes for LaTeX2e
<LI><A href="entries/uhc-gothic.html">uhc-gothic</A>
- Fonts for the Korean language
</UL>
<H3><A name="latin"> </A>Latin:</H3>
<UL>
<LI>lahyph
- Hyphenation patterns for typesetting Latin, part of the
<A href="entries/babel.html">babel</A> package
</UL>
<H3><A name="malay"> </A>Malayam:</H3>
<UL>
<LI><A href="entries/malayalam.html">malayalam</A>
- Fonts for typesetting Malayalam, with a pre-processor
</UL>
<H3><A name="manjua"> </A>Manju:</H3>
<UL>
<LI><A href="entries/manjutex.html">manjutex</A>
- Manju language support
</UL>
<H3><A name="mongol"> </A>Mongolian:</H3>
<UL>
<LI><A href="entries/montex.html">montex</A>
- Provides Mongolian support for LaTeX2e (now
<A href="#cyril">Cyrillic</A>, but soon also Classical
Mongolian)
</UL>
<H3><A name="polish"> </A>Polish:</H3>
<UL>
<LI><A href="entries/antp.html">antp</A>
- Type 1 family of Polish traditional type Antykwa Torunska
<LI><A href="entries/antt.html">antt</A>
- Type 1 family of Polish traditional type Antykwa Torunska
<LI><A href="entries/anttvf.html">anttvf</A>
- Virtual fonts for PostScript Antykwa Torunska font
<LI><A href="entries/cc-pl.html">cc-pl</A>
- Polish extension of Computer Concrete fonts (MetaFont
sources)
<LI><A href="entries/cc-plps.html">cc-plps</A>
- Polish extension of Computer Concrete fonts in Type1 format
<LI><A href="entries/gustlib.html">gustlib</A>
- Various small utility packages for typesetting in plain TeX,
with a Polish perspective
<LI><A href="entries/mex.html">mex</A>
- An adaptation of Plain TeX and LaTeX209 formats to the
Polish language and to the Polish printing customs
<LI><A href="entries/ogonek.html">ogonek</A>
- Support for Polish typography and the ogonek
<LI><A href="entries/plfonts.html">plfonts</A>
- Polish extension to CM fonts
</UL>
<H3><A name="portu"> </A>Portuguese:</H3>
<UL>
<LI><A href="entries/pthyphs.html">pthyphs</A>
- Hyphenation patterns for Portuguese
</UL>
<H3><A name="roman"> </A>Romanian:</H3>
<UL>
<LI><A href="entries/romaniantex.html">romaniantex</A>
- A LaTeX2e package for type-setting Romanian in a
multi-lingual TeX environment
</UL>
<H3><A name="russian"> </A>Russian:</H3>
<P class="notes">See packages for typesetting
<A href="#cyril">Cyrillic</A> encodings, and fonts.
</P>
<H3><A name="sanskr"> </A>Sanskrit:</H3>
<UL>
<LI><A href="entries/sanskrit.html">sanskrit</A>
- A font and pre-processor suitable for the production of
documents written in Sanskrit
</UL>
<H3><A name="sinhal"> </A>Sinhala:</H3>
<UL>
<LI><A href="entries/sinhala.html">sinhala</A>
- Support for the sinhala language
</UL>
<H3><A name="slove"> </A>Slovene:</H3>
<UL>
<LI><A href="entries/sihyph23.html">sihyph23</A>
- Slovene hyphenation patterns
</UL>
<H3><A name="somali"> </A>Somali:</H3>
<UL>
<LI><A href="entries/osmanian.html">osmanian</A>
- Osmanian fonts by Alan Stanier for writing Somali
</UL>
<H3><A name="spanish"> </A>Spanish:</H3>
<UL>
<LI><A href="entries/esindex.html">esindex</A>
- Typset index entries in Spanish documents
<LI><A href="entries/spanish.html">spanish</A>
- Various TeX related files for typesetting documents written
in Spanish, including hyphenation and dictionaries
</UL>
<H3><A name="sweden"> </A>Swedish:</H3>
<UL>
<LI><A href="entries/sehyph.html">sehyph</A>
- Hyphenation patterns for Swedish
<LI><A href="entries/swebib.html">swebib</A>
- Swedish translation of standard BibTeX styles
<LI><A href="entries/swetex.html">swetex</A>
- Plain TeX support for writing Swedish
<LI><A href="entries/slatex.html">slatex</A>
- LaTeX support for writing Swedish
</UL>
<H3><A name="tamil"> </A>Tamil:</H3>
<UL>
<LI><A href="entries/wntamil.html">wntamil</A>
- Tamil to TeX converter
</UL>
<H3><A name="telug"> </A>Telugu:</H3>
<UL>
<LI><A href="entries/telugu.html">telugu</A>
- Plain TeX, and LaTeX support for writing in Telugu
</UL>
<H3><A name="tibet"> </A>Tibetan:</H3>
<UL>
<LI><A href="entries/ctib4tex.html">ctib4tex</A>
- Tibetan for TeX and LATeX2e; no external preprocessor is
needed
<LI><A href="entries/pecha.html">pecha</A>
- Provides an environment for writing Tibetan on LaTeX2e in
the traditional Tibetan Pecha layout
<LI><A href="entries/ttt.html">ttt</A>
- A Tibetan Transcript Transliterator for LaTeX
</UL>
<H3><A name="turkey"> </A>Turkish:</H3>
<UL>
<LI><A href="entries/turkish.html">turkish</A>
- Fonts and macros for Ottoman Turkish and Modern Turkish in
Roman letter transcription
</UL>
<H3><A name="ukraine"> </A>Ukrainian:</H3>
<P class="notes"> A converter from cyrillic letters to ASCII is
<A href="entries/ascii-cyrillic.html">ascii-cyrillic</A>
<BR>See also packages for <A href="#cyril">cyrillic</A> encodings, and
fonts.
</P>
<UL>
<LI><A href="entries/ukrhyph.html">ukrhyph</A>
- Ukrainian hyphenation patterns
</UL>
<H3><A name="vietnam"> </A>Vietnamese:</H3>
<UL>
<LI><A href="entries/tcvn.html">tcvn</A>
- A package for vietnamese TCVN encoding which is widely used
in MS-Windows applications
<LI><A href="entries/vncmr.html">vncmr</A>
- A Vietnamese extension of the cmr fonts
<LI><A href="entries/vntex.html">vntex</A>
- Vietnamese LaTeX and Plain TeX support
</UL>
<H3><A name="misclang"> </A>Misc:</H3>
<UL>
<LI><A href="entries/accents.html">accents</A>
- Multiple accents with nice features concerning creation of
accents and placement of scripts
</UL>
<P>
<H2><A name="office"> </A>"Office" Applications</H2>
<H3><A name="letters"> </A>Writing Letters, Faxes, Memos, and Newsletters:</H3>
<P class="notes">
The <A href="entries/koma-script.html">koma-script</A>
bundle provides a letter class of its own called <I>scrlttr2</I>.
<BR>
There are also <A href="#bizcards">packages for producing labels and for
addressing envelopes.</A>
</P>
<UL>
<LI><A href="entries/akletter.html">akletter</A>
- Extends LaTeX's usual letter class, providing support for
building your own letterhead and marking fold points for
window envelopes
<LI><A href="entries/beletter.html">beletter</A>
- A small class for typesetting Belgium letters
<LI><A href="entries/brief.html">brief</A>
- German private letter class
<LI><A href="entries/cdpbundl.html">C.D.P. Bundle</A>
- Business letters in the Italian style
<LI><A href="entries/dinbrief.html">dinbrief</A>
- German letter class implementing a document layout for
writing letters according to the rules of DIN
<LI><A href="entries/envlab.html">envlab</A>
- Package for producing mailing envelopes and labels,
including barcodes and address formatting according to the US
Postal Service rules
<LI><A href="entries/facsimile.html">facsimile</A>
- Provides a simple interface for creating a fax with LaTeX
<LI><A href="entries/fax.html">fax</A>
- Document class for preparing faxes
<LI><A href="entries/fribrief.html">fribrief</A>
- A LaTeX class for writing letters
<LI><A href="entries/formlett.html">formlett</A>
- Letters to multiple recipients
<LI><A href="entries/g-brief.html">g-brief</A>
- Formless letters in German, or English
<LI><A href="entries/gtex-letter.html">gtex-letter</A>
- A Gnome assistant (wizard/druid) to ease the writing of
LaTeX letters
<LI><A href="entries/lettre.html">lettre</A>
- Letters and faxes in French.
<LI><A href="entries/myletter.html">myletter</A>
- Another letter package
<LI><A href="entries/newlfm.html">newlfm</A>
- Integrates the letter class with fancyhdr and geometry to
automatically make letterhead stationary. Useful for writing
letters, fax, and memos
<LI><A href="entries/newsletr.html">newsletr</A>
- Macros to help create newsletters and newspapers
<LI><A href="entries/postcards.html">postcards</A>
- Facilitates mass-mailing of postcards (junkmail, US standard size)
<LI><A href="entries/ticket.html">ticket</A>
- Make labels, visting-cards, pins with LaTeX
</UL>
<H3><A name="meetingprotocols"> </A>Meeting protocols:</H3>
<UL>
<LI><A href="entries/assignment.html">assignment</A>
- Typesetting homework or lab assignments
<LI><A href="entries/minutes.html">minutes</A>
- Package for writing minutes of meetings
<LI><A href="entries/protocol.html">protocol</A>
- Typeset meeting protocols
</UL>
<H3><A name="address"> </A>Keeping Lists of Addresses and Mass-Mailing:</H3>
<P class="notes">
The <A href="entries/koma-script.html">koma-script</A>
bundle provides <I>scraddr</I> that goes with the <I>scrlttr2</I>
letter class for using address data in letters.
</P>
<UL>
<LI><A href="entries/adrconv.html">adrconv</A>
- A collection of BibTeX style files to turn an address
database stored in the .bib format into files suitable for
printing as address books or included into letter classes
<LI><A href="entries/adrlist.html">adrlist</A>
- Using address lists in LaTeX
<LI><A href="entries/csvtools.html">csvtools</A>
- Allows you to repeatedly perform a set of LaTeX commands on
data in each row of a comma separated variable (CSV) file
<LI><A href="entries/delimtxt.html">delimtxt</A>
- Read and parse text tables. Can be used for serial letters
and the like, making it easier to export the data file from
MS-Excel/MS-Word
<LI><A href="entries/directory.html">directory</A>
- A package for LaTeX and BibTeX that facilitates the
construction, maintenance and exploitation of an address
book-like database
<LI><A href="entries/formlett.html">formlett</A>
- Letters to multiple recipients
<LI><A href="entries/mailing.html">mailing</A>
- Macros for mail merging
<LI><A href="entries/postcards.html">postcards</A>
- Facilitates mass-mailing of postcards (junkmail, US standard size)
<LI><A href="entries/textmerg.html">textmerg</A>
- Merge text in TeX and LaTeX. Useful, for example, in mail merge
</UL>
<H3><A name="calendar"> </A>Calendars, Date and Time:</H3>
<UL>
<LI><A href="entries/advdate.html">advdate</A>
- Provides macros which can add a specified number of days to
the current date (as specified in \today) and print
it. Intended for use, for example, in invoices payable within
14 days from today etc
<LI><A href="entries/calendar.html">calendar</A>
- Organizes date items in a format suitable for conference
schedules, itineraries, academic teaching timetables and the
like
<LI><A href="entries/calxxxx.html">calxxxx</A>
- Prints a card-size calendar for any year, AD or BC, with
Gregorian or Julian leap rules
<LI><A href="entries/china2e.html">china2e</A>
- A LaTeX package to produce Chinese calendar symbols of the
old Chinese lunisolar calendar
<LI><A href="entries/clock.html">clock</A>
- Graphical and textual clocks for TeX and LaTeX
<LI><A href="entries/dates.html">dates</A>
- Macros for parsing date strings
<LI><A href="entries/datetime.html">datetime</A>
- Change format of \today with commands for current time
<LI><A href="entries/datenumber.html">datenumber</A>
- Convert a date into a number and vice versa
<LI><A href="entries/isodate.html">isodate</A>
- Tune the output format of the \today command
<LI><A href="entries/kalendar.html">kalendar</A>
- A calendar style
<LI><A href="entries/kalender.html">kalender</A>
- Style file for creating a calendar (in German)
<LI><A href="entries/plcalendar.html">plcalendar</A>
- Plain macros for making nice calendars
<LI><A href="entries/termcal.html">termcal</A>
- Print a term calendar for use in planning a class
<LI><A href="entries/timesht.html">timesht</A>
- Package for typesetting time sheets
</UL>
<H3><A name="currency"> </A>Money Currency:</H3>
<P class="notes">There are some packges for making the
<A href="#eurosymbol">Euro currency symbol (€)</A> work in LaTeX.
</P>
<P> </P>
<H3><A name="applications"> </A>Writing Applications for a Job / CV:</H3>
<P class="notes">There are no packages for writing an
application as a whole. So try to combine one of the following
packages for CVs with a package for <A href="#letters">letters</A>
that suits your needs.
</P>
<UL>
<LI><A href="entries/curve.html">CurVe</A>
- A LaTeX2e class for making curriculum vitae
<LI><A href="entries/currvita.html">currvita</A>
- Package for typesetting a curriculum vitae
<LI><A href="entries/cv.html">cv</A>
- A package for creating a curriculum vitae
<LI><A href="entries/cvsty.html">cvsty</A>
- Yet another style for easy CV pagination
<LI><A href="entries/esieecv.html">esieecv</A>
- Curriculum vit for French
<LI><A href="entries/europecv.html">europecv</A>
- An unofficial LaTeX implementation of the standard model for
curricula vitae as recommended by the European
Commission
<LI><A href="entries/res.html">res</A>
- Resume class for LaTeX2e
<LI><A href="entries/vita.html">vita</A>
- This class provides necessary macros to prepare your
Curriculum Vitae or Resume
</UL>
<H3><A name="bizcards"> </A>Business Cards, Labels and Envelopes:</H3>
<UL>
<LI><A href="entries/bizcard.html">bizcard</A>
- Typeset business cards
<LI><A href="entries/envbig.html">envbig</A>
- Printing addresses on envelopes
<LI><A href="entries/envlab.html">envlab</A>
- Facilates addressing envelopes or mailing labels, including
barcodes and address formatting according to the US Postal
Service rules
<LI><A href="entries/flabels.html">flabels</A>
- Pretty labels (optionally colored) for the back of files or
binders
<LI><A href="entries/labels.html">labels</A>
- Print sheets of sticky labels
</UL>
<H3><A name="leaflets"> </A>Leaflets:</H3>
<UL>
<LI><A href="entries/booklet.html">booklet</A>
- Aids for printing simple booklets
<LI><A href="entries/faltblat.html">faltblat</A>
- A package for making leaflets (two sides at three columns each)
<LI><A href="entries/leaflet.html">leaflet</A>
- Create small hand-outs that fit on a single sheet of paper
which is then folded twice
<LI><A href="entries/newsletr.html">newsletr</A>
- Macros to help create newsletters and newspapers
<LI><A href="entries/twoinone.html">twoinone</A>
- Print two pages on a single page (a4paper landscape)
<LI><A href="entries/twoup.html">twoupe</A>
- Print two virtual pages on each physical page
<LI><A href="entries/twoupltx.html">twoupltx</A>
- Print two virtual pages on each physical page
</UL>
<H3><A name="factur"> </A>Writing Invoices:</H3>
<UL>
<LI><A href="entries/advdate.html">advdate</A>
- Provides macros which can add a specified number of days to
the current date (as specified in \today) and print
it. Intended for use, for example, in invoices payable within
14 days from today etc
<LI><A href="entries/dcolumn.html">dcolumn</A>
- Align on the decimal point of numbers in tabulars
<LI><A href="entries/invoice.html">invoice</A>
- Generate invoices
</UL>
<H3><A name="present"> </A>Presentation Slides:</H3>
<P class="notes">
Harald Wiedmann provides a comprehensive
<A href="http://www.miwie.org/presentations/">overview</A> of tools
for making screen presentations, most of them working with LaTeX.
</P>
<UL>
<LI><A href="entries/beamer.html">beamer</A>
- A LaTeX class for producing presentations and slides
<LI><A href="entries/foilhtml.html">foilhtml</A>
- Provides integration between <A href="entries/foiltex.html">
foiltex</A> and <A href="entries/latex2html.html">latex2html</A>
<LI><A href="entries/foiltex.html">foiltex</A>
- A LaTeX2e class for overhead transparencies that can be used
with <a href="entries/fancybox.html">fancybox</A> to place a
variety of borders around the slides
<LI><A href="entries/ha-prosper.html">ha-prosper</A>
- Patches and improvements for the
<A href="entries/prosper.html">prosper</A> package
<LI><A href="entries/ifmslide.html">ifmslide</A>
- Produce printed slides with latex and online presentations
with pdflatex compatible with <A href="entries/seminar.html">seminar</A>
<LI><A href="entries/pdfscreen.html">pdfscreen</A>
- An extension of the package to provide a
screen-based document design
<LI><A href="entries/pdfslide.html">pdfslide</A>
- Presentation slides using pdftex. helping the mix of
mathematical formulae with text and graphics which the present
day wysiwyg tools fail to accomplish
<LI><A href="entries/ppower4.html">ppower4</A>
- A post processor for PDF presentations created by pdf(La)TeX
<LI><A href="entries/prosper.html">prosper</A>
- A LaTeX class for writing transparencies, written on top of
the <A href="entries/seminar.html">seminar</A> class;
<A href="entries/ha-prosper.html">ha-prosper</A> supplies some
patches and improvements
<LI><A href="entries/seminar.html">seminar</A>
- Produce overhead slides (transparencies) with bells and
whistles. See also the
<A href="entries/hc.html">hc</A> classes.
<LI><A href="entries/slidenotes.html">slidenotes</A>
- A class package for the easy production of a slide
collection with annotations
<LI><A href="entries/slides.html">slides</A>
- A standard LaTeX2e class for the production of overhead
transparencies (foils), replacing the older SliTeX format
<LI>slideshow
-
<LI>talk
-
<LI><A href="entries/tpslifonts.html">tpslifonts</A>
- A LaTeX package for configuring presentation fonts
<LI><A href="entries/uwmslide.html">uwmslide</A>
- Slides with a simple Power Point like appearance
</UL>
<H3><A name="spread"> </A>Spreadsheets:</H3>
<P class="notes">
There is <a href="http://web.hc.keio.ac.jp/~mr041754/calc2latex/">Calc2LaTeX</a>
for converting OpenOffice spreadsheets to LaTeX tables.
</P>
<UL>
<LI><A href="entries/csvtools.html">csvtools</A>
- Allows you to repeatedly perform a set of LaTeX commands on
data in each row of a comma separated variable (CSV) file
<LI><A href="entries/excel2latex.html">Excel-to-LaTeX</A>
- Convert Excel spreadsheets to LaTeX tables (works with Excel
up to Excel 97)
<LI><A href="entries/xl2latex.html">xl2latex</A>
- Convert Excel (97 and above) tables to LaTeX tabulars
</UL>
<P>
<H2><A name="dbase"> </A>Databases</H2>
<UL>
<LI><A href="entries/latexdb.html">LaTeXDB</A>
- Integrates LaTeX and SQL databases
<LI><A href="entries/sqltex.html">SQLTeX</A>
- A well documented perl script that serves as a preprocessor
to enable the use of SQL statements in LaTeX
</UL>
<P>
<H2><A name="science"> </A>Science</H2>
<P class="notes"><B>Note:</B> There are some more packages for
working on your <A href="#bibliography">bibliography</A>. Packages
specific to one subject are listed both
<A href="#bibliography">there</A> and below.
</P>
<H3><A name="theses"> </A>Typesetting Theses and Papers for Journals:</H3>
<P class="notes"><B>Note:</B> There are more
<A href="#classes">alternatice document classes</A> you may use for
scientific work as well.
</P>
<UL>
<LI>AASTeX
- Styles for formatting submissions to journals published by
the American Astronomical Society
<LI><A href="entries/abstbook.html">abstbook</A>
- A LaTeX2e class file for making "books of
abstracts", commonly used for conferences, based on
report class
<LI><A href="entries/acmconf.html">acmconf</A>
- Association for Computing Machinery conference proceedings
<LI><A href="entries/adfathesis.html">adfathesis</A>
- Australian Defence Force Academy thesis format
<LI><A href="entries/afthesis.html">afthesis</A>
- LaTeX thesis/dissertation class for US Air Force Institute
Of Technology
<LI><A href="entries/amsart.html">amsart</A>
- A LaTeX document class for articles that is tailored to the
design of American Mathematical Society journals
<LI><A href="entries/amsbook.html">amsbook</A>
- A LaTeX document class for books that is tailored to the
design of American Mathematical Society publications
<LI><A href="entries/amsproc.html">amsproc</A>
- A LaTeX document class for conference proceedings that is
tailored to the design of American Mathematical Society
publications
<LI><A href="entries/bgteubner.html">bgteubner</A>
- Class for producing books for the publisher <em>Teubner
Verlag</em>
<LI><A href="entries/ebsthesis.html">ebsthesis</A>
- Facilitates the production of camera-ready manuscripts in
conformance with the guidelines of Gabler Verlag and
typographical rules established by European Business School
<LI><A href="entries/elsevier.html">elsevier</A>
- Preprint style for Elsevier Science journals
<LI><A href="entries/harvmac.html">harvmac</A>
- Paul Ginsparg's Harvard macros for scientific articles
<LI><A href="entries/jpsj.html">jpsj</A>
- Document Class for Journal of the Physical Society of Japan
<LI><A href="entries/nrc.html">nrc</A>
- Macros, and some documentation, for typesetting papers for
submission to journals published by the National Research
Council of Canada
<LI><A href="entries/paper.html">paper</A>
- A class derived from article, tuned for producing papers for
journals introducing new layout options, and many more options
and new commands
<LI><A href="entries/pitthesis.html">pitthesis</A>
- Document class for University of Pittsburgh theses
<LI><A href="entries/startex.html">startex</A>
- A TeX format designed to help students write short reports
and essays
<LI><A href="entries/scientificpaper.html">scientificpaper</A>
- Format a scientific paper for journal publication
"..."
<LI><A href="entries/stdpage.html">stdpage</A>
- Standard pages with n lines of at most m characters each
<LI><A href="entries/thesis.html">thesis</A>
- A class for producing a thesis based on the report class for
a more European and more flexible look
<LI><A href="entries/uaclasses.html">uaclasses</A>
- Typesetting theses and dissertations in the official format
required by the University of Arizona
<LI><A href="entries/utorontothesis.html">utorontothesis</A>
- A LaTeX2e thesis class definition for University of Toronto
<LI><A href="entries/ut-thesis.html">ut-thesis</A>
- University of Toronto thesis style
<LI><A href="entries/uwthesis.html">uwthesis</A>
- University of Washington thesis style
</UL>
<H3><A name="labjournals"> </A>Typesetting Laboratory Journals:</H3>
<UL>
<LI><A href="entries/assignment.html">assignment</A>
- Typesetting homework or lab assignments
<LI><A href="entries/labbook.html">labbook</A>
- Typeset laboratory journals that contain chronologically
ordered records about experiments based on
<A href="entries/koma-script.html">koma-script</A>
</UL>
<H3><A name="typeunits"> </A>Typesetting Physical Units:</H3>
<UL>
<LI><A href="entries/siunits.html">siunits</A>
- Typeset physical units following the rules of the
International System of Units (SI).
<LI><A href="entries/sistyle.html">sistyle</A>
- Package to typeset SI units, numbers and angles
<LI><A href="entries/units.html">units</A>
- Typeset units
<LI><A href="entries/unitsdef.html">unitsdef</A>
- Typesetting units in LaTeX2e
</UL>
<H3><A name="math"> </A>Mathematics:</H3>
<P class="notes">
Thanks to Morten Høgholm for advice on this section.
</P>
<P class="notes">
For typesetting arrays see also the packages for
<A href="#tables">tables</A>, and for
<A href="#numericalpoints">formatting decimal columns</A>.
<BR><BR>There are some <A href="#refmath">guides</A> on using
LaTeX for Mathematics.
</P>
<H4><A name="calculating"> </A>Calculating:</H4>
<UL>
<LI><A href="entries/advdate.html">advdate</A>
- Provides macros which can add a specified number of days to
the current date (as specified in \today) and print
it. Intended for use, for example, in invoices payable within
14 days from today etc
<LI><A href="entries/arrayjob.html">arrayjob</A>
- Provides array data structures in (La)TeX
<LI><A href="entries/calc.html">calc</A>
- Adds infix expressions to perform arithmetic in certain
LaTeX commands
<LI><A href="entries/fltpoint.html">fltpoint</A>
- The package provides simple floating point operations
<LI><A href="entries/fp.html">fp</A>
- Provides an extensive collection of arithmetic operations
for fixed point real numbers of high precision
<LI><A href="entries/realcalc.html">realcalc</A>
- Macros for real arithmetic calculations
</UL>
<H4><A name="ams"> </A><A href="entries/amslatex.html">AMS-LaTeX</A>:</H4>
<UL>
<LI><A href="entries/amsart.html">amsart</A>
- A LaTeX document class for articles that is tailored to the
design of American Mathematical Society journals
<LI><A href="entries/amsbook.html">amsbook</A>
- A LaTeX document class for books that is tailored to the
design of American Mathematical Society publications
<LI><A href="entries/amslatex.html">amslatex</A>
- A collection of loosely related files that are distributed
together by the American Mathematical Society, hese files are
miscellaneous enhancements to LaTeX whose aim is superior
information structure of mathematical documents and superior
printed output
<LI><A href="entries/amscd.html">amscd</A>
- Part of the <A href="entries/amslatex.html">amslatex</A>
distribution, this package adapts the commutative diagram
macros of AMS-TeX for use in LaTeX
<LI><A href="entries/amscls.html">amscls</A>
- AMS document class for LaTeX
<LI><A href="entries/amsltx11.html">amsltx11</A>
- Obsolete version of
<A href="entries/amslatex.html">AMS-LaTeX</A>
for LaTeX 2.09
<LI><A href="entries/amsmath.html">amsmath</A>
- the principal package in the
<A href="entries/amslatex.html">amslatex</A> distribution
<LI><A href="entries/amsproc.html">amsproc</A>
- A LaTeX document class for conference proceedings that is
tailored to the design of American Mathematical Society
publications
<LI><A href="entries/amsppt.html">amsppt</A>
- AMS-TeX article preprint document style
<LI><A href="entries/amsppt1.html">amsppt1</A>
- AMS-TeX v.2 compatibility for amsppt.sty v.1
<LI><A href="entries/amsproc.html">amsproc</A>
- LaTeX document class for AMS conference proceedings
<LI><A href="entries/amssym.html">amssym</A>
- AMS symbol fonts for Plain TeX
<LI><A href="entries/amstext.html">amstext</A>
- Defines a \text macro, which makes it easy to incorporate
fragments of text inside a displayed equation or a sub or
superscript
<LI><A href="entries/amsthm.html">amsthm</A>
- A LaTeX package that facilitates the kind of theorem setup
typically needed in American Mathematical Society publications
environments, and to tag the equations therein
<LI><A href="entries/testmath.html">testmath</A>
- Examples of the AMS-LaTeX package
</UL>
<H4><A name="amssupport"> </A>Support for AMS-LaTeX:</H4>
<UL>
<LI><A href="entries/empheq.html">empheq</A>
- Provides a visual markup extension to
<A href="entries/amsmath.html">amsmath</A>. See also
<A href="entries/mh.html">mh</A>
<LI><A href="entries/gauss.html">gauss</A>
- Provides configurable tools for producing row and
column operations on matrices a.k.a. Gaussian operations
<LI><A href="entries/mathtools.html">mathtools</A>
- Mathematical tools to use with
<A href="entries/amsmath.html">amsmath</A>; part of the
<A href="entries/mh.html">mh</A> bundle
<LI><A href="entries/mh.html">mh</A>
- A series of packages designed to enhance the appearance of
documents containing a lot of math
<LI><A href="entries/ntheorem.html">ntheorem</A>
- Enhanced theorem environment. See also
<A href="entries/mh.html">mh</A>
<LI><A href="entries/onlyamsmath.html">onlyamsmath</A>
- Inhibits the usage of plain TeX and on demand of standard
LaTeX math environments which is useful for class writers who
want to force their clients to use the environments provided
by the <A href="entries/amsmath.html">amsmath</A> package
<LI><A href="entries/tex2ltx.html">tex2ltx</A>
- Useful for converting plain TeX (AMS) files into
<A href="entries/amslatex.html">AMS-LaTeX</A>
and convert plain AMS-TeX bibliographic references into
<A href="entries/bibtex.html">BibTeX</A>
</UL>
<H4><A name="matheasy"> </A>The <A href="entries/easy.html">easy</A> Family of Packages:</H4>
<UL>
<LI><A href="entries/easy.html">easy</A>
- A collection of "easy" to use macros
<LI><A href="entries/easybmat.html">easybmat</A>
- A simple package for writing block matrices with equal
column widths or equal rows heights or both, with various
kinds of rules between rows and columns
<LI><A href="entries/easyeqn.html">easyeqn</A>
- A simple package for writing equations
<LI><A href="entries/easymat.html">easymat</A>
- A simple package for writing matrices
<LI><A href="entries/easytable.html">easytable</A>
- A simple package for writing tables
<LI><A href="entries/easyvector.html">easyvector</A>
- Write vectors in a C-like fashion
</UL>
<H4><A name="mathmacros"> </A>Other Math Macros:</H4>
<UL>
<LI><A href="entries/accents.html">accents</A>
- Multiple accents with nice features concerning creation of
accents and placement of scripts
<LI><A href="entries/bezos.html">bezos</A>
- Tools for math accents; tensorial indexes; tools for easy
entry of Spanish index entries
<LI><A href="entries/cancel.html">cancel</A>
- A package to draw diagonal lines and arrows with limits
through math formulas
<LI><A href="entries/cases.html">cases</A>
- Define numcases: math cases with equation numbers. Also
defines subequation numbering.
<LI><A href="entries/hhtensor.html">hhtensor</A>
- Provides commands for vectors, matrices, and tensors with
different styles
<LI><A href="entries/maybemath.html">maybemath</A>
- Make math bold or italic according to context
<LI><A href="entries/mhequ.html">mhequ</A>
- Simplifies the creation of multi-column equation
<LI><A href="entries/nath.html">nath</A>
- A LaTeX style to separate presentation and content in
mathematical typography
<LI><A href="entries/tensind.html">tensind</A>
- Typesets tensors with dots filling gaps and fine tuning of
index placement
<LI><A href="entries/tensor.html">tensor</A>
- Allows the user to set tensor-style super and
subscripts with offsets between successive indices
<LI><A href="entries/vector.html">vector</A>
- Macros for more convenient representation of vectors in
LaTeX2e, both symbolically and as implicit or explicit
rows/columns of elements
</UL>
<H4><A name="mathfonts2"> </A>Math Fonts:</H4>
<P class="notes"><A href="#ps">PostScript</A> math fonts are supported
by both the mathpazo package for Palatino, and the mathptmx package
for Times which are part of the <A href="entries/psnfss.html">psnfss</A>
package. See the <A href="#psnfsspack">psnfss</A> section for details.
</P>
<UL>
<LI><A href="entries/a0poster.html">a0poster</A>
- Provides fonts in sizes of 12pt up to 107pt and also makes
sure that in math formulas the symbols appear in the right
size
<LI><A href="entries/amsfonts.html">amsfonts</A>
- Augments the standard set normally distributed with TeX,
including: extra mathematical symbols; blackboard bold letters
(uppercase only)
<LI><A href="entries/amssym.html">amssym</A>
- AMS symbol fonts for Plain TeX
<LI><A href="entries/amssymb.html">amssymb</A>
- AMS symbol fonts for LaTeX
<LI><A href="entries/bbold.html">bbold</A>
- A geometric sans serif blackboard bold font, for use in
mathematics
<LI><A href="entries/belleek.html">belleek</A>
- Free replacement for basic MathTime fonts
<LI><A href="entries/concmath.html">concmath</A>
- Concrete Math fonts
<A href="#gothicfonts">fraktur</A> letters; subscript sizes of
bold math italic and bold Greek letters; subscript sizes of large
symbols such as sum and product; added sizes of the
<A href="#cmfonts">Computer Modern</A> small caps font;
<A href="#cyril">cyrillic</A> fonts (from the University of
Washington); <A href="entries/euler.html">Euler</A> math fonts
<LI><A href="entries/euler.html">euler</A>
- Provides a setup for using the AMS Euler family of fonts for
math in LaTeX documents
<LI><A href="entries/eulervm.html">eulervm</A>
- Euler virtual math fonts based on Euler and CM, compatible
with <A href="entries/amsmath.html">amsmath</A>
<LI>fourier - A full replacement for the Computer Modern fonts
<LI><A href="entries/upgreek.html">upgreek</A>
- A package to provide the upright Greek letters from the
Euler or Adobe Symbol fonts as additional math symbols, with
proper scaling in super- and subscripts
</UL>
<H4><A name="mathgraphics"> </A>Math Graphics:</H4>
<UL>
<LI><A href="entries/circle.html">circle</A>
- Provides circles in math mode that can be used for the
nextstep operator of temporal logic, in conjunction with \Box
and \Diamond (latexsym) or \square and \lozenge (amssymb)
<LI><A href="entries/sseq.html">sseq</A>
- Provides a new LaTeX environment for inline typesetting of
spectral sequence charts; it is built on top of
<A href="entries/xypic.html">xypic</A>
<LI><A href="entries/venn.html">venn</A>
- Creating Venn diagrams with MetaPost
<LI><A href="entries/xypic.html">xypic</A>
- A package for typesetting a variety of graphs and diagrams
with TeX
</UL>
<H3><A name="statisticalpackages"> </A>Statistics:</H3>
<UL>
<LI><A href="entries/statex.html">statex</A>
- A package supporting statistical presentations
</UL>
<H3><A name="physics"> </A>Physics:</H3>
<UL>
<LI><A href="entries/hepparticles.html">hepparticles</A>
- Macros for typesetting high energy physics particle names
<LI><A href="entries/isotope.html">isoptope</A>
- Typesetting isotopes
<LI><A href="entries/jpsj.html">jpsj</A>
- Document Class for Journal of the Physical Society of Japan
<LI><A href="entries/nrc.html">nrc</A>
- Macros, and some documentation, for typesetting papers for
submission to journals published by the National Research
Council of Canada
<LI><A href="entries/revtex.html">revtex</A>
- Styles for various Physics Journals
<LI><A href="entries/slashed.html">slashed</A>
- Put a slash through characters. Useful for the Physicist's
`Feynman slashed character' notation
<LI><A href="entries/texsis.html">texsis</A>
- Plain TeX macros for Physicists
</UL>
<H3><A name="astronomy"> </A>Astronomy:</H3>
<UL>
<LI><A href="entries/aastex.html">aastex</A>
- American Astronomical Society format
<LI><A href="entries/astro.html">astro</A>
- Astronomical (planetary) symbols
</UL>
<H3><A name="aeronautics"> </A>Aeronautics:</H3>
<UL>
<LI><A href="entries/aiaa.html">aiaa</A>
- Typeset American Institute of Aeronautics and Astronautics
conference papers
<LI><A href="entries/ar.html">ar</A>
- Provides MetaFont files and a LaTeX package for producing
and using the uppercase A/R ligature as used by scientists and
engineers in the field of aeronautics as the symbol for
"aspect ratio"
</UL>
<H3><A name="chem"> </A>Chemistry:</H3>
<UL>
<LI><A href="entries/achemso.html">achemso</A>
- LaTeX and BibTeX style for American Chemical Society
<LI><A href="entries/bpchem.html">bpchem</A>
- Typeset chemical names, formulae, and numbering of chemical
compounds
<LI><A href="entries/chem-journal.html">chem-journal</A>
- Various BibTeX
formats for journals in Chemistry, including
Reviews in Computational Chemistry, Journal of Physical
Chemistry, Journal of Computational Chemistry, and Physical
Chemistry Chemical Physics
<LI><A href="entries/chemarr.html">chemarr</A>
- Analogous to amsmath's \xrightarrow and \xleftarrow this
package provides a macro for a longer version of reaction
arrows with the possibility to put text above and below; it
requires <A href="#ams">AMS-LaTeX</A>
<LI><A href="entries/chemcono.html">chemcono</A>
- Support for compound numbers in chemistry documents
<LI><A href="entries/chemsym.html">chemsym</A>
- Macros for typing chemical symbols
<A href="entries/context.html">context</A> macro package for
TeX that can be used to typeset chemical formulas
<LI><A href="entries/isotope.html">isoptope</A>
- Typesetting isotopes
<LI><A href="entries/mhchem.html">mhchem</A>
- Typeset chemical formulae, and equations as well as Risk and
Safety phrases
<LI><A href="entries/ochem.html">ochem</A>
- A perl script to translate chemical formulae and reaction
schemes into PostScript or LaTeX.
<LI><A href="entries/ppchtex.html">ppchtex</A>
- A separate module of the
<A href="#context">context</A> macro package for TeX
<LI><A href="entries/texshade.html">texshade</A>
- Package for setting nucleotide and peptide alignments
<LI><A href="entries/textopo.html">textopo</A>
- Annotated membrane protein topology plots
</UL>
<H3><A name="biology"> </A>Biology:</H3>
<UL>
<LI><A href="entries/biocon.html">biocon</A>
- LaTeX package for typesetting of biological species names
<LI><A href="entries/dichokey.html">dichokey</A>
- LaTeX package for dichotomous identification keys (for
species identification)
<LI><A href="entries/jtbnew.html">jtbnew</A>
- BibTeX style for Journal of Theoretical Biology
<LI><A href="entries/texshade.html">texshade</A>
- Package for setting nucleotide and peptide alignments
<LI><A href="entries/textopo.html">textopo</A>
- Annotated membrane protein topology plots
</UL>
<H3><A name="geophysics"> </A>Geophysics:</H3>
<UL>
<LI><A href="entries/aguplus.html">aguplus</A>
- Styles for American Geophysical Union
</UL>
<H3><A name="electro"> </A>Electronics:</H3>
<P class="notes">For drawing
<A href="#circuitdiags">circuit diagrams</A> see also the
<A href="#pstrickspack">PS-Tricks</A> package.
</P>
<UL>
<LI><A href="entries/circ.html">circ</A>
- Macros for typesetting circuit diagrams
<LI><A href="entries/circuit-macros.html">circuit-macros</A>
- M4 Macros for Electric circuit diagrams
<LI><A href="entries/timing.html">timing</A>
- Fonts and macro package for drawing timing diagrams
<LI><A href="entries/metapost-examples.html">MetaPost Examples</A>
- Example pictures drawn with metapost
<LI><A href="entries/metapost.html">metapost</A>
- A tool based on MetaFont for producing precise technical
illustrations, creating scalable PostScript instead of bitmaps
<LI><A href="entries/refman.html">refman</A>
- A document class for writing technical reference manuals
offering a wide left margin for notes to the reader, like some
of the manuals distributed by Adobe, available for articles
and reports
</UL>
<H3><A name="cs"> </A>Computer Science:</H3>
<UL>
<LI><A href="entries/ada.html">ada</A>
- A system for Structured Software Documentation in Ada
<LI><A href="entries/alg.html">alg</A>
- Typesetting algorithms; lines are automatically numbered and
can be referenced, with easy indentation, and algorithms as
floats
<LI><A href="entries/algorithm2e.html">algorithm2e</A>
- An environment for writing algorithms, defining an
algorithm as a floating object
<LI><A href="entries/algorithmicx.html">algorithmicx</A>
- Provides an environment for describing algorithms
<LI><A href="entries/algorithms.html">algorithms</A>
- Defines a floating algorithm environment
<LI><A href="entries/apl.html">apl</A>
- Fonts for typesetting APL programs
<LI><A href="entries/c2cweb.html">c2cweb</A>
- A utility to prettyprint C and C plus plus source files
using <A href="entries/cweb.html">cweb</A>
<LI><A href="entries/c2latex.html">c2latex</A>
- Simple conversion of C programs to LaTeX
<LI><A href="entries/c-pascal.html">c-pascal</A>
- A TeX macro package for easy typesetting programs in C and
Pascal; program sources in C and Pascal can also be input
<LI><A href="entries/clrscode.html">clrscode</A>
- Typesets pseudocode as in 'Introduction to Algorithms'
<LI><A href="entries/cnoweb.html">cnoweb</A>
- Simple "quality" printing of C sources
<LI><A href="entries/consdiag.html">consdiag</A>
- A utility for OO programming documentation
<LI><A href="entries/cursor.html">cursor</A>
- Creates a simple L-shaped 'cursor' in a math environment to
mimic what one might see on a computer screen
<LI><A href="entries/cweb.html">cweb</A>
- A system for Structured Software Documentation in C
<LI><A href="entries/cwebbin.html">cwebbin</A>
- CWEB for ANSI-C/C++ compilers on UNIX/Linux, MS/Windows, and
Amiga
<LI><A href="entries/cwebx.html">cwebx</A>
- A system for Structured Software Documentation in C
<LI><A href="entries/docmfp.html">docmfp</A>
- Extends the <A href="entries/doc.html">doc</A> package to
cater for documenting non-LaTeX code, such as MetaFont or
<A href="entries/metapost.html">MetaPost</A>, or other programming
languages
<LI><A href="entries/hexdump.html">hexdump</A>
- Reads an ASCII hexdump file and puts it formated into the
document
<LI><A href="entries/highlight.html">highlight</A>
- A program which converts source code to TeX and LaTeX with
syntax highlighting
<LI><A href="entries/listing.html">listing</A>
- Produce formatted program listings
<LI><A href="entries/listings.html">listings</A>
- Typeset programming code within LaTeX using different
styles, e.g., default is bold for keywords, italic for
comments and no special style for strings, including support
for <A href="entries/hyperref.html">hyperref</A>
<LI><A href="entries/method.html">method</A>
- Typesetting of programming language method and variable
declarations; includes an option to typeset in French
<LI><A href="entries/program.html">program</A>
- Typesetting programs and algorithms
<LI><A href="entries/semantic.html">semantic</A>
- Typesetting of notation of semantics and compilers; includes
T-diagrams, various derivation symbols and inference trees
<LI><A href="entries/texlist.html">texlist</A>
- Typeset program (or ASCII text file) listings; a C
program that generates LaTeX2e
<LI><A href="entries/tinyc2l.html">tinyc2l</A>
- Pretty print C/C++/Java source code using LaTeX
</UL>
<H3><A name="humanities"> </A>Humanities:</H3>
<P class="notes">
For typesetting ancient <A href="#greek">Greek</A> use the
<A href="entries/babel.html">babel</A> package
with the option <I>polutonikogreek</I>.
<BR>
For typesetting Latin you may also use the
<A href="entries/babel.html">babel</A> package with the option
<I>latin</I>.
<BR>
There are packages for typesetting
<A href="#literature">Poetry and Drama</A>.
</P>
<H4><A name="bibhum"> </A>Bibliography:</H4>
<P class="notes">
See also the general section on <A href="#bibliography">bibliographies</A>.
</P>
<UL>
<LI><A href="entries/bibarts.html">bibarts</A>
- A package to assist in making bibliographical lists common
in the arts
<LI><A href="entries/jurabib.html">jurabib</A>
- <A href="entries/bibtex.html">bibtex</A> databases for
German legal texts in the first place,
but also of interest to everyone else working in the humanities
<LI><A href="entries/oxford.html">oxford</A>
- A BibTeX style implementing the oxford style, based on
<A href="entries/harvard.html">harvard</A>
</UL>
<H4><A name="critical"> </A>Critical Editions:</H4>
<P class="notes">
There are some packages for working on
<A href="#footnotes">footnotes and endnotes</A> as well as for
<A href="#lnumbers">numbering lines and paragraphs</A>, and
<A href="#languages">multilingual support</A>.
<BR>A summary of the <A href="entries/edmac.html">edmac</A> package in
comparison to <A href="entries/ednotes.html">ednotes</A>, and
<A href="entries/ledmac.html">ledmac</A> as well as links to
additional software helping in writing critical editions can be found
on Dominik Wujastik's
<A href="http://www.homepages.ucl.ac.uk/~ucgadkw/edmac/index.html">
homepage</A>.
</P>
<UL>
<LI><A href="entries/edmac.html">edmac</A>
- A macro package for typesetting scholarly critical editions
<LI><A href="entries/ednotes.html">ednotes</A>
- Typesetting scholarly critical editions with LaTeX
<LI><A href="entries/ledmac.html">ledmac</A>
- Typesetting scholarly critical editions; a LaTeX port of the
plain TeX <A href="entries/edmac.html">edmac</A> macros
<LI><A href="entries/ledpar.html">ledpar</A>
- An extension of <A href="entries/ledmac.html">ledmac</A>
enabling parallel typesetting in columns or on facing
pages. See also <A href="entries/parallel.html">parallel</A>
<LI><A href="entries/parallel.html">parallel</A>
- Typesetting two languages side-by-side. See also <A
href="entries/ledpar.html">ledpar</A>
<LI><A href="entries/parrun.html">parrun</A>
- Typesetting two streams of text running parallel one above
the other
<LI><A href="entries/poemscol.html">poemscol</A>
- A set of LaTeX macros for typesetting critical editions of
poetry
<LI><A href="entries/vruler.html">vruler</A>
- A package for adding a vertical numbering to the general
text so that the text can be properly referenced. The vertical
ruler can be scaled and moved freely
</UL>
<H4><A name="dictio"> </A>Typesetting Dictionaries:</H4>
<UL>
<LI><A href="entries/fwlw.html">fwlw</A>
- Extracts the first and last words of a page, together with
the first word of the next page, just before the page is
formed into the object to print.
<LI><A href="entries/lexikon.html">lexikon</A>
- Implements commands to generate a two language dictionary
</UL>
<H4><A name="hummisc"> </A>Misc:</H4>
<UL>
<LI><A href="entries/alnumsec.html">alnumsec</A>
- Alphanumeric section numbering similar to
<A href="entries/alphanum.html">alphanum</A>, but you may use
the standard LaTeX sectioning commands
<LI><A href="entries/alphanum.html">alphanum</A>
- Permits alphanumeric section numbering
<LI><A href="entries/teubner.html">teubner</A>
- Philological typesetting
</UL>
<H3><A name="psycho"> </A>Psychology:</H3>
<UL>
<LI><A href="entries/apa.html">apa</A>
- A LaTeX class to format text according to the American
Psychological Association Publication Manual (4th ed.)
specifications for manuscripts or to the APA journal look
<LI><A href="entries/apacite.html">apacite</A>
- A <A href="entries/bibtex.html">BibTeX</A> style which
closely follows the APA style citation, claiming to provide
the closest match
<LI><A href="entries/apasoft.html">apasoft</A>
- A more conforming apa-like style for
<A href="entries/bibtex.html">BibTeX</A>
<LI><A href="entries/mslapa.html">mslapa</A>
- LaTeX and <A href="entries/bibtex.html">BibTeX</A> style
files for a respectably close approximation to APA citation
and reference style
</UL>
<H3><A name="law"> </A>Law:</H3>
<UL>
<LI><A href="entries/advdate.html">advdate</A>
- Provides macros which can add a specified number of days to
the current date (as specified in \today) and print
it. Intended for use, for example, in invoices payable within
14 days from today etc
<LI><A href="entries/alnumsec.html">alnumsec</A>
- Alphanumeric section numbering similar to
<A href="entries/alphanum.html">alphanum</A>, but you may use
the standard LaTeX sectioning commands
<LI><A href="entries/alphanum.html">alphanum</A>
- Permits alphanumeric section numbering as part of the
<A href="entries/jura.html">jura</A> package
<LI><A href="entries/jura.html">jura</A>
- Implements the standard layout for German term papers in law
<LI><A href="entries/juraabbrev.html">juraabbrev</A>
- Handle abbreviations for typesetting (German) juridical
documents
<LI><A href="entries/jurabib.html">jurabib</A>
- <A href="entries/bibtex.html">BibTeX</A> databases for
German legal texts in the first place, but also of interest to
everyone else working in the humanities
<LI><A href="entries/juramisc.html">juramisc</A>
- A package for writing court sentences, legal opinions, and
dissertations, so far for German lawyers only
<LI><A href="entries/jurarsp.html">jurarsp</A>
- A BibTeX style for quoting court decisions, and
official papers as required in German legal texts
<LI><A href="entries/lextex.html">lextex</A>
- LeXTeX is a collection of macros intended to enable
lawyers, and in particular Barristers, to format their work
using Plain TeX
</UL>
<H3><A name="economics"> </A>Economics:</H3>
<UL>
<LI><A href="entries/ebsthesis.html">ebsthesis</A>
- Facilitates the production of camera-ready manuscripts in
conformance with the guidelines of Gabler Verlag and
typographical rules established by European Business School
</UL>
<H3><A name="phonetics"> </A>Phonetics:</H3>
<UL>
<LI><A href="entries/ipa.html">ipa</A>
- Using the WSU International Phonetic Alphabet
<LI><A href="entries/phonetic.html">phonetic</A>
- MetaFont Phonetic fonts, based on Computer Modern
<LI><A href="entries/tipa.html">tipa</A>
- Fonts and macros for IPA phonetics characters
<LI><A href="entries/wsuipa.html">wsuipa</A>
- Style for using International Phonetic Alphabet fonts
<LI><A href="entries/wsuipa2tipa.html">wsuipa2tipa</A>
- A filter that translates an old LaTeX document, replacing
all <A href="entries/wsuipa.html">wsuipa</A> font commands
with <A href="entries/tipa.html">tipa</A> font commands
</UL>
<H3><A name="linguistics"> </A>Linguistics:</H3>
<UL>
<LI><A href="entries/pst-jftree.html">pst-jftree</A>
- Drawing trees for use in linguistic analysis with
<A href="entries/pstricks.html">pstricks</A>
</UL>
<P>
<H2><A name="graphics"> </A>Including Graphics</H2>
<P class="notes">
See also the packages for including
<A href="#floats">floats</A>, and for adding
<A href="#colour">colour and shading</A>.
<BR>We also list <A href="#fontsgraph">guides</A> on including
graphics.
</P>
<UL>
<LI><A href="entries/a2ping.html">a2ping</A>
- A UNIX command line utility written in Perl that converts
many raster image and vector graphics formats to EPS or PDF
and other page description formats
<LI><A href="entries/epsfig.html">epsfig</A>
- Including Encapsulated PostScript in LaTeX documents, now
superseded by the LaTeX2e
<A href="entries/graphics.html">graphics</A> package
<LI><A href="entries/eso-pic.html">eso-pic</A>
- A package to add picture commands (or backgrounds) to every
page. See also <A href="entries/wallpaper.html">wallpaper</A>.
<LI><A href="entries/graphics.html">graphics</A>
- The primary LaTeX package for the support of the inclusion
of graphics generally produced with other tools
<LI><A href="entries/graphicx.html">graphicx</A>
- Better support for graphics, builds upon the
<A href="entries/graphics.html">graphics</A> package
<LI><A href="entries/grfguide.html">grfguide</A>
- Guide to using graphics in LaTeX, including documentation on
various packages including
<A href="entries/color.html">color</A> and
<A href="entries/graphicx.html">graphicx</A>
<LI><A href="entries/miniplot.html">MiniPlot</A>
- A package for easy figure arrangement
<LI><A href="entries/hilowres.html">hilowres</A>
- Support high and low resolution versions of same picture
<LI><A href="entries/picinpar.html">picinpar</A>
- Insert pictures into paragraphs
<LI><A href="entries/picins.html">picins</A>
- Insert pictures into paragraphs (appears to be better than
<A href="entries/picinpar.html">picinpar</A>)
<LI><A href="entries/photo.html">photo</A>
- A float environment for including photographs
<LI><A href="entries/rotating.html">rotating</A>
- A package built on the standard LaTeX
<A href="entries/graphics.html">graphics</A> package to
perform all the different sorts of rotation one might like
<LI><A href="entries/wallpaper.html">wallpaper</A>
- Files to add wallpapers (background images) to LaTeX
documents, using <A href="entries/eso-pic.html">eso-pic</A>,
but providing simple commands to include effects such as
titling.
</UL>
<P>
<H2><A name="grid"> </A>Drawing Graph Paper and Grids</H2>
<UL>
<LI><A href="entries/graphpap.html">graphpap</A>
- Basic package for producing graph paper
<LI>typogrid
- Produces a typographic grid on every page of the document,
useful to get the horizontal measures (distances etc.) into
good values, may be found at
CTAN:macros/latex/contrib/typogrid
</UL>
<P>
<H2><A name="charts"> </A>Drawing Diagrams and Charts</H2>
<H3><A name="arrowtheoretic"> </A>Arrow Theoretic Diagrams</H3>
<UL>
<LI><A href="entries/arrow.html">arrow</A>
- Eplain macros for arrow theoretic diagrams
<LI><A href="entries/barr.html">barr</A>
- Diagram macros by Michael Barr
<LI><A href="entries/diagxy.html">diagxy</A>
- Draw commutative diagrams
</UL>
<H3><A name="barcharts"> </A>Barcharts</H3>
<UL>
<LI><A href="entries/bar.html">bar</A>
- Provides the barenv environment for bar charts
<LI><A href="entries/bardiag.html">bardiag</A>
- LaTeX package for drawing bar diagrams
</UL>
<H3><A name="beziercurves"> </A>Bezier Curves</h3>
<UL>
<LI><A href="entries/bez123.html">bez123</A>
- Support for Bezier curves
</UL>
<H3><A name="bridgediags"> </A>Bridge Diagrams</H3>
<UL>
<LI><A href="entries/bridge.html">bridge</A>
- Macros for typesetting bridge diagrams
</UL>
<H3><A name="circles"> </A>Drawing Circles</H3>
<UL>
<LI><A href="entries/circle.html">circle</A>
- Provides circles in math mode that can be used for the
nextstep operator of temporal logic, in conjunction with \Box
and \Diamond (latexsym) or \square and \lozenge (amssymb)
</UL>
<H3><A name="clockdiags"> </A>Clocks</H3>
<UL>
<LI><A href="entries/clock.html">clock</A>
- Graphical and textual clocks for TeX and LaTeX
</UL>
<H3><A name="commutative"> </A>Commutative Diagrams</H3>
<UL>
<LI><A href="entries/amscd.html">amscd</A>
- Part of the <A href="entries/amslatex.html">AMS-LaTeX</A>
distribution, this package adapts the commutative diagram
macros of AMS-TeX for use in LaTeX
<LI><A href="entries/dcpic.html">DCpic</A>
- A package for typesetting Commutative Diagrams within a
LaTeX and TeX documents
<LI><A href="entries/taylor.html">taylor</A>
- Diagram macros by Paul Taylor
</UL>
<H3><A name="#keyboards"> </A>Computer Keyboards</H3>
<UL>
<LI><A href="entries/keystroke.html">keystroke</A>
- A LaTeX package which provides macros for the graphical
representation of the keys on a computer keyboard
</UL>
<H3><A name="circuitdiags"> </A>Electric Circuit Diagrams</H3>
<P class="notes">See also the <A href="#electro">electronics</A>
section and the <A href="#pstrickspack">PS-Tricks</A> package.
</P>
<UL>
<LI><A href="entries/circ.html">circ</A>
- Macros for typesetting circuit diagrams
<LI><A href="entries/circuit-macros.html">circuit-macros</A>
- A set of macros for drawing high-quality electric circuits
containing fundamental elements, amplifiers, transistors, and
basic logic gates to include in TeX, LaTeX, or similar
documents
</UL>
<H3><A name="diagfeynm"> </A>Feynman Diagrams</H3>
<UL>
<LI><A href="entries/feyn.html">feyn</A>
- A Metafont for Feynman diagrams
<LI><A href="entries/feynmf.html">feynmf</A>
- Macros and fonts for creating Feynman (and other) diagrams
</UL>
<H3><A name="histograms"> </A>Histograms</H3>
<UL>
<LI><A href="entries/histogr.html">histogr</A>
- Draw histograms with the LaTeX picture environment
</UL>
<H3><A name="diagkarnaugh"> </A>Karnaugh-Maps, and Veitch-Charts</H3>
<UL>
<LI><A href="entries/karnaugh.html">karnaugh</A>
- Macros intended for typesetting Karnaugh-Maps and
Veitch-Charts in a simple and user-friendly way
</UL>
<H3><A name="diaglogic"> </A>Logic Diagrams</H3>
<UL>
<LI><A href="entries/logic.html">logic</A>
- A MetaFont font for drawing logic diagrams
</UL>
<H3><A name="nassidiags"> </A>Nassi-Schneidermann Diagrams</H3>
<UL>
<LI><A href="entries/nassflow.html">nassflow</A>
- Drawing Nassi-Schneidermann diagrams
<LI><A href="entries/struktex.html">struktex</A>
- Draw Nassi-Schneidermann charts using
<A href="entries/pict2e.html">pict2e</A>
</UL>
<H3><A name="pictexlist"> </A>Pictex</H3>
<UL>
<LI><A href="entries/pictex.html">pictex</A>
- Picture drawing macros for TeX and LaTeX
<LI><A href="entries/pictex2.html">pictex2</A>
- Adds relative coords and rules for dots in plots to standard
PiCTeX
</UL>
<H3><A name="drawpostscript"> </A>Postscript Macros for Drawing</H3>
<UL>
<LI><A href="entries/pstricks.html">pstricks</A>
- PostScript macros for color, graphics, pie charts, rotation,
trees and overlays, supplying many special features
</UL>
<H3><A name="diagsyntax"> </A>Syntax Diagrams</H3>
<UL>
<LI><A href="entries/rail.html">rail</A>
- A C program and LaTeX package to draw syntax diagrams
specified in EBNF
<LI><A href="entries/semantic.html">semantic</A>
- Eases the typesetting of notation of semantics and
compilers. Includes T-diagrams, various derivation symbols and
inference trees
<LI><A href="entries/syngen.html">syngen</A>
- A tool for generating syntax diagrams from BNF\@
<LI><A href="entries/syntax-mdw.html">syntax-mdw</A>
- Typeset syntax descriptions
<LI><A href="entries/syntax2.html">syntax2</A>
- Creation of syntax-diagrams
</UL>
<H3><A name="timingdiags"> </A>Timing Diagrams</H3>
<UL>
<LI><A href="entries/timing.html">timing</A>
- Fonts and macro package for drawing timing diagrams
</UL>
<H3><A name="vectordiags"> </A>Vector Arrows</H3>
<UL>
<LI><A href="entries/esvect.html">esvect</A>
- Write vectors using an arrow which is different to the
Computer Modern one
</UL>
<H3><A name="diagtools"> </A>Tools</H3>
<UL>
<LI><A href="entries/arraymaker.html">Array Maker</A>
- A program for making latex and xypic arrays
<LI><A href="entries/gnuplot.html">gnuplot</A>
- General purpose plotting program for generating almost any
type of chart you wish and save it in LaTeX format or as EPS
(or in any of a dozen other formats)
</UL>
<H3><A name="diagmisc"> </A>Misc</H3>
<UL>
<LI><A href="entries/borceux.html">borceux</A>
- Diagram macros by Francois Borceux
<LI><A href="entries/expressg.html">expressg</A>
- A MetaPost package providing facilities to assist in drawing
diagrams that consist of boxes, lines, and
annotations. Particular support is provided for creating
EXPRESS-G diagrams
<LI><A href="entries/kuvio.html">kuvio</A>
- Drawing macros and fonts for diagrams
<LI><A href="entries/m-pictex.html">m-pictex</A>
- Solves the `out of dimen' problem that somethimes occours
when using PiCTeX (especially together with LaTeX)
<LI><A href="entries/mdwtools.html">mdwtools</A>
- Miscellaneous tools by Mark Wooding
<LI><A href="entries/pb-diagram.html">pb-diagram</A>
- A diagram package using LAMSTeX or Xy-pic fonts
<LI><A href="entries/xypic.html">xypic</A>
- A package for typesetting a variety of graphs and diagrams
with TeX
</UL>
<P>
<H2><A name="colour"> </A>Adding some Colour and Shading</H2>
<P class="notes">
There are more packages for
<A href="#colourintables">adding some colour to tables</A>.
</P>
<UL>
<LI><A href="entries/backgrnd.html">backgrnd</A>
- Mark text with grey background or change bar in plain TeX
<LI><A href="entries/changebar.html">changebar</A>
- Generate changebars in LaTeX documents
<LI><A href="entries/color.html">color</A>
- Allows text and page background colors to be set
<LI><A href="entries/colorinfo.html">colorinfo</A>
- Retrieve color model and values for defined colors
<LI><A href="entries/colorsep.html">colorsep</A>
- Support for colour separation when using
<A href="entries/dvips.html">dvips</A>
<LI><A href="entries/contour.html">contour</A>
- Generates a colored contour around a given text in order to
enable printing text over a background without the need of a
color box around the text
<LI><A href="entries/pstricks.html">pstricks</A>
- PostScript macros for color, graphics, pie charts, rotation,
trees and overlays, supplying many special features
<LI><A href="entries/shadethm.html">shadethm</A>
- Package to produce shaded boxes, requiring the
<A href="entries/color.html">color</A> package
<LI><A href="entries/shading.html">shading</A>
- Putting text on a shaded background. requires a PostScript
printer and dvi-file converter
<LI><A href="entries/shadow.html">shadow</A>
- Shadows
<LI><A href="entries/xcolor.html">xcolor</A>
- Provides easy driver-independent access to several kinds of
color tints, shades, tones, and mixes of arbitrary colors;
allows to select a document-wide target color model and offers
complete tools for conversion between eight color models
</UL>
<P>
<H2><A name="exams"> </A>Typesetting Exam Scripts, Quizzes, and Questionnaires</H2>
<UL>
<LI><A href="entries/answers.html">answers</A>
- Styles for setting questions (or exercises) and answers
<LI><A href="entries/anufinalexam.html">anufinalexam</A>
- This LaTeX document shell is created for the standard
formatting of final exams in The Australian National
University
<LI><A href="entries/exam.html">exam</A>
- Package for typesetting exam scripts
<LI><A href="entries/examdesign.html">examdesign</A>
- LaTeX class for typesetting exams
<LI><A href="entries/exams.html">exams</A>
- Exam questions can be multiple choice or free form
long/short answer questions. Options include the typesetting
of the exam itself, an exam showing all the answers and a
collection of questions and answers. Questions can be
parameterized. Use of a random generator provides for
automatic shuffling of multiple choice items
<LI><A href="entries/exerquiz.html">exerquiz</A>
- Environments for defining exercises and quizzes. The quizzes
are graded and optionally corrected by JavaScript.
<LI><A href="entries/flashcard.html">flashcard</A>
- Cards with a question on one side and the answer on the
other
<LI><A href="entries/qcm.html">qcm</A>
- A LaTeX2e class for making multiple choices questionnaires
</UL>
<P>
<H2><A name="music"> </A>Music</H2>
<UL>
<LI><A href="entries/abc2mtex.html">abc2mtex</A>
- Notate tunes stored in an ascii format (abc notation)
<LI><A href="entries/concprog.html">concprog</A>
- A class which provides the necessary macros to prepare a
(classical) concert programme
<LI><A href="entries/musicref.html">musicref</A>
- Reference page for musictex
<LI><A href="entries/musictex.html">musictex</A>
- Typesetting music with TeX
<LI><A href="entries/musixtex.html">musixtex</A>
- Extended MusicTeX, with better slurs
<LI><A href="entries/songbook.html">songbook</A>
- Package for typesetting song lyrics
<LI><A href="entries/underbracket.html">underbracket</A>
- Draw brackets to underline (song) text
</UL>
<P>
<H2><A name="literature"> </A>Poetry and Drama</H2>
<P class="notes">There are some more packages for those interested in
<A href="#humanities">the Humanities</A>, including work on
<A href="#critical">critical editions</A>.
</P>
<UL>
<LI><A href="entries/dialogue.html">dialogue</A>
- Quote short scripted dialogue in LaTeX
<LI><A href="entries/drama.html">drama</A>
- Macros for typesetting a basic production-style stage script
<LI><A href="entries/dramatist.html">dramatist</A>
- A package for typesetting drama both in verse and in prose
<LI><A href="entries/edmac.html">edmac</A>
- Typesetting scholarly critical editions
<LI><A href="entries/ledmac.html">ledmac</A>
- A macro package for typesetting scholarly critical editions
<LI><A href="entries/play.html">play</A>
- Typesetting of plays, including options for line numbering
<LI><A href="entries/poemscol.html">poemscol</A>
- A set of LaTeX macros for typesetting critical editions of
poetry
<LI><A href="entries/plari.html">plari</A>
- A document class for typesetting stageplay scripts
<LI><A href="entries/sides.html">sides</A>
- A class for typesetting stage plays, based on the
<A href="entries/plari.html">plari</A> class
<LI><A href="entries/stage.html">stage</A>
- A LaTeX class for creating plays of any length in a standard
manuscript format for production and submission
<LI><A href="entries/verse.html">verse</A>
- Aids for typesetting simple verse
<LI><A href="entries/xmlplay.html">xmlplay</A>
- An xmltex package for typsetting the plays of Shakespeare,
as marked up by Jon Bosak
</UL>
<P>
<H2><A name="recipes"> </A>Cooking Recipes</H2>
<UL>
<LI><A href="entries/cooking.html">cooking</A>
- Typeset recipes
<LI><A href="entries/recipe.html">recipe</A>
- Typeset recipes
</UL>
<P>
<H2><A name="games"> </A>Documenting Games</H2>
<UL>
<LI><A href="entries/backgammon.html">backgammon</A>
- Typesetting backgammon boards
<LI><A href="entries/bakoma-games.html">bakoma-games</A>
- Includes popular macro packages described in chapters 7
(Preparing music scores: MusiXTeX) and 8 (Playing games:
Chess, Xiangqi - Chinese Chess, Go, Backgammon, Bridge,
Crosswords) of the "LaTeX graphics Companion"
<LI><A href="entries/bg.html">bg</A>
- Annotate backgammon matches and positions
<LI><A href="entries/cheq.html">cheq</A>
- Adobe chess font
<LI><A href="entries/cchess.html">cchess</A>
- Typesetting Chinese Chess board diagrams
<LI><A href="entries/chess.html">chess</A>
- Fonts for typesetting chess boards
<LI><A href="entries/go.html">go</A>
- Fonts and macros for typesetting go games
<LI><A href="entries/igo.html">igo</A>
- Fonts and macro to typeset Go diagrams
<LI><A href="entries/othello.html">othello</A>
- Create othello boards in LaTeX
<LI><A href="entries/skak.html">skak</A>
- Typeset chess games using PGN and show diagrams of the
current board in the document
</UL>
<P>
<H2><A name="crosswd"> </A>Crossword Puzzles</H2>
<UL>
<LI><A href="entries/crosswrd.html">crosswrd</A>
- Brian Hamilton Kelly's crosswrd package updated to run with
LaTeX2e
<LI><A href="entries/cwpuzzle.html">cwpuzzle</A>
- Typeset crossword puzzles
</UL>
<P>
<H2><A name="cd"> </A>CD and MC Covers</H2>
<UL>
<LI>cd
-
<LI><A href="entries/cdcover.html">cdcover</A>
- Typeset CD covers
<LI><A href="entries/cdlabeler.html">cdlabeler</A>
- Take user text and typeset it to fit a CD label
<LI><A href="entries/mceinleger.html">mceinleger</A>
- Creating MC-covers on your own, requiring the
<A href="entries/rotating.html">rotating</A> package
</UL>
<P>
<H2><A name="braille"> </A>Support for the Blind</H2>
<UL>
<LI><A href="entries/braille.html">braille</A>
- Support for braille
</UL>
<P>
<H2><A name="charsets"> </A>Using different character sets</H2>
<UL>
<LI><A href="entries/codepage.html">codepage</A>
- Support for variant code pages
<LI><A href="entries/inputenc.html">inputenc</A>
- Control input encoding
<LI><A href="entries/unicode.html">unicode</A>
- Map unicode to LaTeX macros and use UTF-8 input encoding
<LI><A href="entries/u8tex.html">u8tex</A>
- Emacs Mule facility to input Unicode characters in TeX
notation
</UL>
<P>
<H2><A name="devel"> </A>Developing and Documenting LaTeX Packages</H2>
<UL>
<LI><A href="entries/afterpage.html">afterpage</A>
- Implements a command that causes the commands specified in
its argument to be expanded after the curent page is output
<LI><A href="entries/at.html">at</A>
- A package to remove a lot of tedious typing that ends up in
LaTeX documents by expanding the number of short command names
available. The new command names begin with the "@"
character, rather than the conventional backslash, so you can
tell them apart
<LI><A href="entries/blindtext.html">blindtext</A>
- Provides `blind', or dummy text for testing purposes,
similar to <A href="entries/lipsum.html">lipsum</A>
<LI><A href="entries/clefval.html">clefval</A>
- Key/value support with a hash
<LI><A href="entries/compsci.html">compsci</A>
- A LaTeX package useful whenever writing about programming,
but especially when writing about TeX
<LI><A href="entries/doc.html">doc</A>
- Contains the definitions that are necessary to format the
documentation of package files (Literate LaTeX) which
incorporate both the documentation and the code
<LI><A href="entries/docstrip.html">docstrip</A>
- Makes a package documentation file smaller by removing
comments and other sections of the document conditionally
<LI><A href="entries/dtxtut.html">How to Package Your LaTeX Package</A>
- Tutorial on writing .dtx and .ins files
<LI><A href="entries/everyshi.html">everyshi</A>
- Introduces a new hook for taking action at every \shipout
<LI><A href="entries/frankenbundle.html">frankenbundle</A>
- Develop and distribute groups of LaTeX packages and classes
and BibTeX bibstyles
<LI><A href="entries/ifmtarg.html">ifmtarg</A>
- If-then-else command for processing potentially empty
arguments
<LI><A href="entries/ifthen.html">ifthen</A>
- Conditionals in LaTeX2e documents (if – then –
else etc.)
<LI><A href="entries/keyval.html">keyval</A>
- Process 'key=value' schemes
<LI><A href="entries/lipsum.html">lipsum</A>
- Provides `lorem ipsum' dummy text, similar to
<A href="entries/blindtext.html">blindtext</A>
<LI><A href="entries/makedtx.html">makedtx</A>
- Perl script to help generate dtx and ins files
<LI><A href="entries/moredefs.html">moredefs</A>
- LaTeX defining, expansion, and debugging commands
<LI><A href="entries/processkv.html">processkv</A>
- Process key-value pairs
<LI><A href="entries/pst-xkey.html">pst-xkey</A>
- Key-value syntax for
<A href="entries/pstricks.html">pstricks</A> packages
<LI><A href="entries/stdclsdv.html">stdclsdv</A>
- Provide sectioning information for package writers
<LI><A href="entries/suffix.html">suffix</A>
- Enables you to define and maintain command variants like
\macro*
<LI><A href="entries/texpack.html">texpack</A>
- Scripts to create documented LaTeX style, class files and
docs in a Unix environment
<LI><A href="entries/xkeyval.html">xkeyval</A>
- Extension of the <A href="entries/keyval.html">keyval</A>
package
</UL>
<P>
<H2><A name="distros"> </A>(La)TeX Distributions</H2>
<P class="notes">
<A href="entries/texlive.html">texlive</A>
provides <A href="entries/tetex.html">tetex</A>
for Unices (including Mac OS X) and
<A href="entries/fptex.html">fptex</A> for Windows.
</P>
<UL>
<LI><A href="entries/base.html">base</A>
- Definitive source of Plain TeX on CTAN
<LI><A href="entries/latex.html">latex</A>
- LaTeX is a (and probably the most) popular macro package for
TeX
<LI><A href="entries/latex209.html">latex209</A>
- The pre-1993 LaTeX, now no longer supported
</UL>
<H3><A name="unix"> </A>Unices:</H3>
<UL>
<LI><A href="entries/tetex.html">tetex</A>
- A comprehensive distribution of TeX, LaTeX and family,
particulalry designed to be very easy to install on *ix
platforms, included in
<A href="entries/texlive.html">texlive</A>
<LI><A href="entries/vtex.html">VTeX/Free</A>
- TeX system and PDF support for Linux and OS/2
<LI><A href="entries/web2c.html">web2c</A>
- The "standard" source C version of the TeX sysmtem
</UL>
<H3><A name="dos"> </A>DOS:</H3>
<UL>
<LI><A href="entries/emtex.html">emtex</A>
- A TeX system for MS-DOS
</UL>
<H3><A name="os2"> </A>OS/2:</H3>
<UL>
<LI><A href="entries/emtex-os2.html">emtex-os2</A>
- A TeX system for os2
<LI><A href="entries/vtex.html">VTeX/Free</A>
- TeX system and PDF support for Linux and OS/2
</UL>
<H3><A name="win"> </A>Windows:</H3>
<UL>
<LI><A href="entries/bakoma.html">bakoma</A>
- A Comprehensive TeX system for MS-Windows for preparing
electronic documents
<LI><A href="entries/bakoma-fonts.html">bakoma-fonts</A>
- Computer Modern and AMS fonts in PostScript Type1 form
<LI><A href="entries/bakoma-games.html">bakoma-games</A>
- BaKoMa modules for music and games
<LI><A href="entries/emtexgi.html">emtexgi</A>
- A MS-Windows interface to emTeX
<LI><A href="entries/fptex.html">fptex</A>
- A distribution of TeX for MS-Windows based on <A
href="entries/web2c.html">web2c</A> and
<A href="entries/tetex.html">tetex</A>
using InstallShield for installation, included in
<A href="entries/texlive.html">texlive</A>
<LI><A href="entries/miktex.html">miktex</A>
- A distribution of TeX and friends for MS-Windows95 and
MS-Windows-NT. Features include easy installation and
configuration, and full TeX and LaTeX support
<LI><A href="entries/miktex-axp.html">miktex-axp</A>
- A port of MiKTeX to MS-Windows-NT on the Alpha
<LI><A href="entries/protext.html">protext</A>
- A <A href="entries/miktex.html">miktex</A>-based TeX
installation for MS-Windows
</UL>
<H3><A name="mac"> </A>Macintosh:</H3>
<P class="notes">
Gary L. Gray and Joseph C. Slater have compiled a
comprehensive <A href="http://www.esm.psu.edu/mac-tex/">site</A> for
the Macintosh TeX community.
</P>
<UL>
<LI><A href="entries/cmactex.html">cmactex</A>
- This port of TeX for the Macintosh includes
<A href="#omega">Omega</A> and
<A href="entries/pdftex.html">pdfTeX</A>.
<LI><A href="entries/macbibtex.html">macbibtex</A>
- A port of
<A href="entries/bibtex.html">BibTeX</A> which is distributed
with <A href="entries/oztex.html">OzTeX</A> for the Macintosh
OS
<LI><A href="entries/oztex.html">oztex</A>
- TeX for the Macintosh
<LI><A href="entries/oztex-german.html">oztex-german</A>
- German version of oztex
<LI><A href="entries/tetex.html">tetex</A>
- A comprehensive distribution of TeX, LaTeX and family,
particulalry designed to be very easy to install on *ix
platforms, included in
<A href="entries/texlive.html">texlive</A>
</UL>
<H3><A name="distromisc"> </A>Misc:</H3>
<UL>
<LI><A href="entries/amiweb2c.html">amiweb2c</A>
- An Amiga port of the complete UNIX-TeX system
<LI><A href="entries/pict2e.html">pict2e</A>
- New implementation of picture commands
</UL>
<P>
<H2><A name="etexdist"> </A>E-TeX</H2>
<UL>
<LI><A href="entries/e-tex.html">e-tex</A>
- An extension of TeX with several significant programming
enhancements
</UL>
<H2><A name="context"> </A>ConTeXt</H2>
<P class="notes">
ConTeXt is another macro package for using TeX, so it
supplies an alternative to LaTeX. The
<A href="http://www.pragma-ade.com/">ConTeXt project</A> has a rather lively
<A href="http://www.ntg.nl/mailman/listinfo/ntg-context">mailing list</A>.
<BR>For those speaking German there is a comprehensive
<A href="http://www.uni-giessen.de/partosch/TeX/ConTeXt-LaTeX/">paper</A>
by Günter Partosch summarising his talk on ConTeXt vs. LaTeX held
at a Dante meeting in 2003.
</P>
<UL>
<LI><A href="entries/context.html">context</A>
- A full featured, parameter driven macro package, which fully
supports advanced interactive documents.
<A href="entries/ppchtex.html">ppchtex</A> is a module that
can be used to typeset chemical formulas
<LI><A href="entries/context-bib.html">context-bib</A>
- ConTeXt bibliography module
<LI><A href="entries/context-maths.html">context-maths</A>
- ConTeXt versions of LaTeX speciality maths packages
</UL>
<P>
<H2><A name="omega"> </A>Omega</H2>
<UL>
<LI><A href="entries/aleph.html">aleph</A>
- An development of omega
<LI><A href="entries/antomega.html">antomega</A>
- Alternative language support for omega/ lambda
<LI><A href="entries/omega.html">omega</A>
- Still experimental software, Omega is intended for
multilingual typesetting. It uses unicode, and has additional
primitives for (among other things) bidirectional typesetting
<LI><A href="entries/omegabase.html">omegabase</A>
- Basic support files for Omega
<LI><A href="entries/omegafonts.html">omegafonts</A>
- Omega fonts
</UL>
<P>
<H2><A name="editors"> </A>Editors</H2>
<P class="notes">
See also <A href="#lyxnode">LyX</A>.
</P>
<UL>
<LI><A href="entries/auctex.html">auctex</A>
- Provides an excellent environment for TeX/LaTeX document
production
<LI><A href="entries/kile.html">kile</A>
- A user-friendly TeX/LaTeX editor for KDE
<LI><A href="entries/latable.html">LaTable</A>
- A near-WYSIWYG editor for LaTeX tables
<LI><A href="entries/lated.html">lated</A>
- A graphical editor for drawings in the LaTeX ``picture''
environment running under MS-DOS and MS-Windows
<LI><A href="entries/meta-mode.html">meta-mode</A>
- A GNU Emacs Lisp package that implements a major mode for
editing MetaFont or MetaPost sources
<LI><A href="entries/mpedit.html">MPEdit</A>
- MetaPost text editor for Win32
<LI><A href="entries/nedit-latex-extensions.html">nedit-latex-extensions</A>
- The NEdit LaTeX-Mode
<LI><A href="entries/ntemacs.html">ntemacs</A>
- A distribution of Emacs for MS-Windows32 machines
<LI><A href="entries/texed.html">texed</A>
- A TeX shell for OS/2, FSS-TeXEdit provides an easy interface
for LaTeX2e, dvips, GhostScript and ispell
<LI><A href="entries/texniccenter.html">texniccenter</A>
- An integrated development environment (IDE) for developing
LaTeX documents on Windows
<LI><A href="entries/texshell32.html">texshell32</A>
- A free TeXShell for MS-Windows
<LI><A href="entries/u8tex.html">u8tex</A>
- Emacs Mule facility to input Unicode characters in TeX
notation
<LI><A href="entries/winedt.html">winedt</A>
- A full-featured text editor and Shell for MS-Windows
allowing the editting of large, multiple, text files in the
usual MS-Windows way
<LI><A href="entries/winshell.html">winshell</A>
- A MS-Windows32 user interface for TeX
</UL>
<P>
<H2><A name="lyxnode"> </A><A href="http://www.lyx.org">LyX</A></H2>
<UL>
<LI><A href="http://www.lyx.org/">lyx</A>
- is not an <A href="#editors">editor</A>, but a frontend to
LaTeX available for
<A href="http://www.lyx.org/download/">Unix-like</A> platforms
as well as
<A href="http://www.home.zonnet.nl/rareitsma/lyx/">MS Windows</A>,
and
<A href="http://www.18james.com/lyx_on_aqua.html">the Macintosh</A>,
offering a <I>"what-you-see-is-what-you-mean"</I>
approach to working with text, different to the
<I>"what-you-see-is-what-you-get"</I> way common to
<A href="#texvswp">word processors</A>
</UL>
<P>
<H2><A name="microimpnode">MicroIMP</H2>
<UL>
<LI><A href="entries/microimp.html">MicroIMP</A>
- Unlike <A href="http://www.lyx.org/">lyx</A> which pursues a
<I>"what-you-see-is-what-you-mean"</I> approach
MicroIMP is a true
<I>"what-you-see-is-what-you-get"</I> word
processor based on a LaTeX system by Micropress Inc.
</UL>
<P>
<H2><A name="viewers"> </A>Previewers and Plugins</H2>
<UL>
<LI><A href="entries/acroread.html">acroread</A>
- A tool from Adobe for reading Adobe <A href="#pdf">PDF</A>
files available for a variety of architectures
<LI><A href="entries/autoview.html">autoview</A>
- While you are editing your file.tex, autoview will (run in a
separate emacs and) continually, intelligently, and
automatically keep processing your latex file, generate a .ps
file and gv (view) the file for you
<LI><A href="entries/dviwin.html">dviwin</A>
- A screen and printer driver for TeX DVI files under Windows
3.1 and Windows NT
<LI><A href="entries/ghostscript-afpl.html">ghostscript-afpl</A>
- Freely available PostScript interpreter available for many
platforms
<LI><A href="entries/ghostscript-gpl.html">ghostscript-gpl</A>
- Freely distributable version of the
<a href="entries/ghostscript-afpl.html">AFPL ghostscript</A>
interpreter available for many platforms.
<LI><A href="entries/ghostview-mac.html">ghostview-mac</A>
- Ghostview for <A href="entries/cmactex.html">cmactex</A> to
preview PostScript documents
<LI><A href="entries/gsview.html">gsview</A>
- A graphical interface for ghostscript under MS-Windows or
OS/2
<LI><A href="entries/javadvi.html">javadvi</A>
- A DVI viewer and printer coded in Java
<LI><A href="entries/mdvi.html">mdvi</A>
- A previewer for DVI files
<LI><A href="entries/ps_view.html">ps_view</A>
- A PostScript preamble providing an interactive environement
for fast previewing of PostScript documents with
ghostscript
<LI><A href="entries/techexplorer.html">techexplorer</A>
- Netscape Plugin for viewing TeX and LaTeX sources available
for most platforms
<LI><A href="entries/windvi.html">windvi</A>
- A port of <A href="entries/xdvi.html">xdvi</A> to Windows
for previewing DVI files
<LI><A href="entries/xdvi.html">xdvi</A>
- A dvi previewer for the X Window System
<LI><A href="entries/xpdf.html">xpdf</A>
- Previewing and manipulating upon PDF files on most platforms
available
</UL>
<P>
<H2><A name="spchecker"> </A>Spelling Checker</H2>
<UL>
<LI><A href="entries/amspell.html">amspell</A>
- A spell checker for plain ASCII files, with some special
features for dealing with TeX files for DOS systems
<LI><A href="entries/aspell.html">aspell</A>
- GNU Aspell is a Free and Open Source spell checker designed
to eventually replace
<A href="entries/ispell.html">ispell</A>
<LI><A href="entries/check.html">check</A>
- The checker provides syntax checking and automatic
labelling, together with some support for German documents
<LI><A href="entries/chktex.html">chktex</A>
- Finds typographic errors in LaTeX
<LI><A href="entries/excalibur.html">excalibur</A>
- A spelling checker for the Macintosh that is also LaTeX
aware
<LI><A href="entries/fourspell.html">fourspell</A>
- Windows32 spell checker for TeX, RTF, HTML, and BibTeX the
dictionaries of which are compatible with
<A href="entries/winedt.html">WinEdT</A>
<LI><A href="entries/ispell.html">ispell</A>
- A fast screen-oriented spelling checker that shows you your
errors in the context of the original file, and suggests
possible corrections when it can figure them out
<LI><A href="entries/jspell.html">jspell</A>
- An ASCII file spelling checker
</UL>
<P>
<H2><A name="convert"> </A>Converters</H2>
<H3><A name="wp"> </A>TeX, and Word Processors:</H3>
<P class="notes">
You may now input text using
<A href="http://www.openoffice.org">OpenOffice Writer</A> and later
convert it to LaTeX with Java-based
<A href="http://www.hj-gym.dk/~hj/writer2latex/">Writer2LaTeX</A>.
<BR>
<BR>If you are using <A href="#lyxnode">LyX</A> there
are two converters coming with LyX for importing LaTeX files: reLyX (a
perl script), and tex2lyx (still experimental).
<BR>
<BR>
The <A href="http://www.tug.org">TUG</A> offers an overview of
converters
<A href="http://www.tug.org/utilities/texconv/pctotex.html">from PC
Textprocessors to LaTeX</A> and vice versa
<A href="http://www.tug.org/utilities/texconv/textopc.html">From LaTeX
to PC</A>. Some of the <A href="#wp">converters</A> between LaTeX and
word processor formats can be found on CTAN:
</P>
<UL>
<LI><A href="entries/catdoc.html">catdoc</A>
- Converts binary MS-Word files into ascii text, optionally
with some TeX control sequences
<LI><A href="entries/latex2rtf.html">latex2rtf</A>
- Convert LaTeX into Rich Text Format
<LI><A href="entries/tex2rtf.html">tex2rtf</A>
- Convert TeX into Rich Text Format
<LI><A href="entries/word2x.html">word2x</A>
- A word 6 to anything converter, currently supporting output
formats in text and LaTeX
<LI>WordML2LaTeX
- A XSL stylesheet that transforms a Word document (WordML) in
a LaTeX2e source for using MS Word as a front end for
LaTeX.
</UL>
<H3><A name="html"> </A>TeX to HTML:</H3>
<UL>
<LI><A href="entries/bbl2html.html">bbl2html</A>
- Convert a LaTeX .bbl file to formatted html code
<LI><A href="entries/bibhtml.html">bibhtml</A>
- Consists of a <A href="#perl">Perl</A> script and a
<A href="entries/bibtex.html">BibTeX</A> style file, which
together allow you to compile a bibliography for a collection
of HTML files
<LI><A href="entries/bib2xhtml.html">bib2xhtml</A>
- A program that converts BibTeX files into HTML (specifically
XHTML 1.0)
<LI><A href="entries/latex2html.html">latex2html</A>
- A <A href="#perl">Perl</A> program that translates LaTeX
into HTML
<LI><A href="entries/ltoh.html">ltoh</A>
- A converter from LaTeX to HTML
<LI><A href="entries/tex4ht.html">tex4ht</A>
- A converter from TeX and LaTeX to hypertext (HTML,
<A href="#xml">XML</A>, etc.), providing a configurable
(La)TeX-based authoring system for hypertext
<LI><A href="entries/tex_converter.html">tex_converter</A>
- Windows front-end to various LaTeX to HTML converters
<LI><A href="entries/tth.html">tth</A>
- A TeX to HTML translator
<LI><A href="entries/typehtml.html">typehtml</A>
- Typeset HTML directly from LaTeX that can handle almost all
of HTML2, and most of the math fragment of the draft HTML3
</UL>
<H3><A name="html2"> </A>HTML to TeX:</H3>
<UL>
<LI><A href="entries/hyperlatex.html">hyperlatex</A>
- A package that allows you to prepare documents in HTML and
to produce a neatly printed document from your input using
LaTeX. It is <I>not</I> a LaTeX to html converter
</UL>
<H3><A name="fontconverters"> </A>Font Formats:</H3>
<UL>
<LI><A href="entries/fontinst.html">fontinst</A>
- TeX macros for converting Adobe Font Metric files to TeX
metric and virtual font format
<LI><A href="entries/mf2pt1.html">mf2pt1</A>
- Produce PostScript Type 1 fonts from
<A href="#metafontandmetapost">MetaFont</A> source
<LI><A href="entries/mf2pt3.html">mf2pt3</A>
- <A href="#perl">Perl</A> script to generate PostScript Type
3 fonts from <A href="#metafontandmetapost">MetaFont</A>
sources by processing
<LI><A href="entries/ttf2mf.html">ttf2mf</A>
- MS program to convert True Type to
<A href="#metafontandmetapost">metafont</A>
<LI><A href="entries/ttf2pk.html">ttf2pk</A>
- This tool rasterizes the glyph outlines of a TrueType font
into a bitmap font in PK format as part of the
<A href="entries/freetype.html">FreeType</A> package
<LI><A href="entries/ttf2pt1.html">ttf2pt1</A>
- A tool that converts True Type fonts into
<A href="#type1fonts">PS Type 1 fonts</A>
<LI><A href="entries/ttf2tex.html">ttf2tex</A>
- A Bash script which will create all files neccessary to use
TrueType fonts with <A href="entries/tetex.html">teTeX</A>
from a set of TTF files
<LI><A href="entries/ttf2tfm.html">ttf2tfm</A>
- Extracts the metric and kerning information of a TrueType
font and converts it into metric files usable by TeX (quite
similar to afm2tfm which is part of the
<A href="entries/dvips.html">dvips</A> package)
<LI><A href="entries/ttftogf.html">ttftogf</A>
- Convert MS-Windows True Type fonts to GF format
</UL>
<H3><A name="convmisc"> </A>Misc:</H3>
<P class="notes">
There is <a href="http://web.hc.keio.ac.jp/~mr041754/calc2latex/">Calc2LaTeX</a>
for converting OpenOffice spreadsheets to LaTeX tables.
</P>
<UL>
<LI><A href="entries/a2ping.html">a2ping</A>
- A UNIX command line utility written in Perl that converts
many raster image and vector graphics formats to EPS or PDF
and other page description formats
<LI><A href="entries/bib2xhtml.html">bib2xhtml</A>
- A program that converts BibTeX files into HTML (specifically
XHTML 1.0)
<LI><A href="entries/bmeps.html">bmeps</A>
- Converter from PNG/JPEG/TIFF/NetPBM to EPS
<LI><A href="entries/catdvi.html">catdvi</A>
- A DVI to plain text translator capable of generating ASCII,
Latin-1 and UTF-8 (Unicode) output
<LI><A href="entries/convert.html">convert</A>
- Convert a file in an 8-bit character set to one that uses
Knuth's notation for non-ASCII characters
<LI><A href="entries/csvtools.html">csvtools</A>
- Allows you to repeatedly perform a set of LaTeX commands on
data in each row of a comma separated variable (CSV) file
<LI><A href="entries/dvi2tty.html">dvi2tty</A>
- A DVI driver to produce an ASCII representation of the
document
<LI><A href="entries/delimtxt.html">delimtxt</A>
- Read and parse text tables
<LI><A href="entries/excel2latex.html">Excel-to-LaTeX</A>
- Convert Excel spreadsheets to LaTeX tables (works with Excel
up to Excel 97)
<LI><A href="entries/mif2xfig.html">mif2xfig</A>
- A tool to convert diagrams from Frame Maker's MIF format to
XFig's format, and vice versa
<LI><A href="entries/png2pdf.html">png2pdf</A>
- PNG to PDF converter
<LI><A href="entries/psrip.html">psrip</A>
- Extracts images from PostScript files
<LI><A href="entries/pstoedit.html">pstoedit</A>
- Translate PostScript and PDF to other formats
<LI><A href="entries/pstotext.html">pstotext</A>
- Extract ASCII from PostScript and PDF which uses
ghostscript, but does a more careful job with kerned
characters and nonstandard font encodings than Ghostscript's
ps2ascii utility
<LI><A href="entries/txt2latex.html">txt2latex</A>
- A small <A href="#perl">Perl</A> script intended to
facilitate batch conversion of largely unformatted ASCII text
for use with LaTeX
<LI><A href="entries/txt2tex.html">txt2tex</A>
- Converts plain text into something with a little LaTeX
formatting
<LI><A href="entries/xl2latex.html">xl2latex</A>
- Convert Excel (97 and above) tables to LaTeX tabulars
</UL>
<P>
<H2><A name="perl"> </A>Using <A href="http://www.cpan.org">Perl</A> with LaTeX</H2>
<UL>
<LI><A href="entries/perltex.html">perltex</A>
- Define LaTeX macros in terms of Perl code
</UL>
<P>
<H2><A name="xml"> </A>Using SGML and XML with LaTeX</H2>
<UL>
<LI><A href="entries/jadetex.html">jadetex</A>
- Macro package on top of LaTeX to typeset TeX output of Jade
DSSSL implementation
<A href="index.html">TeX Catalogue</A>
<LI><A href="entries/sgmlcmpt.html">sgmlcmpt</A>
- Suppport for LaTeX formulae as SGML PCDATA
<LI><A href="entries/xmlplay.html">xmlplay</A>
- An xmltex package for typsetting the plays of Shakespeare,
as marked up by Jon Bosak
<LI><A href="entries/xmltex.html">xmltex</A>
- Support for parsing XML documents
</UL>
<P>
<H2><A name="miscbin"> </A>Some more binaries</H2>
<UL>
<LI><A href="entries/bzip2.html">bzip2</A>
- Compression program
</UL>
<P>
<H2><A name="miscpack"> </A>Miscellanous Packages</H2>
<UL>
<LI><A href="entries/aaai.html">aaai</A>
- AAAI style
<LI><A href="entries/abstyles.html">abstyles</A>
- No description available
<LI><A href="entries/alatex.html">alatex</A>
- ALaTeX provides the user with all the functionality of LaTeX
but with one small change: a general, legal way to override
standard LaTeX behavior without altering source files
<LI><A href="entries/autoconf.html">autoconf</A>
- LaTeX for Autoconf is a set of macros in the M4 language to
test if latex is installed or if some package exists or some
other conditions apply
<LI><A href="entries/basix.html">basix</A>
- A BASIC interpreter written in TeX
<LI><A href="entries/begriff.html">begriff</A>
-
<LI><A href="entries/eplain.html">eplain</A>
- Simple but powerful extended version of the plain format,
adding support for bibliographies, tables of contents,
enumerated lists, verbatim input of files, numbered equations,
tables, two-column output, footnotes and
<A href="#commutative">commutative diagrams</A>
<LI><A href="entries/wordcount.html">wordcount</A>
- Estimate the number of words in a LaTeX document
</UL>
<HR>
</BODY>
</HTML>
|