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
|
\bibitem{a4}a4&latex3&
Originally for \LaTeX{} 2.09 but updated for \LaTeX2e. Mostly superceded by
\LaTeX2e support for a4 paper but defines the extra option of widemargins.
The \href{\#geometry}{geometry} package is usually better.\\
\bibitem{aiaa}aiaa&latex3&
A bundle of \LaTeX{}/\BibTeX{} files and sample documents to aid those
producing papers and journal articles according to the guidelines of the
American Institute of Aeronautics and Astronautics (AIAA)\\
\bibitem{achemso}achemso&latex3&
\LaTeX{} and \BibTeX{} style for American Chemical Society\\
\bibitem{acronym}acronym&latex3&
This package ensures that all acronyms used in the text are spelled out in full
at least once. It also provides an environment to build a list of acronyms.\\
\bibitem{adrlist}adrlist&latex3&
Using address lists in \LaTeX\\
\bibitem{aguplus}aguplus&latex3&
Styles for American Geophysical Union.\\
\bibitem{alatex}alatex&formats3&
An extended \LaTeX{} with better modularity\\
\bibitem{alg}alg&latex3&
\LaTeX{} environments for typesetting algorithms\\
\bibitem{algorithms}algorithms&latex3&
Defines a floating algorithm environment designed to work with the
\href{\#algorithmic}{algorithmic} package.\\
\bibitem{alpha-linux}alpha-linux&systems1&
System binaries for Alpha running Linux\\
\bibitem{alpha-osf3.2}alpha-osf3.2&systems1&
System binaries for Alpha running OSF 3.2\\
\bibitem{altfont}altfont&latex3&
A generalised replacement for some parts of psnfss and mfnfss. Similar to
\href{\#psfont}{psfont} with the PostScript specific code removed.\\
\bibitem{amiweb2c}amiweb2c&systems1&
An Amiga port of the complete UNIX-TeX system.\\
\bibitem{amsfonts}amsfonts&ams2&
A set of miscellaneous \TeX{} fonts from the American Mathematical Society that
augment the standard set normally distributed with \TeX. The set includes:
Extra mathematical symbols; Blackboard bold letters (uppercase only;) Fraktur
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
Computer Modern small caps font; Cyrillic fonts (from the University of
Washington); Euler math fonts.\\
\bibitem{amslatex}amslatex&ams2&
A collection of loosely related files that are distributed together by the
American Mathematical Society. These files are miscellaneous enhancements to
\LaTeX{} whose aim is superior information structure of mathematical
documents and superior printed output.\\
\bibitem{amstex}amstex&ams2&
American Mathematical Society plain \TeX{} macros\\
\bibitem{answers}answers&latex3&
Styles for setting questions (or exercises) and answers.\\
\bibitem{apa}apa&latex3&
\LaTeX{} class and \BibTeX{} style used to format text according to the
American Psychological Association Publication Manual (4th ed.)
specifications for manuscripts or, with an option to the package, in an APA
journal style format or as a regular document.\\
\bibitem{apl}apl&fonts3&
Fonts for typesetting APL programs\\
\bibitem{arabtex}arabtex&lang3&
Macros and fonts for typesetting Arabic\\
\bibitem{arseneau}arseneau&latex2&
Miscellaneous macros by Donald Arseneau.\\
\bibitem{ascii}ascii&fonts3&
Support for IBM extended ASCII font.\\
\bibitem{astro}astro&fonts3&
Astronomical (planetary) symbols.\\
\bibitem{aurora}aurora&dvips3&
Header files for dvips to make colour separations\\
\bibitem{autotab}autotab&latex3&
Generating tabular setups\\
\bibitem{babel}babel&latex1&
Multilingual support for \LaTeX.\\
\bibitem{backgammon}backgammon&fonts3&
Style for typesetting backgammon boards\\
\bibitem{bakoma}bakoma&fonts2&
Computer Modern and AMS font in PostScript Type1 form.\\
\bibitem{barcodes}barcodes&fonts3&
Fonts for making barcodes.\\
\bibitem{barr}barr&graphics3&
Diagram macros by Michael Barr.\\
\bibitem{base}base&latex1&
Basic \LaTeX{} system\\
\bibitem{bbding}bbding&fonts3&
An NFSS-interface to the symbol font bbding containing many of the Zapf
dingbats fonts.\\
\bibitem{bbm}bbm&fonts3&
Blackboard variant fonts for Computer Modern, with \LaTeX{} support\\
\bibitem{bbtbase}bbtbase&bibtex1&
Basic \BibTeX{} styles\\
\bibitem{bbtdoc}bbtdoc&bibtex2&
Basic \BibTeX{} documentation\\
\bibitem{beebe}beebe&bibtex2&
Nelson Beebe's collection of \TeX-related bibliographies, and \BibTeX{} style
files\\
\bibitem{beton}beton&latex3&
Typeset a \LaTeX2e document with the Concrete fonts designed by Don Knuth and
used in his book ``Concrete Mathematics''.\\
\bibitem{biblist}biblist&latex3&
\BibTeX{} styles by Joachim Schrod\\
\bibitem{blue}blue&formats3&
Kees van der Laan's BLUe format, a concise but expressive document preparation
system modelled on Knuth's manmac\\
\bibitem{bm}bm&latex2&
This is a package for accessing bold symbols in math mode. (Similar to the AMS
|\boldsymbol| command, but taking more care over spacing, delimiters etc.)\\
\bibitem{booktabs}booktabs&latex2&
Nicer layout of tables\\
\bibitem{borceux}borceux&graphics3&
Diagram macros by Francois Borceux\\
\bibitem{bridge}bridge&latex3&
Macros for typesetting Bridge diagrams\\
\bibitem{calc}calc&latex2&
Adds infix expressions to perform arithmetic in the \LaTeX{} commands
|\setcounter|, |\addtocounter|, |\setlength|, and |\addtolength|.\\
\bibitem{calendar}calendar&plain3&
Plain macros for making nice calendars\\
\bibitem{calrsfs}calrsfs&latex3&
Nicer calligraphic letters.\\
\bibitem{camel}camel&latex3&
Comprehensive bibliography manager (prototype citation engine for \LaTeX3).
Will become \BibTeX{} 1.0 on release. Under development.\\
\bibitem{caption}caption&latex2&
Extends caption capabilities for figures and tables, such as the caption width,
style, font. Many aspects are tunable as options.\\
\bibitem{carlisle}carlisle&latex2&
Miscellaneous small packages by David Carlisle\\
\bibitem{ccfonts}ccfonts&latex&
\LaTeX{} support for Concrete fonts\\
\bibitem{cchess}cchess&fonts3&
Macros and fonts for typesetting Chinese Chess board diagrams\\
\bibitem{cellular}cellular&plain3&
Cellular table construction\\
\bibitem{changebar}changebar&latex2&
Generate changebars in \LaTeX{} documents.\\
\bibitem{chemcono}chemcono&latex3&
A \LaTeX{} style file for using compound numbers in chemistry documents. It
works like |\cite| and the |\thebibliography|, using |\fcite| and
|\theffbibliography| instead. It allows compound names in documents to be
numbered and does not affect the normal citation routines.\\
\bibitem{chemsym}chemsym&latex3&
Macros for typing chemical symbols\\
\bibitem{cheq}cheq&fonts3&
Adobe chess font\\
\bibitem{cherokee}cherokee&fonts3&
Fonts for Cherokee scripts\\
\bibitem{chess}chess&fonts3&
Fonts for typesetting chess boards\\
\bibitem{circ}circ&graphics3&
Macros for typesetting circuit diagrams. Several electrical symbols like
resistor, capacitor, transistors etc., are defined. The symbols can be
connected with wires.\\
\bibitem{circuit}circuit&graphics3&
Language for drawing circuit diagrams\\
\bibitem{cirth}cirth&fonts3&
Fonts for Cirth\\
\bibitem{cite}cite&latex2&
Supports compressed, sorted lists of numerical citations: [8,11-16].\\
\bibitem{cm}cm&fonts1&
Computer Modern fonts\\
\bibitem{cmbright}cmbright&fonts2&
Computer Modern Bright fonts\\
\bibitem{cmcyralt}cmcyralt&latex3&
Alternative Russian encoding support\\
\bibitem{cmextra}cmextra&fonts2&
Extra Computer Modern fonts, from the American Mathematical Society\\
\bibitem{cmpica}cmpica&fonts3&
A Computer Modern Pica variant\\
\bibitem{cmps}cmps&fonts2&
Type1 versions of PostScript fonts, from Blue Sky and Y \& Y\\
\bibitem{codepage}codepage&latex3&
Support for variant code pages.\\
\bibitem{colorsep}colorsep&dvips3&
Support for colour separation when using dvips\\
\bibitem{concmath}concmath&fonts3&
Concrete math fonts derived from Computer Modern math fonts using parameters
from Concrete text fonts. A \LaTeX{} package providing the necessary font
definition code is included.\\
\bibitem{concrete}concrete&fonts3&
Concrete fonts\\
\bibitem{context}context&generic3&
ppchtex is a package that can be used to typeset chemical formulas. The package
is a separate module of the context macro package for \TeX{} (context is a
full featured, parameter driven macro package, which fully supports advanced
interactive documents).\\
\bibitem{count1to}count1to&latex3&
Setting |\count1| to |\count9|\\
\bibitem{croatian}croatian&lang3&
Fonts for typesetting Croatian scripts\\
\bibitem{crosswrd}crosswrd&latex3&
Macros for typesetting crossword puzzles\\
\bibitem{csfonts}csfonts&fonts2&
Czech/Slovak-tuned \MF{} Computer Modern fonts\\
\bibitem{cslatex}cslatex&latex&
\LaTeX{} support for Czech/Slovak typesetting\\
\bibitem{csplain}csplain&plain2&
Plain \TeX{} support for Czech/Slovak typesetting\\
\bibitem{curves}curves&graphics3&
Draws curves in the \LaTeX{} picture environment using parabolas between points
with continuous slope at points. Equivalent to technical pens with compasses
and French curves.\\
\bibitem{custom-bib}custom-bib&latex2&
Package generating customized \BibTeX{} bibliography styles from a generic file
using docstrip.\\
\bibitem{dancers}dancers&fonts3&
Font for the Sherlock Holmes `Dancing Men'\\
\bibitem{dates}dates&latex3&
Macros for parsing date strings\\
\bibitem{deleq}deleq&latex3&
Provides a more flexible numbering of equations, subequations, and `recycled'
equations, including `partial' equation numbers (`3a', `3b' etc.).\\
\bibitem{devanagari}devanagari&lang3&
Fonts for typesetting Devanagari\\
\bibitem{dialogl}dialogl&latex3&
Macros for constructing interactive \LaTeX{} scripts\\
\bibitem{dinbrief}dinbrief&latex3&
German letter DIN style.\\
\bibitem{doc1}doc1&texlive1&
Basic documentation for \TeXLive{}\\
\bibitem{doc2}doc2&texlive2&
Recommended documentation for \TeXLive{}\\
\bibitem{dotseqn}dotseqn&latex3&
Flush left equations with dotted letters to the numbers\\
\bibitem{draftcopy}draftcopy&latex3&
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.\\
\bibitem{dratex}dratex&graphics3&
General drawing macros entirely in \TeX\\
\bibitem{dropping}dropping&latex3&
A \LaTeXe{} macro for dropping the first character(s) (or word(s)) of a
paragraph. This is an extension of the \LaTeX{} 2.09 package
\href{\#dropcaps}{dropcaps}. This package automatically takes care of finding
the font name.\\
\bibitem{dtk}dtk&latex3&
Macros for the DANTE publication\\
\bibitem{duerer}duerer&fonts3&
Computer Duerer fonts.\\
\bibitem{dvips}dvips&generic1&
Tom Rokicki's dvi to PostScript driver\\
\bibitem{dvipsbas}dvipsbas&dvips1&
Basic support files for dvips\\
\bibitem{ean}ean&generic3&
Font for making EAN barcodes.\\
\bibitem{easy}easy&latex3&
Macros for simplying the writing of equations\\
\bibitem{ec}ec&fonts2&
The ec fonts support the complete \LaTeX{} T1 encoding, as defined at the 1990
TUG conference hold at Cork/Ireland. They are intended to be as stable as the
cm fonts are, i.e. there shall be no more changes to the tfm files. The ec
fonts also contain a Text Companion Symbol font, called tc, featuring many
usefull characters needed in typesetting, for example oldstyle digits,
currency symbols (including the newly created Euro symbol), the permille
sign, copyright, trade mark and servicemark as well as a copyleft sign, and
many others. Recent releases of \LaTeX2e support the ec fonts. The dc fonts,
which were termed as preliminary versions, will dissappear from the
archives.\\
\bibitem{ecc}ecc&fonts3&
`European' (T1 encoded) version of the Concrete fonts\\
\bibitem{edmac}edmac&plain3&
A macro package for typesetting scholarly critical editions\\
\bibitem{eepic}eepic&graphics2&
A set of \TeX{} macros for \LaTeX{} implementing several extensions to EPIC and
the \LaTeX{} picture drawing environment, including the drawing of lines at
any slope, the drawing of circles in any radii, and the drawing of dotted and
dashed lines much faster with much less \TeX{} memory, and providing several
new commands for drawing ellipsis, arcs, splines, and filled cirlces and
ellipsis.\\
\bibitem{eiad}eiad&latex3&
Macros and EIAD fonts\\
\bibitem{elsevier}elsevier&latex3&
Preprint style for Elsevier Science journals\\
\bibitem{elvish}elvish&fonts3&
Font for typesetting Tolkien Elvish script\\
\bibitem{endfloat}endfloat&latex3&
Place all figures on pages by themselves at the end of the document with
markers like ``[Figure 3 about here]'' appearing in the text (by default)
near to where the figure (or table) would normally have occurred.\\
\bibitem{engwar}engwar&fonts3&
Font for typesetting Tolkien Engwar script, by Michael Urban\\
\bibitem{envbig}envbig&latex3&
Printing addresses on enevlopes\\
\bibitem{envlab}envlab&latex3&
A \LaTeX2e{} package for producing mailing envelopes and labels, including
barcodes and address formatting according to the US Postal Service rules.
Redefines the standard |\makelabels| command of the \LaTeX2e{} letter
documentclass.\\
\bibitem{eplain}eplain&formats2&
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
commutative diagrams.\\
\bibitem{epslatex}epslatex&doc2&
An extensive document which explains how to use Encapsulated PostScript (EPS)
files in \LaTeXe{} documents. Includes explanations of Bounding Boxes, and
more.\\
\bibitem{eqname}eqname&latex3&
Style for different equation numbering\\
\bibitem{eqnarray}eqnarray&latex3&
More generalised equation arrays with numbering.\\
\bibitem{euler}euler&latex3&
Provides a setup for using the AMS Euler family of fonts for math in \LaTeX{}
documents. ``The underlying philosophy of Zapf's Euler design was to capture
the flavor of mathematics as it might be written by a mathematician with
excellent handwriting.'' [concrete-tug] The euler package is based on Knuth's
macros for the book ``Concrete Mathematics''. The text fonts for the Concrete
book are provided by the beton package.\\
\bibitem{everysel}everysel&latex3&
\LaTeX{} package which provides hooks into \cs{selectfont}.\\
\bibitem{everyshi}everyshi&latex3&
Hooks for taking action at every |\shipout|\\
\bibitem{exam}exam&latex3&
Package for typesetting exam scripts\\
\bibitem{exams}exams&latex3&
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
parametrized. Use of a random generator provides for automatic shuffling of
multiple choice items.\\
\bibitem{expdlist}expdlist&latex3&
Expanded description environments\\
\bibitem{export}export&latex3&
This package allows the user to export/import the values of \LaTeX{} registers
(counters, rigid and rubber lengths only). It is definitely NOT for
faint-hearted users.\\
\bibitem{fancyhdr}fancyhdr&latex3&
Support for sophisticated control of page headers and footers in \LaTeX2e. It
supercedes \href{\#fancyheadings}{fancyheadings}.\\
\bibitem{fancyheadings}fancyheadings&latex2&
Better control over page headers and footers in \LaTeX. This is an up-to-date
version for \LaTeX. For \LaTeX2e{} it is now called
\href{\#fancyhdr}{fancyhdr}.\\
\bibitem{fancyvrb}fancyvrb&latex2&
Sophisticated handling of verbatim text, to write it out, read it in, and
typeset it\\
\bibitem{fax}fax&latex3&
Document class for preparing faxes.\\
\bibitem{fc}fc&fonts3&
Fonts for African languages, complimentary to Computer Modern.\\
\bibitem{feynmf}feynmf&graphics3&
Macros and fonts for creating Feynman (and other) diagrams.\\
\bibitem{float}float&latex2&
Improves the interface for defining floating objects such as figures and
tables. Introduces the boxed float and the ruled float. You can define your
own floats and improve the behaviour of the old ones. Also incorporates the H
option of the superceded \href{\#here}{here} package. You can select this as
automatic default with |\floatplacement{figure}{H}|\\
\bibitem{floatfig}floatfig&latex3&
Allows text to be wrapped around figures.\\
\bibitem{floatflt}floatflt&latex3&
Float text around figures and tables which do not span the full width of a
page. This is an improved version of floatfig. It is more or less similar
floatingtable. The tables/figures can be set left/right or alternating on
even/odd pages. Works with the \href{\#multicol}{multicol} package. Doesn't
work well in the neighbourhood of list environments unless you change your
\LaTeX{} document.\\
\bibitem{fncychap}fncychap&latex3&
This package provides six predefined chapter headings. Each can be modified
using a set of simple commands. Optionally one can modify the formatting
routines in order to create additional chapter headings. This package was
previously known as FancyChapter.\\
\bibitem{foiltex}foiltex&latex3&
A \LaTeX2e class for overhead transparencies. Can be used with
\href{\#fancybox}{fancybox} to place a variety of borders around the
slides.\\
\bibitem{fontinst}fontinst&latex3&
\TeX{} macros for converting Adobe Font Metric files to \TeX{} metric and
virtual font format\\
\bibitem{fontmisc}fontmisc&fonts1&
Miscellaneous \MF{} input files\\
\bibitem{fontname}fontname&texlive1&
Karl Berry's scheme for naming fonts in \TeX\\
\bibitem{fonts}fonts&latex1&
Extra line and circle fonts for \LaTeX\\
\bibitem{footnote}footnote&latex3&
More sophisticated footnotes.\\
\bibitem{footnpag}footnpag&latex3&
Allows footnotes on individual pages to be numbered from 1, rather than being
numbered sequentially through the document.\\
\bibitem{formats}formats&texlive2&
Prebuilt \TeX{} format and \MF{} base files\\
\bibitem{fp}fp&latex3&
Provides an extensive collection of arithmetic operations for fixed point real
numbers of high precision.\\
\bibitem{french}french&lang2&
Style for French typography\\
\bibitem{fribrief}fribrief&latex3&
A \LaTeX{} class for writing letters.\\
\bibitem{fundus}fundus&latex3&
Providing \LaTeX{} access to various font families\\
\bibitem{futhark}futhark&fonts3&
Fonts for the Older Futhark script\\
\bibitem{g-brief}g-brief&latex3&
A document class for \LaTeX 2e and serves for formatting formless letters in
german or english language.\\
\bibitem{gb4e}gb4e&latex3&
Government Binding styles.\\
\bibitem{general}general&doc1&
Useful general documentation\\
\bibitem{genmisc}genmisc&generic3&
Miscellaneous small files for all formats, specific to the \TeXLive{} \CDROM.\\
\bibitem{geometry}geometry&latex3&
A package which allows \LaTeXe\ users to customise page layout (page sizes)
using an easy and flexible user interface. You can specify
|\geometry{body={6.5in,8.75in}, top=1.2in, left=2cm, nohead}|. This is an
update of the now superseded pagesize package.\\
\bibitem{german}german&latex2&
Style for German typography.\\
\bibitem{germbib}germbib&bibtex2&
German variants of standard \BibTeX{} styles\\
\bibitem{go}go&fonts3&
Fonts and macros for typesetting go games\\
\bibitem{gothic}gothic&fonts3&
Gothic and ornamental initial fonts by Yannis Haralambous\\
\bibitem{graphics}graphics&latex2&
The primary \LaTeX{} package for the support of the inclusion of graphics
generally produced with other tools. This package aims to give a consistent
interface to including the file types that are understood by your printer
driver.\\
\bibitem{gray}gray&fonts3&
Fonts for gray scales\\
\bibitem{hands}hands&fonts3&
Pointing hand fonts\\
\bibitem{harpoon}harpoon&latex3&
Extra harpoons, using the graphics package\\
\bibitem{harvard}harvard&bibtex2&
The Harvard bibliography style family.\\
\bibitem{harvmac}harvmac&plain3&
Paul Ginsparg's Harvard macros for scientific articles\\
\bibitem{hh}hh&latex3&
Fancy boxing effects\\
\bibitem{histogr}histogr&latex3&
Drawing histograms with the \LaTeX{} picture environment\\
\bibitem{hppa1.1-hpux10.20}hppa1.1-hpux10.20&systems1&
System binaries HP running hpux10.20\\
\bibitem{hppa1.1-hpux9.05}hppa1.1-hpux9.05&systems1&
System binaries HP running hpux9.05\\
\bibitem{html}html&doc2&
Various \TeX{} documentation converted to HTML\\
\bibitem{hyper}hyper&latex3&
Redefines \LaTeX{} cross-referencing commands to insert |\special| commands for
HyperTeX dvi viewers\\
\bibitem{hyperref}hyperref&latex3&
Redefines \LaTeX{} cross-referencing commands to insert |\special| commands for
HyperTeX dvi viewers, or translation to Acrobat.\\
\bibitem{hyphen}hyphen&lang1&
Collection of hyphenation patterns\\
\bibitem{i386-linux}i386-linux&systems1&
System binaries for Intel machines running Linux\\
\bibitem{i586-freebsd2.2}i586-freebsd2.2&systems1&
System binaries for Intel PC running FreeBSD 2.2\\
\bibitem{i686-linux}i686-linux&systems1&
System binaries for Intel Pentium Pro running Linux\\
\bibitem{ieeepes}ieeepes&latex3&
Allows typesetting of transactions, as well as discussions and closures, for
the IEEE Power Engineering Society Transactions journals.\\
\bibitem{ifacmtg}ifacmtg&latex3&
Elsevier Science preprint style for IFAC meetings\\
\bibitem{indxcite}indxcite&latex3&
A package to automatically generate an Author Index based on citations made
using \BibTeX. It requires the use of the harvard and index packages and
\LaTeX2e.\\
\bibitem{info}info&doc2&
Documentation in GNU info form\\
\bibitem{inputenc}inputenc&latex3&
Controlling inpout encoding\\
\bibitem{ipa}ipa&latex3&
Style for using International Phonetic Alphabet fonts\\
\bibitem{isostds}isostds&latex3&
Class and package files for typesetting ISO International Standard documents.
Several standard documents have been printed by ISO from camera-ready copy
prepared using \LaTeX{} and these files. One set of files is for generic ISO
typesetting and the other is an extension set of packages for typesetting ISO
10303 standards.\\
\bibitem{jadetex}jadetex&latex3&
Macro package on top of \LaTeX{} to typeset \TeX{} output of Jade DSSSL
implementation\\
\bibitem{jknappen}jknappen&latex2&
Miscellaneous macros, mostly for making use of extra fonts by J\"org Knappen\\
\bibitem{jsmisc}jsmisc&plain3&
Miscellaneous useful macros by Joachim Schrod\\
\bibitem{jura}jura&latex3&
A document class for German law students.\\
\bibitem{knuth}knuth&doc3&
Knuth's own documentation, including the \TeX book and the \MF book\\
\bibitem{koma-script}koma-script&latex3&
A replacement for the article/report/book classes with emphasis on European
rules of typography and paper formats as laid down by Jan Tschichold.\\
\bibitem{kuvio}kuvio&graphics3&
Drawing macros and fonts for diagrams.\\
\bibitem{labels}labels&latex3&
Support for printing sheets of sticky labels (but could also be used for
business cards). The number of rows and columns of labels, and their size,
can be changed.\\
\bibitem{lamstex}lamstex&formats3&
A merge of the best in AMS\TeX{} and \LaTeX\\
\bibitem{lastpage}lastpage&latex3&
Reference the number of pages in your \LaTeX{} document (as in a page footer
that says: Page N of M).\\
\bibitem{lgreek}lgreek&latex3&
Macros for using Silvio Levy's Greek fonts\\
\bibitem{lineno}lineno&latex3&
Adds line numbers to selected paragraphs with reference possible through the
\LaTeX{} |\ref| and |\pageref| cross reference mechanism. Version 2.00
supports numbering of one in five lines and switching the line numbers from
the left to the right side of the page in twoside mode.\\
\bibitem{listings}listings&latex3&
Package for pretty-printed program listings, with support for a range of
languages\\
\bibitem{localloc}localloc&latex3&
Macros for localizing \TeX{} register allocations\\
\bibitem{logic}logic&fonts3&
\MF{} font for drawing logic diagrams\\
\bibitem{lollipop}lollipop&formats3&
A new generation format\\
\bibitem{lshort}lshort&latex1&
Short introduction to \LaTeX\\
\bibitem{ltablex}ltablex&latex3&
Modifies the tabularx environment to combine the features of the tabularx
package (auto-sized columns in a fixed width table) with those of the
longtable package (multi-page tables).\\
\bibitem{ltxdoc}ltxdoc&latex1&
Class for documented \LaTeX2e classes.\\
\bibitem{ltxmisc}ltxmisc&latex2&
Miscellaneus \LaTeX{} styles.\\
\bibitem{lw35ps}lw35ps&fonts2&
Font metrics and \LaTeX{} font description files for standard 35 PostScript
fonts\\
\bibitem{ly1}ly1&latex3&
Support for LY1 \LaTeX{} encoding, ie the Y\&Y texnansi encoding\\
\bibitem{mab-nextstep3}mab-nextstep3&systems1&
System binaries for Next boxes running Nextstep 3\\
\bibitem{mailing}mailing&latex3&
Macros for mail merging\\
\bibitem{makeindex}makeindex&texlive1&
Documentation for the Makeindex program.\\
\bibitem{malvern}malvern&fonts3&
A new sans-serif font family\\
\bibitem{mapcodes}mapcodes&latex3&
Support for multiple character sets and encodings\\
\bibitem{maple}maple&latex3&
Styles and examples for the MAPLE newsletter\\
\bibitem{mathcomp}mathcomp&latex2&
A package which provides access to some interesting chars of the Text Companion
fonts (TS1 encoding) in math mode.\\
\bibitem{mcite}mcite&latex3&
Support for collapsing multiple citations into one, as custumoary in physics
journals\\
\bibitem{mdwtools}mdwtools&latex3&
Miscellaneous tools by Mark Wooding, including support for |@|, a doafter
command, footnotes, mathenv for various alignment in maths, list handling,
trivial maths oddments, rewrite of \LaTeX{}'s |tabular| and |array|
environments, varbatim handling, and syntax diagrams.\\
\bibitem{mff}mff&latex3&
A package to provide something similar to `multiple master' fonts, but using
\MF; you specify a font by a set of \MF{} parameters, and \TeX{} makes up a
.mf file to generate the required font; this package is not integrated with
NFSS (or MakeTeXTFM) yet fun.\\
\bibitem{mflogo}mflogo&latex1&
\LaTeX{} package and font definition file to access the Knuthian `logo' fonts
described in `The \MF{}book' and the \MF{} and \MP{} logos in \LaTeX{}
documents.\\
\bibitem{mfmisc}mfmisc&fonts1&
Small support files for \MF\\
\bibitem{mfnfss}mfnfss&latex3&
Font description files for extra fonts like yinit and ygoth\\
\bibitem{mfpic}mfpic&graphics3&
Macros which generate \MF{} code for drawing pictures\\
\bibitem{mftoeps}mftoeps&fonts3&
a \MF{} package for generating (encapsulated PostScript) files readable by
CorelDRAW!, Adobe Illustrator and Fontographer. \MF{} writes PostScript code
to a LOG-file, and from the LOG-file the code can be extracted by either
\TeX{} or AWK. DOS batch files, \TeX{} source, and AWK source are placed in
the subdirectory PROGS.\\
\bibitem{midnight}midnight&generic3&
A set of useful macro tools\\
\bibitem{minitoc}minitoc&latex3&
Table of contents per chapter.\\
\bibitem{mips-irix4.0.5}mips-irix4.0.5&systems1&
System binaries for SGI box running Irix 4.0.5\\
\bibitem{mips-irix5.3}mips-irix5.3&systems1&
System binaries for SGI box running Irix 5.3\\
\bibitem{mips-irix6.3}mips-irix6.3&systems1&
System binaries for SGI box running Irix 6.3\\
\bibitem{mips-ultrix4.4}mips-ultrix4.4&systems1&
System binaries for MIPS machine running Ultrix 4.4\\
\bibitem{misc}misc&latex3&
Miscellaneous small macro files for \LaTeX\\
\bibitem{misc209}misc209&latex2&
Miscellaneous small macro files for \LaTeX 209\\
\bibitem{mnras}mnras&plain3&
Styles for the Monthly Notices of the Royal Astronomical Society\\
\bibitem{monster}monster&latex3&
Towards a more rational and modular \LaTeX, by Matt Swift; a set of powerful
tools\\
\bibitem{moreverb}moreverb&latex3&
A verbatim mode that can handle TABs properly, can number lines, can number
lines in an included file, can produce boxed verbatims, etc.\\
\bibitem{mpbase}mpbase&metapost1&
Basic Metapost support files\\
\bibitem{mpfnmark}mpfnmark&latex3&
A package which provides the command |\mpfootnotemark|, which can be used in
the same way as |\footnotemark|. The difference between these two macros is
that within minipage environments the latter uses the standard footnote
marker style (defined by |\thefootnote|), while the new command uses the
minipage footnote marker style (defined by |\thempfootnote|).\\
\bibitem{mslapa}mslapa&latex3&
\LaTeX{} and \BibTeX{} style files for a respectably close approximation to APA
(American Psychological Association) citation and reference style.\\
\bibitem{mtbe}mtbe&plain3&
Examples from \emph{Mathematical \TeX{} by Example} by Arvind Borde\\
\bibitem{musictex}musictex&generic3&
Typesetting music with \TeX.\\
\bibitem{musixtex}musixtex&generic3&
Extended MusicTeX, with better slurs\\
\bibitem{myletter}myletter&latex3&
Another letter package\\
\bibitem{nassflow}nassflow&latex3&
Drawing Nassi-Schneidermann diagrams\\
\bibitem{natbib}natbib&bibtex2&
A bibliography style that handles author-year and numbered references.\\
\bibitem{newalg}newalg&latex3&
Format algoritms like Cormen, Leiserson and Rivest.\\
\bibitem{newsletr}newsletr&plain3&
Macros for making newsletters\\
\bibitem{newthm}newthm&latex3&
A modified version of the theorem-style which provides generation of lists of
theorems.\\
\bibitem{niceframe}niceframe&latex3&
Support for fancy framing of pages\\
\bibitem{nomencl}nomencl&latex3&
Nomenclature package for producing lists of symbols using the capabilities of
the MakeIndex program.\\
\bibitem{ntgclass}ntgclass&latex2&
Versions of the standard \LaTeX{} article and report classes, rewritten to
reflect a more European design, by the Dutch \TeX{} Users Group\\
\bibitem{numline}numline&latex3&
Macros for numbering lines.\\
\bibitem{objectz}objectz&latex3&
Macros for typesetting Object Z\\
\bibitem{oca}oca&fonts3&
OCR font\\
\bibitem{ocr-a}ocr-a&fonts3&
Fonts for OCR-A\\
\bibitem{ocr-b}ocr-b&fonts3&
Fonts for OCR-A\\
\bibitem{ogham}ogham&fonts3&
Fonts for typesetting Ogham script\\
\bibitem{ogonek}ogonek&latex3&
Support for Polish typography and the ogonek\\
\bibitem{oldstyle}oldstyle&latex3&
Font information needed to load the |cmmi| and |cmmib| fonts for use to produce
oldstyle numbers\\
\bibitem{osmanian}osmanian&fonts3&
Osmanian fonts by Alan Stanier for writing Somali\\
\bibitem{ot2cyr}ot2cyr&fonts2&
Macros to use to the OT2 Cyrillic encoding\\
\bibitem{overword}overword&latex3&
This package provides two macros which can be used as building blocks for the
parsing of text. For an example of their use, see the
\href{\#calendar}{calendar} package.\\
\bibitem{pandora}pandora&fonts3&
The Pandora font family\\
\bibitem{paper}paper&latex3&
A class derived from article, tuned for producing papers for journals.
Introduces new layout options and font commands for sections/parts. Defines a
new keywords environment, and subtitle and institution commands for the title
section. New commands for revisions. And more.\\
\bibitem{parallel}parallel&latex3&
Provides a parallel environment which allows two columns of text to be typeset.
Useful for typesetting two languages side-by-side.\\
\bibitem{patch}patch&latex3&
\\
\bibitem{pb-diagram}pb-diagram&latex3&
Diagram package, using LAMS\TeX{} fonts, by Paul Burchard.\\
\bibitem{pdcmac}pdcmac&plain3&
Damian Cugley's macro tools.\\
\bibitem{pdf}pdf&doc2&
Documentation in PDf format\\
\bibitem{pdftex}pdftex&plain2&
Macro packages for variant \TeX{} which writes PDF format\\
\bibitem{phonetic}phonetic&fonts3&
\MF{} Phonetic fonts, based on Computer Modern\\
\bibitem{physe}physe&formats3&
PHYSE format\\
\bibitem{phyzzx}phyzzx&formats3&
A \TeX{} format for physicists\\
\bibitem{picinpar}picinpar&latex3&
Insert pictures into paragraphs. (NOTE: Piet van Oostrum does not recommend
this package. \href{\#picins}{Picins} is recommended instead.)\\
\bibitem{pictex}pictex&graphics2&
Picture drawing macros for \LaTeX.\\
\bibitem{piff}piff&latex3&
Macro tools by Mike Piff\\
\bibitem{plainmisc}plainmisc&plain1&
Miscellaneous useful macros for plain \TeX\\
\bibitem{plaintex}plaintex&plain1&
Basic Plain \TeX{} macros\\
\bibitem{plfonts}plfonts&fonts3&
Computer Modern variant fonts for Polish\\
\bibitem{plgraph}plgraph&generic3&
\LaTeX{} graphics package with wrapper to allow it to be used with generic
plain \TeX\\
\bibitem{pmgraph}pmgraph&latex3&
A set of extensions to \LaTeX{} picture environment, including a wider range of
vectors, and a lot more box frame styles.\\
\bibitem{poligraf}poligraf&generic3&
Page preparation for prepress, color separation, crop-marks, color and gray
scale bars, booklet preparation, etc.\\
\bibitem{prelim2e}prelim2e&latex3&
Allows the marking of preliminary versions of a document\\
\bibitem{prettyref}prettyref&latex3&
Additional functionality to \LaTeX2e label--reference mechanism. It allows the
author to ``preformat'' all types of labels.\\
\bibitem{progkeys}progkeys&latex3&
The file `programs.sty' is intended to allow a parameterized way of typesetting
programs with \TeX/\LaTeX{} commands inside. The file `keywords.sty' allows
use and define sets of keywords that will be typeset with different fonts,
according to the wish of the user.\\
\bibitem{program}program&latex3&
Typesetting programs and algorithms\\
\bibitem{proofs}proofs&latex3&
Macros for building proof trees\\
\bibitem{psfonts}psfonts&fonts2&
Postscript fonts for use with \TeX{} and \LaTeX.\\
\bibitem{psfrag}psfrag&graphics2&
A set of macros and a PostScript header which allows \LaTeX{} constructions
(equations, picture environments, etc.) to be precisely superimposed over
Encapsulated PostScript figures. The user can use his/her favorite drawing
tool to create an EPS figure, placing simple text ``tags'' where each
replacement is to be placed. PSfrag will automatically remove those tags from
the figure and replace them with the \LaTeX{} construction that the user
specifies, properly aligned, scaled, and/or rotated.\\
\bibitem{psizzl}psizzl&formats3&
A \TeX{} format from SLAC\\
\bibitem{pslatex}pslatex&latex2&
A small package that makes \LaTeX{} default to `standard' PostScript fonts. It
is basically a merger of the \href{\#times}{times} and
\href{\#mathptm}{mathptm} styles from the psnfss suite of packages. You must
have installed standard \LaTeX{} and PSNFSS PostScript fonts to use this
package. The main novel feature is that the pslatex package tries to
compensate for the visual differences between the Adobe fonts by scaling
Helvetica by 90\%, and `condensing' Courier (ie scaling horizontally) by
85\%. The package is supplied with a (unix) shell file for a `pslatex'
command that allows standard \LaTeX{} documents to be processed, without
needing to edit the file.\\
\bibitem{psnfss}psnfss&fonts2&
Font definition files, macros and font metrics for common PostScript fonts\\
\bibitem{psnfssx}psnfssx&latex3&
Extra styles and encodings for PS fonts, including Y\&Y encoding support\\
\bibitem{pspicture}pspicture&latex2&
Replacement for core \LaTeX{} picture macros to use PostScript |\special|
commands\\
\bibitem{pstricks}pstricks&graphics2&
An extensive collection of PostScript macros that is compatible with most
\TeX{} macro packages, including Plain \TeX, \LaTeX, AmSTeX, and AmS-LaTeX.
Included are macros for color, graphics, pie charts, rotation, trees and
overlays. It has many special features, including: a wide variety of graphics
(picture drawing) macros, with a flexible interface and with color support;
There are macros for coloring or shading the cells of tables.\\
\bibitem{punk}punk&fonts3&
Donald Knuth's punk font\\
\bibitem{qobitree}qobitree&graphics3&
\LaTeX{} macros for typesetting trees\\
\bibitem{qsymbols}qsymbols&latex3&
For defining systematic mnemonic abbreviations, starting with |`| for math
symbols and |\"| for arrows, from the amssymb and stmaryrd packages\\
\bibitem{ragged2e}ragged2e&latex3&
\LaTeX{} package which defines new commands |\Centering|, |\RaggedLeft|, and
|\RaggedRight| and new environments Center, FlushLeft, and FlushRight, which
set ragged text and are easily configurable to allow hyphenation.\\
\bibitem{rcs}rcs&latex3&
Use RCS (revision control system) tags in \LaTeX{} documents.\\
\bibitem{realcalc}realcalc&plain3&
Macros for real arithmetic calculations\\
\bibitem{refman}refman&latex3&
Variant report and article styles\\
\bibitem{revtex}revtex&latex2&
Styles for American Physical Society, American Institute of Physics, and
Optical Society of America, Only works in compatibility mode under
\LaTeX2e{}.\\
\bibitem{rlepsf}rlepsf&generic3&
A macro package for use with epsf.tex which allows PostScript labels in an eps
file to be replaced by \TeX{} labels\\
\bibitem{rotating}rotating&latex2&
A package built on the standard \LaTeX{} graphics package to perform all the
different sorts of rotation one might like, including complete figures and
tables and captions.\\
\bibitem{rotfloat}rotfloat&latex3&
Rotate floats.\\
\bibitem{rplain}rplain&latex3&
Redefines the `plain' pagestyle. The page numbers are now in the lower right
corner.\\
\bibitem{rs6000-aix3.2.5}rs6000-aix3.2.5&systems1&
System binaries for RS6000 running AIX 3.2.5\\
\bibitem{rs6000-aix4.1.1}rs6000-aix4.1.1&systems1&
System binaries for RS6000 running AIX 4.1.1\\
\bibitem{sauter}sauter&fonts3&
Extensions to the CM fonts, providing a parameterization scheme to build fonts
at true design sizes\\
\bibitem{scale}scale&latex3&
A package to scale a document by \ensuremath{\sqrt{2}}. This is useful if you
are preparing a document on e.g. A5 paper and want to print on A4 paper to
achieve a better resolution.\\
\bibitem{script}script&latex3&
Variant report / book styles\\
\bibitem{semantic}semantic&latex3&
Eases the typesetting of notation of semantics and compilers. Includes
T-diagrams, various derivation symbols and inference threes.\\
\bibitem{seminar}seminar&latex2&
Produce overhead slides (transparencies) with bells and whistles.\\
\bibitem{setspace}setspace&latex3&
Provides commands and environments for doing double and one-and-a-half line
spacing based on pt size. If a different spacing is required then the
|\setstretch{baselinestretch}| command is supported. The spacing environment
takes one argument which is the baselinestretch to use, e.g.,
|\begin{spacing}{2.5}|.\\
\bibitem{shadbox}shadbox&latex3&
A tool to shade the background of any box - text, figure, table etc., using
Plain(La) \TeX.\\
\bibitem{shadethm}shadethm&latex3&
Package that allows declarations of the form |\newshadetheorem{thm}{Theorem}|
or |\newshadetheorem{}[]{}| or |\newshadetheorem{}{}[]| to produce shaded
boxes from the usual command |\begin{theorem}| \ldots |\end{theorem}|. The
color package is required\\
\bibitem{showlabels}showlabels&latex3&
Show label commands in the margin.\\
\bibitem{siam}siam&generic3&
Styles for SIAM publications\\
\bibitem{siggraph}siggraph&latex3&
Document class for formatting papers according to the specifications for
submission to the annual ACM Siggraph conference\\
\bibitem{slidenotes}slidenotes&latex3&
A class package for the easy production of a slide collection with annotations.
Builds on the report style (or variants).\\
\bibitem{smallcap}smallcap&latex3&
Support for all 4 shapes of Small caps in DC1.3 where SC becomes a family,
rather than a shape (|\scshape| is replaced by |\scfamily|). Thus you can
write |\bf\scfamily\slshape| to get small caps bold slanted\\
\bibitem{songbook}songbook&latex3&
Package for typesetting song lyrics\\
\bibitem{sparc-linux}sparc-linux&systems1&
System binaries for Sparc running Linux\\
\bibitem{sparc-solaris2.4}sparc-solaris2.4&systems1&
System binaries for Sparc running Solaris 2.4\\
\bibitem{sparc-solaris2.5}sparc-solaris2.5&systems1&
System binaries for Sun Sparc running Solaris 2.5\\
\bibitem{sparc-sunos4.1.3}sparc-sunos4.1.3&systems1&
System binaries for Sparc running SunOS 4.1.3\\
\bibitem{sprite}sprite&graphics3&
Macros to set bitmaps with \TeX\\
\bibitem{ssqquote}ssqquote&latex3&
\LaTeX{} package and font definition file to access the `cmssq' fonts, i.e.
Computer Modern Sans Serif Quotation Style. The \LaTeX{} package also defines
a |chapterquotes| environment as an example application.\\
\bibitem{startex}startex&formats3&
A \TeX{} format designed to help students write short reports and essays. It
provides the user with a suitable set of commands for such a task. It is also
more robust than plain \TeX{} and \LaTeX.\\
\bibitem{stmaryrd}stmaryrd&fonts2&
St Mary Road symbols for functional programming.\\
\bibitem{subeqn}subeqn&latex3&
Package for subequation numbering\\
\bibitem{subeqnarray}subeqnarray&latex3&
Equation array with sub numbering.\\
\bibitem{subfigure}subfigure&latex3&
Figures divided into subfigures.\\
\bibitem{supertabular}supertabular&latex3&
A multi-page tables package.\\
\bibitem{swift}swift&latex3&
Miscellaneous macros by Matt Swift\\
\bibitem{tap}tap&plain3&
An advanced table package\\
\bibitem{taylor}taylor&graphics3&
Diagram macros by Paul Taylor\\
\bibitem{tbe}tbe&plain3&
Examples from Arvind Borde's \emph{\TeX{} by Example}\\
\bibitem{tengwar}tengwar&fonts3&
Font for typesetting Tolkien Tengwar script, by Michael Urban\\
\bibitem{tex-ps}tex-ps&generic3&
Various extra support file for dvips\\
\bibitem{texdraw}texdraw&graphics3&
Graphical macros, using embedded PostScript.\\
\bibitem{texip}texip&formats3&
Macros from \emph{\TeX{} in Practice}\\
\bibitem{texlive}texlive&texlive1&
Basic material for \TeXLive{}\\
\bibitem{text1}text1&formats3&
\TeX{} format from the University of Washington\\
\bibitem{textcomp}textcomp&latex3&
Supports the Text Companion fonts which provide many text symbols (such as
baht, bullet, copyright, musicalnote, onequarter, section, and yen) in the
TS1 encoding.\\
\bibitem{textfit}textfit&latex3&
Package to support fitting of text to a given width of height by scaling the
font\\
\bibitem{textmerg}textmerg&latex3&
Merge text in \TeX{} and \LaTeX. Useful, for example, in mail merge.\\
\bibitem{thesis}thesis&latex3&
A class for producing a thesis based on the report class for a more European
and more flexible look. Supports options like noindent, noitemization,
headline, nocenter, crosshair, and chapterbib.\\
\bibitem{timesht}timesht&latex3&
Package for typesetting time sheets\\
\bibitem{tipa}tipa&fonts3&
Fonts and macros for IPA phonetics characters\\
\bibitem{tools}tools&latex2&
Standard \LaTeX2e{} tools, for extended tabular, verbatim and theorem support\\
\bibitem{tracking}tracking&latex3&
Automatically adjust spaces between symbols in words or phrases to fit them
into a specified length. Any chain of symbols (including spaces) in the
current font may be treated.\\
\bibitem{treesvr}treesvr&latex3&
Tree macros\\
\bibitem{treetex}treetex&plain3&
Allows the automatic layout of n-ary trees with arbitrary node sizes in \LaTeX,
using an external C program to do much of the hard work.\\
\bibitem{tugboat}tugboat&generic2&
Macros for TUGboat articles (plain and \LaTeX{}\\
\bibitem{type1cm}type1cm&latex3&
A package that removes the restriction when using scalable versions of the cm
fonts (Type1 Bakoma, or versions from BSR/Y\&Y, or True Type versions from
Kinch, PCTeX etc.) where \LaTeX{} restricts the cm fonts to discrete sizes.\\
\bibitem{typehtml}typehtml&latex3&
Typeset HTML (i.e., World Wide Web documents) directly from \LaTeX. Can handle
almost all of HTML2, and most of the math fragment of the draft HTML3.\\
\bibitem{uaclasses}uaclasses&latex3&
This package provides a \LaTeX2e document class named `ua-thesis' for
typesetting theses and dissertations in the official format required by the
University of Arizona. Moreover, there is a fully compatible alternative
document class `my-thesis' for private ``nice'' copies of the dissertation,
and the respective title pages are available as separate packages to work
with ``any'' document class.\\
\bibitem{ucthesis}ucthesis&latex3&
A modified version of the standard \LaTeX{} REPORT style that is accepted for
use with University of California PhD dissertations and Masters theses.\\
\bibitem{ulsy}ulsy&latex3&
Extra mathematical characters\\
\bibitem{umlaute}umlaute&latex3&
An interface to inputenc for using alternate input encodings\\
\bibitem{umrand}umrand&fonts3&
Package for page frames\\
\bibitem{underlin}underlin&latex3&
Package for underlining. Be advised that underlining is considered bad style in
typesetting. See also \href{\#ulem}{ulem} which is a specific package for
\LaTeX.\\
\bibitem{useful}useful&doc2&
Useful documentation; various \LaTeX{} guides, FAQ, fontname docs etc\\
\bibitem{utthesis}utthesis&latex3&
Produces a thesis that meets the requirements of the Graduate School of The
University of Texas at Austin :-)\\
\bibitem{uwthesis}uwthesis&latex3&
University of Washington thesis\\
\bibitem{vdm}vdm&latex3&
Typesetting VDM schemas\\
\bibitem{vector}vector&latex3&
Macros for more convenient representation of vectors in \LaTeX2e, both
symbolically and as implicit or explicit rows/columns of elements\\
\bibitem{vertex}vertex&plain3&
Styles for economics working papers and journals\\
\bibitem{vita}vita&latex3&
This class provides necessary macros to prepare your Curriculum Vitae or
Resume.\\
\bibitem{vrb}vrb&latex3&
Verbatim macros via plain \TeX\\
\bibitem{vrsion}vrsion&latex3&
Defines a command which produces a version number in the .dvi-file when
\LaTeX{} is run.\\
\bibitem{wasy}wasy&fonts3&
The wasy fonts (Waldis symbol fonts)\\
\bibitem{wasysym}wasysym&latex2&
Makes some additional characters available that come from the wasy fonts
(Waldis symbol fonts). These fonts are not automatically included in
NFSS2/LaTeX2e since they take up important space and aren't necessary if one
makes use of the packages amsfonts or amssymb. Symbols include: join, box,
diamond, leadsto, sqsubset, lhd, rhd, apprle, ocircle, invneg, logof, varint,
male, female, phone, clock, lightning, pointer, sun, bell, permil, smiley,
various electrical symbols, shapes, music notes, circles, signs, astronomy,
etc.\\
\bibitem{williams}williams&latex3&
Miscellaneous macros by Peter Williams.\\
\bibitem{win32}win32&systems1&
System binaries for Windows 32\\
\bibitem{wnri}wnri&fonts3&
\MF{} fonts for Old English, Indic languages in transcription, and American
Indian languages\\
\bibitem{wsuipa}wsuipa&fonts2&
Washington State University IPA phonetic fonts\\
\bibitem{xymtex}xymtex&latex3&
Typesetting chemical structures.\\
\bibitem{xypic}xypic&graphics2&
Sophisticated macros and fonts, originally designed for commutative diagrams,
but with general applicability.\\
\bibitem{yhmath}yhmath&latex3&
Extended maths fonts for \LaTeX.\\
\bibitem{youngtab}youngtab&latex3&
A package for typesetting Young-Tableaux mathematical symbols for the
representations of groups, providing two macros, |\yng(#1)| and |\young(#1)|
to generate the whole Young-Tableaux.\\
\bibitem{ytex}ytex&formats3&
Macro package developed at MIT\\
\bibitem{zed-csp}zed-csp&latex3&
Typesetting Z and CSP format specifications\\
|