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
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="generator"
content="HTML Tidy for Linux/x86 (vers 1st March 2002), see www.w3.org" />
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1" />
<title>Appendix C. Resources</title>
<link rel="stylesheet" href="mtw.css" type="text/css" />
<meta name="generator"
content="DocBook XSL Stylesheets V1.53.0" />
<link rel="home" href="index.html" title="Making TeX Work" />
<link rel="up" href="pt03.html"
title="Part III. A Tools Overview" />
<link rel="previous" href="apb.html"
title="Appendix B. Font Samples" />
<link rel="next" href="apd.html"
title="Appendix D. Long Examples" />
</head>
<body>
<div class="navheader">
<table border="0" cellpadding="0" cellspacing="0"
width="100%" summary="Navigation table">
<tr>
<td align="left"> <a title="Making TeX Work"
href="index.html"><img src="figures/nav-home.png"
alt="Home" border="0" /></a> <a
title="Appendix B. Font Samples"
href="apb.html"><img src="figures/nav-prev.png"
alt="Prev" border="0" /></a> <a
title="Part III. A Tools Overview"
href="pt03.html"><img src="figures/nav-up.png" alt="Up"
border="0" /></a> <a
title="Appendix D. Long Examples"
href="apd.html"><img src="figures/nav-next.png"
alt="Next" border="0" /></a></td>
<td align="right"><i>Making TeX Work</i> Version 1.0.1
<span class="alpha-version">(<a
href="co01.html"><em>Alpha</em></a>)</span></td>
</tr>
</table>
</div>
<div class="appendix">
<div class="titlepage">
<div>
<h2 class="title"><a id="app.resources"
name="app.resources"></a>Appendix C. Resources</h2>
</div>
<div>
<p class="releaseinfo">$Revision: 1.1 $</p>
</div>
<div>
<p class="pubdate">$Date: 2002/08/23 14:31:13 $</p>
</div>
</div>
<p>This appendix lists the resources described in this book.
Each of the tools (with the exception of tools mentioned only
in Chapter <a href="ch16.html"
title="Chapter 16. TeX Utilities">Chapter 16</a>,
<span class="emphasis"><em><a href="ch16.html"
title="Chapter 16. TeX Utilities">Chapter 16</a></em></span>,
which are already listed in a similar format) described in
the book is presented here. Each entry credits the author and
provides information about where the software can be
obtained.</p>
<p>Most of the resources in this appendix are availble from
the CTAN archives. Where other sites are listed (for example,
<tt>oak.oakland.edu</tt> for MS-DOS software), the addresses
are only one possibility. Most of these archives are mirrored
around the world. When possible, use an FTP site that is
geographically nearby. If you are connected to the Internet,
the <tt>archie</tt> service can help you locate nearby
sites.</p>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2943524"
name="id2943524"></a>TUG: The TeX Users Group</h2>
</div>
</div>
<p>The TeX Users Group <span class="smallcaps">TUG</span>,
begun in 1980, is the international group for TeX users.
Their mission is to encourage and expand the use of TeX,
MetaFont, and related systems; to ensure the integrity and
portability of these systems; and to foster innovation in
high-quality electronic document preparation.</p>
<p>Membership includes the quarterly <i>TUGboat</i>, the
newsletter TTN (also a quarterly), and a membership
directory; as well, <span class="smallcaps">TUG</span>
publishes an occasional series called TeXniques, for
special topics (e.g., PiCTeX, <tt>edmac.sty</tt>).</p>
<p><span class="smallcaps">TUG</span> annual meetings are
held in various locations, currently in North America and
Europe, in a regular rotation; proceedings are published in
<i>TUGboat</i>. Most of the publications now available on
TeX, MetaFont, and related systems are available from the
<span class="smallcaps">TUG</span> office, which also
distributes the main public domain TeX implementations.</p>
<p>In addition to its publications, <span
class="smallcaps">TUG</span> promotes active development
work via the Technical Council and its Technical Working
Groups. \pagebreak Efforts here include the CTAN archive
work, multilingual TeX, TeX for the disabled, and the
intersection of TeX with SGML and with Acrobat.</p>
<p>Information about joining <span
class="smallcaps">TUG</span>, receiving <i>TUGboat</i>, and
attending the annual meetings is available from:</p>
<p>TeX Users Group \\ P.O. Box 869 \\ Santa Barbara,
California \\ 93102 USA</p>
<div class="section">
<div class="titlepage">
<div>
<h3 class="title"><a id="id2946099"
name="id2946099"></a>Other User Groups</h3>
</div>
</div>
<p>There are also many other user groups, often based on
language or geography: German-speaking users ({\sc
DANTE}), French-speaking users ({\sc
GUT}enberg\hskip.25pt), Dutch-speaking users ({\sc NTG}),
users in the Nordic countries (the Nordic group), users
in the UK ({\sc UK} TeX Users Group). There are active
groups in existence in Japan, in Russia (Cyr<span
class="smallcaps">TUG</span>), in Estonia, in Poland
({\sc GUST}), and in the Czech Republic (Cs<span
class="smallcaps">TUG</span>), to name but a few.</p>
<p>Contact <span class="smallcaps">TUG</span> for details
on how to get in touch with these or other TeX user
groups.</p>
</div>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946152"
name="id2946152"></a>TeX Software</h2>
</div>
</div>
<p>\package{\cmactex} \author{Thomas R. Kiffe}
\ftp{CTAN:systems/mac/cmactex} \print</p>
<p>\package{\directex} \author{Wilfried Ricken}
\ftp{CTAN:systems/mac/directtex} \print</p>
<p>\package{\emTeX} <a id="ap03.emtex"
name="ap03.emtex"></a> \author{Eberhard Mattes}
\ftp{CTAN:systems/msdos/emtex} \print</p>
<p>\package{\gTeX} \author{Young U. Ryu}
\ftp{CTAN:systems/msdos/gtex} \print</p>
<p>\package{\oztex} <a id="ap03.oztex"
name="ap03.oztex"></a> \author{Andrew Trevorrow}
\files{$\Sigma$Edit} \ftp{CTAN:systems/mac/oztex}</p>
<p>\package{\PCTeX} <a id="ap03.pctex"
name="ap03.pctex"></a> \author{Personal \TeX, Inc.}
\address{12 Madrona Avenue\\Mill Valley, CA 94941\\USA}
\phone{(415) 388--8853 / (413) 388--8865 FAX} \print</p>
<p>\package{\sbTeX} <a id="ap03.sbtex"
name="ap03.sbtex"></a> \author{Wayne G. Sullivan}
\ftp{CTAN:systems/msdos/sbtex} \print</p>
<p>\package{\TeX} <a id="ap03.tex" name="ap03.tex"></a>
\author{Donald Knuth} \ftp{CTAN:systems/web2c} \comment{The
\Web sources and the \Web2C programs are both available
here.} \print</p>
<p>\package{texas} \author{Shih-Ping Chan}
\ftp{CTAN:systems/msdos/texas} \print</p>
<p>\package{Textures} <a id="ap03.textures"
name="ap03.textures"></a> \author{Blue Sky Research}
\address{534 SW Third Avenue\\Portland, OR 97204\\USA}
\phone{(800) 622--8398 or (503) 222--9571 / (503) 222--1643
FAX} \files{dvitool} \print</p>
<p>\package{\TurboTeX} <a id="ap03.turbotex"
name="ap03.turbotex"></a> \author{Kinch Computer Company}
\address{501 Meadow Street\\Ithaca, NY 14850\\USA}
\phone{(607) 273--0222 / (607) 273--0484 FAX} \print</p>
<p>\package{\utex} <a id="ap03.utex" name="ap03.utex"></a>
\author{ArborText} \address{1000 Victors Way\\Ann Arbor, MI
48108\\USA} \phone{(313) 996--3566 / (313) 996--3573 FAX}
\print</p>
<p>\package{\yyTeX} \author{\YY, Inc.} \address{106 Indian
Hill\\Carlisle, MA 01741\\USA} \phone{(508) 371--3286 /
(508) 371--2004 FAX} <a id="ap03.yytex"
name="ap03.yytex"></a> \print</p>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946301"
name="id2946301"></a>TeX Shells</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{\fourTeX} \author{Wietse Dol, Erik Frambach,
Arjen Merckens, and Maarten van der Vlerk}
\ftp{CTAN:systems/msdos/4tex} \print</p>
<p>\package{\PMTeX} \author{Guillaume Schiltz}
\ftp{CTAN:systems/os2/pmtex} \print</p>
<p>\package{\TeXPert} \author{Johannes Martin}
\ftp{CTAN:systems/msdos/texpert} \print</p>
<p>\package{\TeXShell} \author{J\"urgen Schlegelmilch}
\ftp{CTAN:systems/msdos/texshell} \print</p>
<p>\package{X\TeX{}Shell} \author{Michael Hofmann}
\ftp{tsx-11.mit.edu:pub/linux/packages/TeX} \print</p>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946342"
name="id2946342"></a>Editors</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{$\Sigma$Edit} \xref{\oztex}{ap03:oztex}
\print</p>
<p>\package{Alpha} \author{Pete Keheler}
\ftp{CTAN:systems/mac} \print</p>
<p>\package{BBEdit} \author{Rich Siegel}
\ftp{mac.archive.umich.edu:/mac/util/text} \print</p>
<p>\package{Brief} \author{Borland International, Inc.}
\address{1800 Green Hills Road\\P.O. Box 660001\\Scotts
Valley, CA 95067--0001} \phone{(408) 438--8400} \print</p>
<p>\package{demacs} \author{Manabu Higashida and Hirano
Satoshi} \ftp{oak.oakland.edu:/pub/msdos/demacs} \print</p>
<p>\package{Doc} \xref{idraw}{ap03:idraw} \print</p>
<p>\package{emacs} \xref{GNU emacs}{ap03:emacs} \print</p>
<p>\package{epm} \author{International Business Machines}
\ftp{ftp.cdrom.com:/pub/os2/ibm/epm} \print</p>
<p>\package{GNU emacs} <a id="ap03.emacs"
name="ap03.emacs"></a> \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{Jove} \author{Jonathan Payne}
\ftp{oak.oakland.edu:/pub/msdos/editor} \print</p>
<p>\package{MathPad} \author{Roland Backhouse, Richard
Verhoeven, and Olaf Weber} \ftp{CTAN:support/mathpad}
\print</p>
<p>\package{MEwin} <a id="ap03.mewin"
name="ap03.mewin"></a> \author{Pierre Perret}
\ftp{oak.oakland.edu:/pub/msdos/windows3} \print</p>
<p>\package{MicroEMACS} \xref{MEwin}{ap03:mewin} \print</p>
<p>\package{Multi-Edit} \author{American Cybernetics}
\address{1830 West University Drive, Suite 112\\Tempe, AZ
85821} \phone{(602) 968--1945 / (602) 966--1654 FAX}
\print</p>
<p>\package{Scientific Word} \author{TCI Software Research}
\address{1190 Foster Road\\Las Cruces, NM 88001\\USA}
\phone{(505) 522--4600 / (505) 522--0116} \print</p>
<p>\package{Xnot} \author{Julie Melbin}
\ftp{oak.oakland.edu:/pub/msdos/editor} \print</p>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946460"
name="id2946460"></a>Macro Packages (Formats)</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{\AMSTeX} \author{\ams}
\ftp{CTAN:fonts/ams/amstex} \print</p>
<p>\package{Eplain} \xref{Extended Plain \TeX}{ap03:eplain}
\print</p>
<p>\package{Extended Plain \TeX} <a id="ap03.eplain"
name="ap03.eplain"></a> \author{Karl Berry}
\ftp{CTAN:macros/eplain} \print</p>
<p>\package{Lame\TeX} \author{Jonathan Monsarrat}
\ftp{CTAN:misc/lametex} \print</p>
<p>\package{\LamSTeX} \author{Michael Spivak}
\ftp{CTAN:macros/lamstex} \print</p>
<p>\package{\LaTeX} \author{Leslie Lamport}
\ftp{CTAN:macros/latex/core} \print</p>
<p>\package{\LaTeXe} \author{Leslie Lamport, et. al.}
\ftp{CTAN:macros/latex2e/core} \print</p>
<p>\package{Lollipop} \author{Victor Eijkhout}
\ftp{CTAN:macros/lollipop} \print</p>
<p>\package{\MusicTeX} \author{Daniel Taupin}
\ftp{CTAN:macros/musictex} \print</p>
<p>\package{Plain \TeX} \author{Donald Knuth}
\ftp{CTAN:macros/plain/base} \print</p>
<p>\package{\SliTeX} \author{Leslie Lamport}
\ftp{CTAN:macros/latex/core} \print</p>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946539"
name="id2946539"></a>Styles and Macros</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{\AMSLaTeX} \author{\ams}
\ftp{CTAN:fonts/ams/amslatex} \print</p>
<p>\package{\arabTeX} \author{Klaus Lagally}
\ftp{CTAN:language/arabtex} \print</p>
<p>\package{ascii.sty} \author{R. W. D. Nickalls}
\ftp{CTAN:fonts/ascii} \print</p>
<p>\package{Babel} \author{J. L. Braams}
\ftp{language/babel} \print</p>
<p>\package{bibunits.sty} \author{Jose Alberto}
\ftp{CTAN:macros/latex/contrib/misc} \print</p>
<p>\package{chapterbib} \author{Niel Kempson and Donald
Arseneau} \ftp{CTAN:macros/latex/contrib/misc} \print</p>
<p>\package{Chem\TeX} \author{Roswitha T. Haas and Kevin C.
O'Kane} \ftp{CTAN:macros/latex/contrib/chemtex} \print</p>
<p>\package{ChemStruct} \author{Michael Ramek}
\ftp{CTAN:macros/latex/contrib/chemstruct} \print</p>
<p>\package{\DraTeX} \author{Eitan M. Gurari}
\ftp{CTAN:macros/generic/dratex} \print</p>
<p>\package{EDMAC} \author{John Lavagnino}
\ftp{CTAN:macros/plain/contrib/edmac} \print</p>
<p>\package{eepic.sty} \author{Conrad Kwok}
\ftp{CTAN:macros/latex/contrib/eepic} \print</p>
<p>\package{epic.sty} \author{Sunil Podar}
\ftp{CTAN:macros/latex/contrib/epic} \print</p>
<p>\package{epsf.tex} \xref{dvips}{ap03:dvips} \print</p>
<p>\package{epsfig.sty} \author{Sebastian Rahtz, Tom
Rokicki, Trevor Darrell, et. al.}
\ftp{CTAN:macros/latex/contrib/epsfig} \print</p>
<p>\package{\FoilTeX} \author{James Hafner}
\ftp{CTAN:macros/foiltex} \print</p>
<p>\package{idxmac.tex} \ftp{CTAN:indexing/makeindex/lib}
\print</p>
<p>\package{index.sty} \author{David Jones}
\ftp{CTAN:macros/latex/contrib/misc}</p>
<p>\package{\INRSTeX} \author{Michael J. Ferguson}
\ftp{CTAN:macros/inrstex} \print</p>
<p>\package{isolatin1.sty}
\ftp{CTAN:macros/latex/contrib/misc} \print</p>
<p>\package{Midnight} \author{Marcel van der Goot}
\ftp{CTAN:macros/generic/midnight} \print</p>
<p>\package{multind} \author{F. W. Long}
\ftp{CTAN:macros/latex/contrib/misc} \print</p>
<p>\package{\PiCTeX} \author{Michael Wichura}
\ftp{CTAN:graphics/pictex} \print</p>
<p>\package{\REVTeX} \author{American Physical Society,
American Institute of Physics, and Optical Society of
America} \ftp{CTAN:macros/latex/contrib/revtex} \print</p>
<p>\package{\ScriptTeX} \author{Adrian McCarthy}
\ftp{CTAN:macros/scripttex} \print</p>
<p>\package{Seminar} \author{Timothy Van Zandt}
\ftp{CTAN:macros/latex/contrib/seminar} \print</p>
<p>\package{\TeX/Mathematica} \author{Dan Dill}
\ftp{CTAN:macros/mathematica} \print</p>
<p>\package{\TeX{}sis} \author{Eric Myers and Frank E.
Paige} \ftp{CTAN:macros/texsis} \print</p>
<p>\package{Ver\TeX} \author{Hal Varian}
\ftp{CTAN:macros/plain/contrib} \print</p>
<p>\package{\XYPic} \author{Kristoffer H. Rose}
\ftp{ftp.diku.dk:/diku/users/kris} \print</p>
<div class="section">
<div class="titlepage">
<div>
<h3 class="title"><a id="id2946714"
name="id2946714"></a>Styles That Produced This
Book</h3>
</div>
</div>
<p>This book was formatted with an extensively modified
version of the standard LaTeX book style. In addition to
the <tt>pstricks</tt>, <tt>index.sty</tt>,
<tt>epsfig.sty</tt>, <tt>epic.sty</tt>, and
<tt>eepic.sty</tt> files described above, the following
styles were used to format this book: \vskip6pt</p>
<p>\package{pageframe.sty} \author{Cameron Smith}
\ftp{CTAN:macros/latex/contrib/pageframe} \print</p>
<p>\package{footnpag.sty} \author{Joachim Schrod}
\ftp{CTAN:macros/latex/contrib/footnpag} \print</p>
<p>\package{fancybox.sty} \author{Timothy Van Zandt}
\ftp{CTAN:macros/latex/contrib/misc} \print</p>
<p>\package{fancyheadings.sty} \author{Piet van Oostrum}
\ftp{CTAN:macros/latex/contrib/fancyheadings} \print</p>
<p>\package{array.sty} \author{Frank Mittelbach and David
Carlisle} \ftp{CTAN:macros/latex/distribs/array}
\print</p>
<p>\package{dcolumn.sty} \author{David Carlisle}
\ftp{CTAN:macros/latex/distribs/array} \print</p>
<p>\package{tabularx.sty} \author{David Carlisle}
\ftp{CTAN:macros/latex/distribs/array} \print</p>
<p>\package{longtable.sty} \author{David Carlisle}
\ftp{CTAN:macros/latex/distribs/array} \print</p>
<p>\package{verbatim.sty} \author{Rainer Sch\"opf}
\ftp{CTAN:macros/latex/distribs/verbatim} \print</p>
<p>\package{vrbinput.sty} \author{Bernd Raichle}
\ftp{CTAN:macros/latex/distribs/verbatim} \print</p>
<p>\package{path.sty} \author{Philip Taylor}
\ftp{CTAN:macros/latex/contrib/misc} \print</p>
</div>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2946829"
name="id2946829"></a>Utilities</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{afm2tfm} \xref{dvips}{ap03:dvips} \print</p>
<p>\package{amSpell} \author{Erik Frambach}
\address{Faculty of Econometrics\\University of
Groningen\\Netherlands} \ftp{CTAN:support/amspel}
\print</p>
<p>\package{animate} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{\auctex} \author{Kresten Krab Thorup and Per
Abrahamsen} \ftp{CTAN:support/auctex} \print</p>
<p>\package{awk} \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \comment{The FSF's version of \program{awk} is
called \program{gawk}. Many commercial implementations of
\program{awk} are also available.}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{bbfig} \author{Ned Betchelder}
\ftp{CTAN:dviware/dvips/dvips/contrib/bbfig} \print</p>
<p>\package{bibclean} \author{Nelson H. F. Beebe}
\ftp{CTAN:bibtex/utils/bibclean} \print</p>
<p>\package{bibdb} \author{Eyal Doron}
\ftp{CTAN:support/bibdb} \print</p>
<p>\package{bibdestringify}
\xref{lookbibtex}{ap03:lookbibtex} \print</p>
<p>\package{bibextract} <a id="ap03.bibextract"
name="ap03.bibextract"></a> \author{Nelson H. F. Beebe}
\ftp{CTAN:biblio/bibtex/utils/bibextract} \print</p>
<p>\package{bibindex} <a id="ap03.bibindex"
name="ap03.bibindex"></a> \author{Nelson H. F. Beebe}
\ftp{CTAN:biblio/bibtex/utils/bibindex} \print</p>
<p>\package{biblook} \xref{bibindex}{ap03:bibindex}
\print</p>
<p>\package{bibsort} \author{Nelson H. F. Beebe}
\ftp{CTAN:biblio/bibtex/utils/bibsort} \print</p>
<p>\package{\BibTeX} <a id="ap03.bibtex"
name="ap03.bibtex"></a> \author{Oren Patashnik}
\ftp{CTAN:biblio/bibtex} \print</p>
<p>\package{bibview} \author{Holger Martin, Peter Urban,
and Armin Liebl} \comment{Available from volume 18 of the
\texttt{comp.sources.x} newsgroup.} \print</p>
<p>\package{Bitmap} \author{Davor Matic}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{Bm2font} \author{Friedhelm Sowa}
\ftp{CTAN:graphics/bm2font} \print</p>
<p>\package{citefind} \xref{bibextract}{ap03:bibextract}
\print</p>
<p>\package{citetags} \xref{bibextract}{ap03:bibextract}
\print</p>
<p>\package{combine} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{convert} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{crudetype} \author{R. M. Damerell}
\ftp{CTAN:dviware/crudetype} \print</p>
<p>\package{detex} \author{Daniel Trinkle}
\ftp{CTAN:support/detex} \print</p>
<p>\package{display} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{dvgt} \author{Geoffrey Tobin}
\ftp{CTAN:dviware/dvgt} \print</p>
<p>\package{dvi2tty} \author{Marcel J. E. Mol}
\ftp{CTAN:dviware/dvi2tty} \print</p>
<p>\package{dvi2xx} <a id="ap03.dvi2xx"
name="ap03.dvi2xx"></a> \author{Gustaf Neumann}
\ftp{CTAN:dviware/dvi2xx} \print</p>
<p>\package{dvicopy} <a id="ap03.dvicopy"
name="ap03.dvicopy"></a> \author{Peter Breitenlohner}
\ftp{CTAN:dviware/dvicopy} \print</p>
<p>\package{dvideo} \xref{\TurboTeX}{ap03:turbotex}
\print</p>
<p>\package{dvidot} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvidrv} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvidvi} \author{Tom Rokicki}
\ftp{CTAN:dviware/dvidvi} \print</p>
<p>\package{dvidxx} \comment{See
Example \ref{ex:dvidxx} in
Chapter \ref{app:examples},
\textit{\nameref{app:examples}}.} \print</p>
<p>\package{dvihplj} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{DVILASER/HP} \xref{\utex}{ap03:utex} \print</p>
<p>\package{DVILASER/PS} \xref{\utex}{ap03:utex} \print</p>
<p>\package{\dvilaserhp} \xref{\utex}{ap03:utex} \print</p>
<p>\package{\dvilaserps} \xref{\utex}{ap03:utex} \print</p>
<p>\package{dvilj2} \xref{dvi2xx}{ap03:dvi2xx} \print</p>
<p>\package{dvimsp} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvimswin} \author{J. D. McDonald}
\ftp{CTAN:dviware/dvimswin} \print</p>
<p>\package{dvipaste} \author{Michael Spivak}
\ftp{CTAN:macros/lamstex/dvipaste} \print</p>
<p>\package{dvipcx} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvipm} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvips} <a id="ap03.dvips"
name="ap03.dvips"></a> \author{Tomas Rokicki}
\ftp{CTAN:dviware/dvips} \print</p>
<p>\package{dvipsk} \author{Karl Berry}
\ftp{CTAN:dviware/dvipsk} \comment{\program{dvips} enhanced
to support path searching for fonts.} \print</p>
<p>\package{dvipsone} \xref{\yyTeX}{ap03:yytex} \print</p>
<p>\package{dviscr} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{dvispell} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{DVITool} \author{Jeff W. McCarrell}
\ftp{CTAN:support/vortex/dvitool} \comment{Unrelated to the
\program{Textures} tool of the same name.} \print</p>
<p>\package{dvitovdu} \author{Andrew Trevorrow}
\ftp{CTAN:dviware/dvitovdu} \print</p>
<p>\package{dvitype} \xref{\texware}{ap03:texware}
\print</p>
<p>\package{dvivga} \ftp{CTAN:dviware/dvivga} \print</p>
<p>\package{dviwin} <a id="ap03.dviwin"
name="ap03.dviwin"></a> \author{Hippocrates Sendoukas}
\ftp{CTAN:dviware/dviwin} \print</p>
<p>\package{DVIWindo} \xref{\yyTeX}{ap03:yytex} \print</p>
<p>\package{enc-afm.pl} \comment{See
Example \ref{ex:encafmpl} in
Chapter \ref{app:examples},
\textit{\nameref{app:examples}}.} \print</p>
<p>\package{epmtex} \author{Jon Hacker}
\ftp{CTAN:systems/os2/epmtex} \print</p>
<p>\package{epsfig} \author{Peter Whaite}
\ftp{CTAN:macros/latex/contrib/epsfig}</p>
<p>\package{Excalibur} \author{Rick Zaccone}
\ftp{CTAN:systems/mac/excalibur} \print</p>
<p>\package{Fig} \author{Supoj Sutanthavibul} \print</p>
<p>\package{\FigMF} \author{Anthony Starks}
\ftp{CTAN:graphics/fig2mf} \print</p>
<p>\package{fontinst} \author{Alan Jeffrey}
\ftp{CTAN:fonts/utilities/fontinst} \print</p>
<p>\package{fontlib} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{GFtoDVI} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{GFtoPK} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{Ghostscript} <a id="ap03.ghostscript"
name="ap03.ghostscript"></a> \author{Aladdin Enterprises}
\address{P.O. box 60264\\Palo Alto, CA 94306\\USA}
\phone{(415) 322--0103 / (415) 322--1734 FAX}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{Ghostview} \author{Timothy O. Theisen}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{gnuplot} \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{GoScript} <a id="ap03.goscript"
name="ap03.goscript"></a> \author{LaserGo, Inc.}
\address{9369 Carroll Park Drive, Suite A\\San Diego, CA
92121\\USA} \phone{(619) 450--4600 / (619) 450-9334 FAX}
\print</p>
<p>\package{GoScript Plus} \xref{GoScript}{ap03:goscript}
\print</p>
<p>\package{groff} <a id="ap03.groff"
name="ap03.groff"></a> \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \comment{The FSF's version of \program{troff}
is called \program{groff}. Many commercial implementations
of \program{troff} are also available.}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{hp2xx} \author{Heinz W. Werntges}
\ftp{CTAN:support/hp2xx} \print</p>
<p>\package{HPTFM2PL} \author{Norman Walsh}
\ftp{CTAN:support/hp2pl} \print</p>
<p>\package{Hyper\BibTeX} \author{Evan Antwork}
\ftp{mac.archive.umich.edu:/mac/misc/tex} \print</p>
<p>\package{idraw} <a id="ap03.idraw"
name="ap03.idraw"></a> \ftp{interviews.stanford.edu}
\print</p>
<p>\package{Image Alchemy} \author{Handmade Software, Inc.}
\address{15951 Los Gatos Blvd., Ste. 17\\Los Gatos, CA
95032\\USA} \phone{(408) 358--1292 / (408) 358--2694}
\ftp{oak.oakland.edu:/pub/msdos/graphics} \print</p>
<p>\package{Image Magick} <a id="ap03.imagemagick"
name="ap03.imagemagick"></a> \author{John Cristy}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{import} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{Info-Zip} <a id="ap03.info-zip"
name="ap03.info-zip"></a> \author{Mark Adler, et. al.}
\files{zip, unzip} \ftp{ftp.uu.net:/pub/archiving/zip}
\print</p>
<p>\package{\iniMF} \xref{\MF}{ap03:mf} \print</p>
<p>\package{\iniTeX} \xref{\TeX}{ap03:tex} \print</p>
<p>\package{ispell} \ftp{CTAN:support/ispell} \print</p>
<p>\package{ivd2dvi} \author{Larry Denenberg}
\ftp{CTAN:dviware/ivd2dvi} \print</p>
<p>\package{\jemtex} \author{Fran\c cois Jalbert}
\ftp{CTAN:systems/msdos/jemtex2} \print</p>
<p>\package{LaCheck} \author{Kresten Krab Thorup and Per
Abrahamsen} \ftp{CTAN:support/lacheck} \print</p>
<p>\package{lookbibtex} <a id="ap03.lookbibtex"
name="ap03.lookbibtex"></a> \author{John Heidemann}
\ftp{CTAN:biblio/bibtex/utils/lookbibtex} \print</p>
<p>\package{Mac\BibTeX} \xref{\BibTeX}{ap03:bibtex}
\author{Michael Kahn} \ftp{CTAN:systems/mac} \comment{This
is a Mac port of \BibTeX.} \print</p>
<p>\package{MacDVIcopy} \author{Yannis Haralambous}
\xref{dvicopy}{ap03:dvicopy} \comment{This is a Mac port of
\program{dvicopy}.} \print</p>
<p>\package{MacGS} \author{Martin Fong}
\xref{GhostScript}{ap03:ghostscript}
\ftp{mac.archive.umich.edu:/mac/graphics/graphicsutil}
\comment{This is a Mac port of \program{GhostScript}.}
\print</p>
<p>\package{MacMakeIndex} \author{Johnny Tolliver}
\xref{MakeIndex}{ap03:makeindex} \ftp{CTAN:systems/mac}
\comment{This is a Mac port of \program{MakeIndex}.}
\print</p>
<p>\package{makebst} \author{Patrick W. Daly}
\ftp{CTAN:macros/latex/contrib/custom-bib} \print</p>
<p>\package{makeidx.sty} \ftp{CTAN:indexing/makeindex/lib}
\print</p>
<p>\package{MakeIndex} \author{Pehong Chen}
\ftp{CTAN:indexing/makeindex} <a id="ap03.makeindex"
name="ap03.makeindex"></a> \print</p>
<p>\package{MakeIndx} \xref{MakeIndex}{ap03:makeindex}
\print</p>
<p>\package{MakeInfo} \xref{\TeXinfo}{ap03:texinfo}
\print</p>
<p>\package{maketcp} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{MakeTeXPK} \xref{dvips}{ap03:dvips}
\comment{There are several versions of this file available.
See Example \ref{ex:maketexpk} in
Chapter \ref{app:examples},
\textit{\nameref{app:examples}}.} \print</p>
<p>\package{MakeTeXTFM} \comment{See
Example \ref{ex:maketextfm} in
Chapter \ref{app:examples},
\textit{\nameref{app:examples}}.} \print</p>
<p>\package{\MF} <a id="ap03.mf" name="ap03.mf"></a>
\author{Donald Knuth} \ftp{CTAN:systems/web2c} \comment{The
\Web sources and the \Web2C programs are both available
here.} \print</p>
<p>\package{\MF for Textures} \author{Blue Sky Research}
\address{534 SW Third Avenue\\Portland, OR 97204\\USA}
\phone{(800) 622--8398 or (503) 222--9571 / (503) 222--1643
FAX} \ftp{CTAN:systems/mac/metafont/bluesky} \print</p>
<p>\package{MFjob} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{\MFpic} \author{Thomas Leathrum}
\ftp{CTAN:graphics/mfpic} \print</p>
<p>\package{MFT} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{\mfware} <a id="ap03.mfware"
name="ap03.mfware"></a> \author{Donald Knuth}
\ftp{CTAN:systems/web2c} \comment{The \Web sources and the
\Web2C programs are both available here.} \print</p>
<p>\package{mogrify} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{montage} \xref{Image Magick}{ap03:imagemagick}
\print</p>
<p>\package{Nikon II} \author{Bitware, Software &
Services} \address{P.O. Box 3097\\Manuka A.C.T.
2603\\Australia} \ftp{ftp.cdrom.com:/pub/os2/2_x/graphics}
\print</p>
<p>\package{nroff} \xref{groff}{ap03:groff} \print</p>
<p>\package{PBMplus} <a id="ap03.pbmplus"
name="ap03.pbmplus"></a> \author{Jef Poskanzer}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{pbmtopk} <a id="ap03.pbmtopk"
name="ap03.pbmtopk"></a> \author{Angus Duggan}
\ftp{CTAN:graphics/pbmtopk} \print</p>
<p>\package{pfatopfb} \xref{\tutils}{ap03:t1utils}
\print</p>
<p>\package{pfbtopfa} \xref{\tutils}{ap03:t1utils}
\print</p>
<p>\package{PFM2AFM} \author{Ken Borgendale}
\ftp{CTAN:fonts/utilities/pfm2afm} \print</p>
<p>\package{pixmap} \author{Lionel Mallet}
\ftp{ftp.x.org:/contrib/pixmap} \print</p>
<p>\package{PKBBOX} \author{Norman Walsh}
\ftp{CTAN:fonts/utilities/pkbbox} \print</p>
<p>\package{PKEdit} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{PKtoGF} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{pktopbm} \xref{pbmtopk}{ap03:pbmtopk}
\print</p>
<p>\package{pktops} \xref{\yyTeX}{ap03:yytex} \print</p>
<p>\package{PKtoPX} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{PKtoSFP} \author{Norman Walsh}
\ftp{CTAN:font/softfonts} \print</p>
<p>\package{PKtype} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{PLtoTF} \xref{\texware}{ap03:texware}
\print</p>
<p>\package{PM-Cam} \author{J. von Kaenel}
\ftp{ftp.cdrom.com:/pub/os2/ibm/ews} \print</p>
<p>\package{\pmc} \author{Tom Ridgeway}
\ftp{CTAN:fonts/poorman} \print</p>
<p>\package{\pmj} \author{Tom Ridgeway}
\ftp{CTAN:fonts/poorman} \print</p>
<p>\package{Pmjpeg} \author{Norman Yee}
\ftp{ftp.cdrom.com:/pub/os2/2_x/graphics} \print</p>
<p>\package{ps2epsi} \xref{ghostscript}{ap03:ghostscript}
\print</p>
<p>\package{PS2PK} \author{Piet Tutelaers}
\ftp{CTAN:fonts/utilities/ps2pk} \print</p>
<p>\package{\PSTricks} \author{Timothy Van Zandt}
\ftp{CTAN:graphics/pstricks} \print</p>
<p>\package{PTI Jet} \xref{\PCTeX}{ap03:pctex} \print</p>
<p>\package{PTI Laser/HP} \xref{\PCTeX}{ap03:pctex}
\print</p>
<p>\package{PTI Laser/HP4} \xref{\PCTeX}{ap03:pctex}
\print</p>
<p>\package{PTI Laser/PS} \xref{\PCTeX}{ap03:pctex}
\print</p>
<p>\package{PTI View} \xref{\PCTeX}{ap03:pctex} \print</p>
<p>\package{PXtoPK} \author{Peter Breitenlohner}
\ftp{systems/msdos/utilities} \print</p>
<p>\package{RCS} \author{Walter F. Tichy}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{Recode} \author{Francois Pinard}
\ftp{prep.ai.mit.edu:/pub/gnu} \print</p>
<p>\package{REXX} \author{International Business Machines}
\print</p>
<p>\package{\sbMF} \xref{\sbTeX}{ap03:sbtex} \print</p>
<p>\package{sed} \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \ftp{prep.ai.mit.edu:/pub/gnu} \comment{Many
commercial implementations of \program{sed} are also
available.} \print</p>
<p>\package{\SeeTeX} <a id="ap03.seetex"
name="ap03.seetex"></a> \author{David Grunwald}
\ftp{CTAN:dviware/seetex} \print</p>
<p>\package{sffx} \xref{Sfware}{ap03:sfware} \print</p>
<p>\package{Sfload} \xref{Sfware}{ap03:sfware} \print</p>
<p>\package{SFPtoPK} \author{Norman Walsh}
\ftp{CTAN:font/softfonts} \print</p>
<p>\package{Sfware} <a id="ap03.sfware"
name="ap03.sfware"></a> \author{Norman Walsh}
\ftp{CTAN:font/softfonts/sfware} \print</p>
<p>\package{tangle} \xref{\Web2c}{ap03:web2c} \print</p>
<p>\package{tar} \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \ftp{prep.ai.mit.edu:/pub/gnu} \comment{Many
commercial implementations of \program{tar} are also
available.} \print</p>
<p>\package{tex386} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{\TeX Preview} \xref{\utex}{ap03:utex}
\print</p>
<p>\package{texcad} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{texchk} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{texconv} \xref{\emTeX}{ap03:emtex} \print</p>
<p>\package{\TeXinfo} <a id="ap03.texinfo"
name="ap03.texinfo"></a> \author{Free Software Foundation}
\address{675 Massachusetts Avenue\\Cambridge, MA
02139\\USA} \ftp{prep.ai.mit.edu:/pbu/gnu} \print</p>
<p>\package{\TeXtoXfont} \comment{See
Example \ref{ex:textoxfont} in
Chapter \ref{app:examples},
\textit{\nameref{app:examples}}.} \print</p>
<p>\package{\texware} <a id="ap03.texware"
name="ap03.texware"></a> \author{Donald Knuth}
\ftp{CTAN:systems/web2c} \comment{The \Web sources and the
\Web2C programs are both available here.} \print</p>
<p>\package{TFtoPL} \xref{\texware}{ap03:texware}
\print</p>
<p>\package{Tgif} \author{William Chia-Wei Cheng}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{\Tib} \author{James C. Alexander}
\ftp{CTAN:biblio/tib} \print</p>
<p>\package{\tpre} \xref{\utex}{ap03:utex} \print</p>
<p>\package{troff} \xref{groff}{ap03:groff} \print</p>
<p>\package{\tutils} <a id="ap03.t1utils"
name="ap03.t1utils"></a> \author{I. Lee Hetherington}
\ftp{CTAN:fonts/utilities/t1utils} \print</p>
<p>\package{txt2pcx} \author{DECISIONS Software}
\address{P.O. Box 31418\\Phoenix, AZ 85046\\USA}
\phone{(602) 992--0310} \print</p>
<p>\package{unzip} \xref{Info-Zip}{ap03:info-zip}
\print</p>
<p>\package{VFtoVP} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{VPtoVF} \xref{\mfware}{ap03:mfware} \print</p>
<p>\package{wbr} \xref{dviwin}{ap03:dviwin} \print</p>
<p>\package{wdviwin} \xref{\TurboTeX}{ap03:turbotex}
\print</p>
<p>\package{weave} \xref{\Web2c}{ap03:web2c} \print</p>
<p>\package{xbibtex} \author{Nicholas Kelly and Christian
H. Bischof} \ftp{CTAN:biblio/bibtex/utils/xbibtex}
\print</p>
<p>\package{Xdvi} \author{Paul Vojta}
\ftp{CTAN:dviware/xdvi} \print</p>
<p>\package{\XeT} \ftp{noa.huji.ac.il:/tex}
\comment{Several implementations of \XeT-{}-\TeX are
available here.} \print</p>
<p>\package{xfig} \author{Brian V. Smith}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{xloadimage} \author{Jim Frost}
\ftp{ftp.x.org:/contrib} \print</p>
<p>\package{xpaint} \author{David Koblas}
\ftp{ftp.x.org:/contrib}</p>
<p>\package{\XTeX} \xref{See\TeX}{ap03:seetex} \print</p>
<p>\package{Xtexcad} \comment{Available from volume 17 of
the \texttt{comp.sources.x} newsgroup.} \print</p>
<p>\package{xv} \author{John Bradley}
\ftp{ftp.x.org:/contrib} \print</p>
</div>
<div class="section">
<div class="titlepage">
<div>
<h2 class="title" style="clear: both"><a id="id2948003"
name="id2948003"></a>Miscellaneous</h2>
</div>
</div>
<p>\vskip2pt</p>
<p>\package{4DOS} \author{JP Software Inc.} \address{P.O.
Box 1470\\E. Arlington, MA 02174\\USA} \phone{(617)
646--3975} \ftp{oak.oakland.edu:/pub/msdos/4dos} \print</p>
<p>\package{4OS2} \author{JP Software Inc.} \address{P.O.
Box 1470\\E. Arlington, MA 02174\\USA} \phone{(617)
646--3975} \ftp{ftp.cdrom.com:/pub/os2/2_x/sysutils}
\print</p>
<p>\package{Channel 1\regtm} \address{1030 Massachusetts
Avenue\\Cambridge, MA 02138} \phone{(617) 864--0100 voice /
(617) 354-3230 v32.bis modem} \comment{The Channel 1 BBS
carries a \TeX conference with many MS-DOS tools available
for downloading to registered users.} \print</p>
<p>\package{edb} \author{Michael Ernst}
\ftp{theory.lcs.mit.edu:/pub/emacs/edb} \comment{Database
manager for GNU Emacs.} \print</p>
<p>\package{Linux} \author{Linus Torvalds}
\ftp{ftp.cdrom.com:/pub/linux} \print</p>
<p>\package{mewltx} \author{Michael F. Reid}
\ftp{CTAN:support/mewltx} \comment{\LaTeX extensions for
\filename{MicroEMACS}.} \xref{MEwin}{ap03:mewin} \print</p>
<p>\package{modes.mf} \author{Karl Berry}
\ftp{CTAN:fonts/modes} \print</p>
<p>\package{Perl} \author{Larry Wall} \print</p>
<p>\package{TeX-index} <a id="ap03.texindex"
name="ap03.texindex"></a> \author{David Jones}
\ftp{CTAN:info} \comment{Also known as
\filename{tex-styles-and-macros.txt}.} \print</p>
<p>\package{tex-styles-and-macros.txt}
\xref{TeX-index}{ap03:texindex} \print</p>
<p>\package{\Web2c} <a id="ap03.web2c"
name="ap03.web2c"></a> \author{Karl Berry}
\ftp{CTAN:systems/web2c} \print</p>
</div>
</div>
<div class="navfooter">
<table width="100%" summary="Navigation table">
<tr>
<td width="40%" align="left"><a
title="Appendix B. Font Samples"
href="apb.html"><img src="figures/nav-prev.png"
alt="Prev" border="0" /></a> </td>
<td width="20%" align="center"><a title="Making TeX Work"
href="index.html"><img src="figures/nav-home.png"
alt="Home" border="0" /></a></td>
<td width="40%" align="right"> <a
title="Appendix D. Long Examples"
href="apd.html"><img src="figures/nav-next.png"
alt="Next" border="0" /></a></td>
</tr>
<tr>
<td width="40%" align="left">Appendix B. Font
Samples </td>
<td width="20%" align="center"><a
title="Part III. A Tools Overview"
href="pt03.html"><img src="figures/nav-up.png" alt="Up"
border="0" /></a></td>
<td width="40%" align="right">
 Appendix D. Long Examples</td>
</tr>
</table>
</div>
</body>
</html>
|